forked from skot/bitaxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fan.kicad_sch
1234 lines (1211 loc) · 42.8 KB
/
fan.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid e3011397-6e70-47ae-93ca-7e99c3d9ef05)
(paper "A4")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "DayMiner-eagle-import:RESISTOR0402-RES" (in_bom yes) (on_board yes)
(property "Reference" "R" (at -3.81 1.4986 0)
(effects (font (size 1.778 1.5113)) (justify left bottom))
)
(property "Value" "RESISTOR0402-RES" (at -3.81 -3.302 0)
(effects (font (size 1.778 1.5113)) (justify left bottom))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "RESISTOR0402-RES_1_0"
(polyline
(pts
(xy -2.54 0)
(xy -2.159 1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.159 1.016)
(xy -1.524 -1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 -1.016)
(xy -0.889 1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.889 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.254 -1.016)
(xy 0.381 1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.381 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 -1.016)
(xy 1.651 1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.651 1.016)
(xy 2.286 -1.016)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.016)
(xy 2.54 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 0 0))))
(number "1" (effects (font (size 0 0))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 0 0))))
(number "2" (effects (font (size 0 0))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "dayminer:EMC2101" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 8.89 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "EMC2101" (at -6.35 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 12.7 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 12.7 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "EMC2101_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.1524) (type default))
(fill (type background))
)
)
(symbol "EMC2101_1_1"
(pin power_in line (at -12.7 5.08 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "DP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "DN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 0 180) (length 2.54)
(name "FAN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 -5.08 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "ALERT/TACH" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 2.54 180) (length 2.54)
(name "SMDATA" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 5.08 180) (length 2.54)
(name "SMCLK" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 113.665 78.105) (diameter 0) (color 0 0 0 0)
(uuid 16b23821-7d6b-487b-8ca1-9e26088410c1)
)
(junction (at 74.295 108.585) (diameter 0) (color 0 0 0 0)
(uuid 23afe978-f5cf-4f6b-8985-26b74419e8fe)
)
(junction (at 191.77 66.04) (diameter 0) (color 0 0 0 0)
(uuid 36098384-a65d-46b5-bc4f-e2e32971eae4)
)
(junction (at 151.13 113.665) (diameter 0) (color 0 0 0 0)
(uuid 5f300e37-7aa6-42c2-b324-35b08d49c436)
)
(junction (at 147.32 111.125) (diameter 0) (color 0 0 0 0)
(uuid 9e0aa163-60cc-467d-93bf-b8572bc79c84)
)
(junction (at 144.78 113.665) (diameter 0) (color 0 0 0 0)
(uuid b72fbda4-f5ef-4c4b-aa86-ea7412a67a3e)
)
(junction (at 113.665 88.9) (diameter 0) (color 0 0 0 0)
(uuid c5e8adf5-71f5-4ab0-ba04-786f1c762ba3)
)
(junction (at 144.78 127) (diameter 0) (color 0 0 0 0)
(uuid fce4b24b-a5db-4187-8b6e-6ad4a1b22b94)
)
(junction (at 151.13 127) (diameter 0) (color 0 0 0 0)
(uuid fe4c3244-42bf-42ff-9fea-4c032ea319b5)
)
(wire (pts (xy 157.48 73.025) (xy 170.815 73.025))
(stroke (width 0) (type default))
(uuid 02305ac9-a2b9-4754-a661-bab892b9c087)
)
(wire (pts (xy 144.78 123.19) (xy 144.78 127))
(stroke (width 0) (type default))
(uuid 042221b1-698e-4c28-911e-3e5b0e4c19d3)
)
(wire (pts (xy 135.255 111.125) (xy 147.32 111.125))
(stroke (width 0) (type default))
(uuid 0f00c769-8977-4354-96ce-71683787d219)
)
(wire (pts (xy 144.78 127) (xy 151.13 127))
(stroke (width 0) (type default))
(uuid 16f3aa16-2940-4e81-ae0a-39e2cc9a14fe)
)
(wire (pts (xy 80.645 71.755) (xy 92.075 71.755))
(stroke (width 0) (type default))
(uuid 2097bde5-eb1d-4419-9a83-6c244c424a90)
)
(wire (pts (xy 103.505 88.9) (xy 113.665 88.9))
(stroke (width 0) (type default))
(uuid 218c30a6-f0af-428f-ba24-a4c10379c9f6)
)
(wire (pts (xy 179.07 66.04) (xy 191.77 66.04))
(stroke (width 0) (type default))
(uuid 28ce238a-9ef7-4d27-a72f-eabd77e9dc73)
)
(wire (pts (xy 113.665 69.215) (xy 102.87 69.215))
(stroke (width 0) (type default))
(uuid 2a9d25b1-656c-4601-be4b-691dd47be18d)
)
(wire (pts (xy 194.31 66.04) (xy 191.77 66.04))
(stroke (width 0) (type default))
(uuid 3143baee-4d19-47dd-b187-e0754a93c522)
)
(wire (pts (xy 80.645 69.215) (xy 92.71 69.215))
(stroke (width 0) (type default))
(uuid 3363b89d-fc17-4dc3-9219-1b654a51a712)
)
(wire (pts (xy 120.015 83.185) (xy 132.08 83.185))
(stroke (width 0) (type default))
(uuid 3d2bc224-913b-46eb-9884-96956ddaff24)
)
(wire (pts (xy 147.32 111.125) (xy 178.435 111.125))
(stroke (width 0) (type default))
(uuid 3d767762-78e5-4a51-a409-b2755dbefa8f)
)
(wire (pts (xy 147.32 99.06) (xy 147.32 102.235))
(stroke (width 0) (type default))
(uuid 3fa2ca25-04a2-4c69-84e9-517e1d8eda28)
)
(wire (pts (xy 157.48 75.565) (xy 170.815 75.565))
(stroke (width 0) (type default))
(uuid 42db09df-c353-4633-a6e0-ba0aa8bd35b9)
)
(wire (pts (xy 144.78 113.665) (xy 151.13 113.665))
(stroke (width 0) (type default))
(uuid 4548bb18-2c1f-4f57-a47f-3bd9378ea61c)
)
(wire (pts (xy 167.005 116.205) (xy 167.005 127))
(stroke (width 0) (type default))
(uuid 564fd2bd-8e49-4270-baf0-479bb1213e9e)
)
(wire (pts (xy 132.08 78.105) (xy 113.665 78.105))
(stroke (width 0) (type default))
(uuid 5c685392-0e2c-4e6d-99d2-dcf68d32b4e8)
)
(wire (pts (xy 125.095 73.025) (xy 132.08 73.025))
(stroke (width 0) (type default))
(uuid 5d8f4549-4960-4ad8-bba3-8163614e16e4)
)
(wire (pts (xy 118.11 88.9) (xy 118.11 80.645))
(stroke (width 0) (type default))
(uuid 69c653b8-04ac-4a2e-b5fd-168ce0150336)
)
(wire (pts (xy 191.77 81.28) (xy 191.77 83.185))
(stroke (width 0) (type default))
(uuid 6d2e21ea-65e8-425f-afcd-b6049bfcb2e0)
)
(wire (pts (xy 103.505 71.755) (xy 102.235 71.755))
(stroke (width 0) (type default))
(uuid 6e935267-dd5f-445d-814e-5aa324d2f68f)
)
(wire (pts (xy 113.665 78.105) (xy 113.665 79.375))
(stroke (width 0) (type default))
(uuid 72e81bab-498b-4535-8d4a-2073ba8d694a)
)
(wire (pts (xy 74.295 105.41) (xy 74.295 108.585))
(stroke (width 0) (type default))
(uuid 8a4c4c03-ca3f-4ee5-95fa-a572e0e5cbc7)
)
(wire (pts (xy 191.77 66.04) (xy 191.77 73.66))
(stroke (width 0) (type default))
(uuid 8a847dd2-01e8-421f-84b3-b8dc6a1fe296)
)
(wire (pts (xy 113.665 78.105) (xy 113.665 69.215))
(stroke (width 0) (type default))
(uuid 8bbfb836-162f-409f-9df4-c6d19702b00e)
)
(wire (pts (xy 179.07 66.04) (xy 179.07 68.58))
(stroke (width 0) (type default))
(uuid 92a3ec7d-9b9a-42a9-a1f2-96522766883a)
)
(wire (pts (xy 151.13 113.665) (xy 151.13 115.57))
(stroke (width 0) (type default))
(uuid 9e12a2fa-768b-4ba5-8104-b73a75717b40)
)
(wire (pts (xy 113.665 88.9) (xy 118.11 88.9))
(stroke (width 0) (type default))
(uuid a1abf20a-b295-4b66-bc94-32fb1ba02684)
)
(wire (pts (xy 179.07 78.105) (xy 179.07 76.2))
(stroke (width 0) (type default))
(uuid a5620cc8-56ef-4b6f-8bc7-372e4d76fe90)
)
(wire (pts (xy 74.295 108.585) (xy 74.295 111.125))
(stroke (width 0) (type default))
(uuid a5a87a70-5002-4502-a947-ff0c8b4fd788)
)
(wire (pts (xy 167.005 116.205) (xy 178.435 116.205))
(stroke (width 0) (type default))
(uuid a6664df2-2c7f-4383-864f-c825e1df10bd)
)
(wire (pts (xy 103.505 71.755) (xy 103.505 88.9))
(stroke (width 0) (type default))
(uuid ad2a3d87-1960-4845-b36d-acda14a375d2)
)
(wire (pts (xy 168.91 108.585) (xy 178.435 108.585))
(stroke (width 0) (type default))
(uuid ad6512fd-5cb9-4e99-a1b4-e34cf222f3c4)
)
(wire (pts (xy 151.13 113.665) (xy 178.435 113.665))
(stroke (width 0) (type default))
(uuid b32eeff5-b74c-46a6-b457-08158d948ffb)
)
(wire (pts (xy 67.31 108.585) (xy 74.295 108.585))
(stroke (width 0) (type default))
(uuid b5e2ce99-e73b-42b3-96ac-bc562ebbf8c8)
)
(wire (pts (xy 157.48 83.185) (xy 191.77 83.185))
(stroke (width 0) (type default))
(uuid bc80b019-7e27-4cd8-b69f-170fcd14ff84)
)
(wire (pts (xy 147.32 109.855) (xy 147.32 111.125))
(stroke (width 0) (type default))
(uuid c1fd8110-ee2e-4ae6-b874-020f36ec0426)
)
(wire (pts (xy 74.295 97.79) (xy 74.295 94.615))
(stroke (width 0) (type default))
(uuid c91812db-df16-4832-a7b7-2d5915f33749)
)
(wire (pts (xy 157.48 78.105) (xy 179.07 78.105))
(stroke (width 0) (type default))
(uuid cf8ad2dc-7d86-4614-a5dc-68496df41fa5)
)
(wire (pts (xy 135.255 113.665) (xy 144.78 113.665))
(stroke (width 0) (type default))
(uuid d0ce31b8-c637-4050-b583-ffea78bd3c5c)
)
(wire (pts (xy 132.08 80.645) (xy 118.11 80.645))
(stroke (width 0) (type default))
(uuid d25edbb2-969e-48c5-9d28-7da090c6f870)
)
(wire (pts (xy 141.605 127) (xy 144.78 127))
(stroke (width 0) (type default))
(uuid d463f35c-351b-44a1-8c18-ccab91fc6148)
)
(wire (pts (xy 144.78 113.665) (xy 144.78 115.57))
(stroke (width 0) (type default))
(uuid dfa730e1-74a8-4287-b404-f71d62615d55)
)
(wire (pts (xy 151.13 127) (xy 167.005 127))
(stroke (width 0) (type default))
(uuid e19d420b-1778-47d1-8a86-b6d21e742a02)
)
(wire (pts (xy 113.665 86.995) (xy 113.665 88.9))
(stroke (width 0) (type default))
(uuid e476b5b8-eaad-47b5-a0c1-7269008507dc)
)
(wire (pts (xy 74.295 94.615) (xy 85.725 94.615))
(stroke (width 0) (type default))
(uuid f9eb6af4-7673-4476-93b3-92c8f63ed31a)
)
(wire (pts (xy 151.13 123.19) (xy 151.13 127))
(stroke (width 0) (type default))
(uuid fa5ccc40-3f15-429c-a73a-02c307af9a27)
)
(wire (pts (xy 74.295 118.745) (xy 74.295 127))
(stroke (width 0) (type default))
(uuid fcf421db-2d7c-4f81-9c2a-6f50c059b820)
)
(text "I2C Address: 0x4C" (at 136.525 89.535 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e8713c99-6ab0-4c50-92f6-a466cf91cfaf)
)
(label "GND" (at 74.295 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 131ce57c-0e71-4603-b0a3-b77fcc258887)
)
(label "FAN_PWM" (at 160.02 78.105 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1472b4b3-985a-4e48-bc16-0d0d4a8ede12)
)
(label "TEMP_P" (at 80.645 69.215 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3c960cfb-d413-4f1a-818c-bdde72e22483)
)
(label "GND" (at 160.02 83.185 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 53b873b0-8838-4321-9fc1-3563d52e65f7)
)
(label "SCL" (at 164.465 73.025 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5dbcfe0f-034a-4016-9873-2205d3808900)
)
(label "FAN_TACH" (at 120.015 83.185 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 64f63d0b-350f-4561-8a33-32a03a6c08c6)
)
(label "GND" (at 156.845 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 65ec0d2a-9245-4718-a004-ad2f1ed90296)
)
(label "3V3" (at 147.32 100.965 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6baea13d-6785-4fc7-9b4c-fce039572700)
)
(label "FAN_PWM" (at 168.91 108.585 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6eec903f-96f0-4ee8-8e4f-9866a5101010)
)
(label "3V3" (at 184.15 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 909580ad-17b5-40b1-b95b-30a486e4aaac)
)
(label "3V3" (at 125.095 73.025 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 98e9f40e-00bd-4056-a7b4-224d5a9660df)
)
(label "TEMP_N" (at 80.645 71.755 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9c66f031-531a-4b86-a2bf-4c83becb4807)
)
(label "5V" (at 137.795 113.665 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9e8549f7-80f9-4673-9e2a-55f919f42ae8)
)
(label "SDA" (at 164.465 75.565 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a919bf4d-298c-43bd-bd61-fea10e7d6e58)
)
(label "FAN_TACH" (at 75.565 94.615 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d118f65a-ce81-4eb7-ab9a-ec3d707daf6a)
)
(label "FAN_TACH" (at 168.91 111.125 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid eea3c07d-89b2-49b6-a9fa-0f493ec420c4)
)
(global_label "GND" (shape input) (at 141.605 127 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c0768682-431f-40cd-b222-b63b082b238b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.3214 126.9206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(hierarchical_label "5V" (shape input) (at 135.255 113.665 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0a7056df-0471-43a5-af73-8a2ce8f60b8a)
)
(hierarchical_label "TEMP_P" (shape input) (at 80.645 69.215 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2518f970-d8af-4fed-99d8-73d36d826f2d)
)
(hierarchical_label "ALERT" (shape input) (at 67.31 108.585 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 353211a2-9093-49ea-9ccc-394da59b4846)
)
(hierarchical_label "SCL" (shape input) (at 170.815 73.025 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d5e8abee-3767-476f-8e5d-433184682270)
)
(hierarchical_label "TEMP_N" (shape input) (at 80.645 71.755 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f8575e63-f07d-4849-ad90-f40fcf378a69)
)
(hierarchical_label "SDA" (shape input) (at 170.815 75.565 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f89e2a71-fb77-4e7b-bbb8-97c46bdcc78c)
)
(hierarchical_label "3V3" (shape input) (at 194.31 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fb0d5031-f0a0-46de-8b87-13c454ac2d43)
)
(symbol (lib_id "Connector:TestPoint") (at 168.91 108.585 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 06eb653b-c15c-416b-be86-59e88d0695a0)
(property "Reference" "TP15" (at 162.56 108.585 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 163.195 109.8549 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" (at 168.91 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 168.91 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "DNP" "T" (at 168.91 108.585 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b9cdf6f5-db2c-4466-a095-1509db66167f))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "TP15") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 147.32 106.045 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1bcfcdba-f6cd-4dd6-9d4a-672b71b4796f)
(property "Reference" "R36" (at 151.13 104.775 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 151.13 107.315 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 146.304 105.791 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 147.32 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "DK" "311-10KJRCT-ND" (at 147.32 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTNO" "RC0402JR-0710KL" (at 147.32 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 05ec95b9-0bae-4322-a79c-e5d493c10314))
(pin "2" (uuid 850ab7c1-1834-4c38-9917-6a073fb7ed05))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "R36") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 191.77 77.47 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2d0f3f1e-319b-4949-afff-d4285e71670d)
(property "Reference" "C33" (at 196.215 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "0.1uF" (at 198.12 80.645 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 191.77 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 191.77 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "311-3342-1-ND" (at 191.77 77.47 0)
(effects (font (size 1.778 1.5113)) (justify left bottom) hide)
)
(property "DK" "1292-1639-1-ND" (at 191.77 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTNO" "0402X104K100CT" (at 191.77 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1611bb1-77e5-4d0e-bc71-d474ce92fb27))
(pin "2" (uuid 35f5221b-1ac6-482a-b604-412f5acd65e5))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "C33") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 151.13 119.38 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 384597ad-1777-489b-81b5-40f7cec241e5)
(property "Reference" "C29" (at 155.575 118.11 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "0.1uF" (at 157.48 122.555 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 151.13 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 151.13 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "311-3342-1-ND" (at 151.13 119.38 0)
(effects (font (size 1.778 1.5113)) (justify left bottom) hide)
)
(property "DK" "1292-1639-1-ND" (at 151.13 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTNO" "0402X104K100CT" (at 151.13 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 19b7c567-950a-4608-9570-0f0ef1cda34d))
(pin "2" (uuid 981cf881-1b55-4236-9f43-d6028a10610f))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "C29") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_US") (at 74.295 101.6 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 69b52d10-220b-4bf9-90f7-ea43d2c31997)
(property "Reference" "R24" (at 77.47 100.965 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 78.105 103.505 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 73.279 101.346 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 74.295 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "DK" "311-10KJRCT-ND" (at 74.295 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTNO" "RC0402JR-0710KL" (at 74.295 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aa2b5bc2-dcee-45c4-9bcb-b10bd9be360c))
(pin "2" (uuid 382700da-3862-409d-a34d-f0085c950e98))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "R24") (unit 1)
)
)
)
)
(symbol (lib_id "DayMiner-eagle-import:RESISTOR0402-RES") (at 97.79 69.215 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6ebdf47b-3f81-4e3a-bb18-61c1badc2624)
(property "Reference" "R8" (at 93.345 66.04 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "100" (at 97.79 66.04 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 97.79 69.215 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 97.79 69.215 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "DK" "RMCF0402FT100RCT-ND" (at 97.79 69.215 0)
(effects (font (size 1.778 1.5113)) (justify left bottom) hide)
)
(property "PARTNO" "RMCF0402FT100R" (at 97.79 69.215 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 630760ad-a1aa-42de-ba85-4117f9748853))
(pin "2" (uuid 74b7ca68-dd74-4a0a-8e26-2ad2ab92a1a7))
(instances
(project "bitaxeMax"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/8e8832ea-6bf1-49d2-b3a5-32a207f555d2"
(reference "R8") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 183.515 113.665 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 89552359-e64c-4ef0-97ec-17f2c49cd40f)
(property "Reference" "J4" (at 183.515 104.14 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (at 183.515 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "bitaxe:470531000" (at 183.515 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 183.515 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTNO" "0470531000" (at 183.515 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "DK" "WM4330-ND" (at 183.515 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 82811de8-78ab-47d8-b95e-134a23529a1f))
(pin "2" (uuid f43acc6c-921f-414f-8ee0-4967d2531cae))
(pin "3" (uuid dc277c1e-9d04-46c8-b49f-88d8be8970e0))
(pin "4" (uuid 60b34f21-437e-4be7-9172-47fab6f2d33e))
(instances