-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpwr_fan2_interf.kicad_sch
1312 lines (1277 loc) · 47.2 KB
/
pwr_fan2_interf.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 20211123) (generator eeschema)
(uuid 5fff8315-9de7-489f-93a2-dfec869ba121)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Thermistor_PTC" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "TH" (id 0) (at -4.064 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Thermistor_PTC" (id 1) (at 3.048 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.27 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resistor PTC thermistor sensor RTD" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Temperature dependent resistor, positive temperature coefficient" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*PTC* *Thermistor* PIN?ARRAY* bornier* *Terminal?Block* R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Thermistor_PTC_0_1"
(arc (start -3.048 2.159) (mid -3.0495 2.3143) (end -3.175 2.413)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -3.048 2.159) (mid -2.9736 1.9794) (end -2.794 1.905)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -3.048 2.794) (mid -2.9736 2.6144) (end -2.794 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -2.794 1.905) (mid -2.6144 1.9794) (end -2.54 2.159)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -2.794 2.54) (mid -2.4393 2.5587) (end -2.159 2.794)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -2.794 3.048) (mid -2.9736 2.9736) (end -3.048 2.794)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -2.54 2.794) (mid -2.6144 2.9736) (end -2.794 3.048)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.016 2.54) (end 1.016 -2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.159)
(xy -2.54 2.794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.54)
(xy -1.778 1.524)
(xy 1.778 -1.524)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -3.683)
(xy -2.54 -1.397)
(xy -2.794 -2.159)
(xy -2.286 -2.159)
(xy -2.54 -1.397)
(xy -2.54 -1.651)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -1.778 -3.683)
(xy -1.778 -1.397)
(xy -2.032 -2.159)
(xy -1.524 -2.159)
(xy -1.778 -1.397)
(xy -1.778 -1.651)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "Thermistor_PTC_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 "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:2N7002" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2N7002" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "N-Channel Switching MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.115A Id, 60V Vds, N-Channel MOSFET, SOT-23" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "2N7002_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "2N7002_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:AO3401A" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AO3401A" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "P-Channel MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AO3401A_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 1.778)
(xy 3.302 1.778)
(xy 3.302 -1.778)
(xy 0.762 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 0)
(xy 1.27 0.381)
(xy 1.27 -0.381)
(xy 2.286 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 -0.508)
(xy 2.921 -0.381)
(xy 3.683 -0.381)
(xy 3.81 -0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 -0.381)
(xy 2.921 0.254)
(xy 3.683 0.254)
(xy 3.302 -0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "AO3401A_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 144.78 45.72) (diameter 0) (color 0 0 0 0)
(uuid 10cb248e-6bbf-4b10-8a1c-a6fdb665671e)
)
(junction (at 153.67 83.82) (diameter 0) (color 0 0 0 0)
(uuid 5135a47a-7119-4c0e-ad04-b9ac90dae70b)
)
(junction (at 129.54 90.17) (diameter 0) (color 0 0 0 0)
(uuid 57d488b8-e217-431c-851f-225e7fd80043)
)
(junction (at 129.54 48.26) (diameter 0) (color 0 0 0 0)
(uuid 8d0bf4d1-56d4-4b79-9ea3-4e3bcaa67877)
)
(junction (at 139.7 90.17) (diameter 0) (color 0 0 0 0)
(uuid 9011f6b8-9ad1-4ff2-bbc0-8c132185bb73)
)
(junction (at 172.72 48.26) (diameter 0) (color 0 0 0 0)
(uuid cb38dfe3-555a-478f-9935-ce09369f3ddb)
)
(junction (at 153.67 73.66) (diameter 0) (color 0 0 0 0)
(uuid ccae984f-a01f-479c-ad7e-2911726e17b2)
)
(junction (at 124.46 90.17) (diameter 0) (color 0 0 0 0)
(uuid d1e6c132-87c3-4210-a8b9-0e4a334c9e5d)
)
(junction (at 160.02 54.61) (diameter 0) (color 0 0 0 0)
(uuid f8ce7c4e-b451-4606-9303-5818c1eca1ec)
)
(wire (pts (xy 144.78 45.72) (xy 195.58 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02afc79b-930b-4bed-8d30-053a14e4d122)
)
(wire (pts (xy 153.67 100.33) (xy 153.67 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04bcea2e-e60d-4340-a79d-0b43326b20d4)
)
(wire (pts (xy 144.78 62.23) (xy 144.78 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cdeb2e8-6a4c-4d0f-bbcf-5848ef7fe4de)
)
(wire (pts (xy 168.91 73.66) (xy 176.53 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15e0d986-02d9-41ba-a5e1-cfd0771da6a6)
)
(wire (pts (xy 115.57 54.61) (xy 151.13 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b2bbac3-1ae7-4390-a708-ada5f2859be5)
)
(wire (pts (xy 129.54 97.79) (xy 129.54 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d68e332-014c-4b87-bf2e-6c4b3ad44850)
)
(wire (pts (xy 160.02 54.61) (xy 160.02 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20f0f630-9f78-4a09-82dd-9e253d5efe23)
)
(wire (pts (xy 129.54 90.17) (xy 132.08 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22631c48-0549-4e0d-b1f9-33405cef0888)
)
(wire (pts (xy 139.7 99.06) (xy 139.7 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2731c294-83ed-46f3-a233-d28f7db8a29a)
)
(wire (pts (xy 172.72 48.26) (xy 195.58 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c7121c0-da98-4e9d-a5e4-86c47af05780)
)
(wire (pts (xy 139.7 48.26) (xy 172.72 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f5552ce-9daa-4cab-95f0-49e2ef3eef30)
)
(wire (pts (xy 160.02 60.96) (xy 160.02 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 425d0d80-b392-4404-81bb-72f4a253a886)
)
(polyline (pts (xy 194.31 43.18) (xy 194.31 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4267698b-ece0-43e3-8019-6332531a48dc)
)
(wire (pts (xy 184.15 73.66) (xy 195.58 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 518c246e-4555-47c4-b4ed-12fb12fdd36e)
)
(wire (pts (xy 124.46 99.06) (xy 124.46 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 534edf05-a050-42aa-a12e-810139c6154d)
)
(polyline (pts (xy 213.36 101.6) (xy 213.36 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e0fadc6-712a-4fae-b0b3-b53cd742f299)
)
(wire (pts (xy 139.7 90.17) (xy 146.05 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 616b2ccb-7b91-4cdb-9843-b0b42861949c)
)
(wire (pts (xy 153.67 73.66) (xy 153.67 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62827fba-8a8d-4064-bf1f-fc83af0d97dc)
)
(wire (pts (xy 115.57 90.17) (xy 124.46 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74bba3eb-4f28-44e5-9ef8-66e7df082d88)
)
(wire (pts (xy 129.54 48.26) (xy 129.54 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81751c41-03ae-4a16-9677-42fe307d6753)
)
(wire (pts (xy 172.72 62.23) (xy 172.72 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85e4ee5d-cfeb-46d1-881e-625aaffeb807)
)
(wire (pts (xy 129.54 90.17) (xy 129.54 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89ce18b0-3eef-42da-8a57-1160f81a804b)
)
(wire (pts (xy 153.67 83.82) (xy 163.83 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c44714c-2abc-408b-87b0-d25e04c437a3)
)
(polyline (pts (xy 194.31 43.18) (xy 213.36 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92295acd-a937-4894-b3b5-637af638cae5)
)
(wire (pts (xy 137.16 90.17) (xy 139.7 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e5ff3ea-7959-4da5-874a-80fa52382f26)
)
(polyline (pts (xy 194.31 101.6) (xy 213.36 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9eb4ebf3-d35d-4ba5-9ddb-8c5ea7b39bed)
)
(wire (pts (xy 115.57 73.66) (xy 153.67 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b06e32a1-096d-45dd-9a4d-a313e47adf88)
)
(wire (pts (xy 144.78 45.72) (xy 144.78 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc052c1a-08ec-4304-8882-49b85a4b6ae3)
)
(wire (pts (xy 153.67 81.28) (xy 153.67 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf6a665c-f26e-4e2f-8cef-fe4ccf1f27b5)
)
(wire (pts (xy 129.54 48.26) (xy 134.62 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3b7608b-fa85-4e63-ba50-f44522d37ed0)
)
(wire (pts (xy 124.46 90.17) (xy 129.54 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5207325-6465-43cb-aa40-29f519d12f72)
)
(wire (pts (xy 124.46 90.17) (xy 124.46 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d68e6082-58a5-40d0-a510-f2864ce53428)
)
(wire (pts (xy 156.21 54.61) (xy 160.02 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da82740f-dd94-48a1-be8b-2a2330971721)
)
(wire (pts (xy 115.57 48.26) (xy 129.54 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfc8008e-8dbb-4479-9b63-ae7aa8a9ef9b)
)
(wire (pts (xy 160.02 54.61) (xy 165.1 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e405160a-df5e-4b81-bb7a-1992c4c57cc6)
)
(wire (pts (xy 163.83 81.28) (xy 163.83 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4075721-b562-45ac-8850-0cefd406a7e4)
)
(wire (pts (xy 129.54 60.96) (xy 129.54 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e88a1d76-f6a5-49f7-9396-7a1ccd891410)
)
(wire (pts (xy 153.67 73.66) (xy 158.75 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec359d1c-b994-4612-96c2-ae06aa9b75ba)
)
(wire (pts (xy 172.72 48.26) (xy 172.72 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f2fc023e-8160-42c0-9883-bcbe2ac58b24)
)
(wire (pts (xy 153.67 83.82) (xy 153.67 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3a37eb5-acbb-4c54-ba8b-e59123806436)
)
(wire (pts (xy 139.7 90.17) (xy 139.7 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7c31cd9-7fda-413d-af5c-f5655a9614c4)
)
(wire (pts (xy 115.57 45.72) (xy 144.78 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fcf9144c-d078-4187-8023-a21847cbd7b4)
)
(text "↑ High-side switching\nis necessary because\nmost 12V fans are not\nentirely \"dumb\" (ie.\nGND is used as a\nreference).\n"
(at 129.54 83.82 0)
(effects (font (size 1 1)) (justify left bottom))
(uuid 02eb4c3c-29cc-400b-bb25-75a0b2758b52)
)
(text "To Fan pin header." (at 194.31 41.91 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4f8d5b22-ff5d-4583-96a5-7af47da6cb42)
)
(text "↑ Close this\njumper to indicate\nthat there is no\nFAN1 circuitry\navailable."
(at 121.92 105.41 180)
(effects (font (size 1 1)) (justify right bottom))
(uuid 7a819e50-b5a2-4ead-a64d-48ea23cb8d30)
)
(text "↑ Necessary\nbecause SOC's\nGPIO pins\ntolerate up\nto 5V only."
(at 156.21 101.6 0)
(effects (font (size 1 1)) (justify left bottom))
(uuid 9936f606-b9eb-4c1b-894b-2d119da0f36e)
)
(text "↑ Optional, but\nimproves safety,\nbecause of the low\npower budget for\neach fan\n(~0.2A @ 12V,\n~0.12A @ 12V when\nVBUS = 5v @ 0.5A)."
(at 176.53 88.9 0)
(effects (font (size 1 1)) (justify left bottom))
(uuid d641c354-5e28-43f6-89b1-8ac321b5811b)
)
(text "↑ Necessary because\nPWM from the SOC is\nCMOS push-pull, and\nPWM output to the fan\nmust be open-drain."
(at 175.26 66.04 0)
(effects (font (size 1 1)) (justify left bottom))
(uuid e50a104c-e669-41ba-8218-59e361f373db)
)
(label "FAN2PWR_NMOS_EN" (at 139.7 90.17 0)
(effects (font (size 0.5 0.5)) (justify left bottom))
(uuid 4192a2d6-3b81-415d-863e-2259227164ec)
)
(label "FAN2PWM_NMOS_EN" (at 160.02 54.61 0)
(effects (font (size 0.5 0.5)) (justify left bottom))
(uuid a5aa48bd-70f9-4505-b962-242c623dccc1)
)
(label "FAN2PWR_PMOS_OUT" (at 168.91 73.66 0)
(effects (font (size 0.5 0.5)) (justify left bottom))
(uuid c71e98b5-c2e9-4aa7-a324-aa5b0d9927c9)
)
(label "FAN2PWR_PMOS_EN" (at 153.67 83.82 0)
(effects (font (size 0.5 0.5)) (justify left bottom))
(uuid d09cdc5e-a02a-40d6-8ebd-20cd715d9d7d)
)
(hierarchical_label "PWR_OUT+" (shape output) (at 195.58 73.66 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 21d65a90-64ac-4078-8ca2-57daa1e9472e)
)
(hierarchical_label "TACHO_IN" (shape input) (at 195.58 45.72 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2c43e498-3c0b-47f0-ba79-8d3501c932db)
)
(hierarchical_label "PWM_OUT" (shape output) (at 195.58 48.26 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 48d75ee2-fc84-431c-b29f-d85a3af927a9)
)
(hierarchical_label "PWM_SENSE" (shape input) (at 115.57 48.26 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6627ee18-66eb-48cd-a2c6-77e142652163)
)
(hierarchical_label "TACHO_OUT" (shape output) (at 115.57 45.72 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 87120610-44af-48ab-b3f3-7efa178eb57e)
)
(hierarchical_label "EN" (shape input) (at 115.57 90.17 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 94d2e6bf-bd4a-4380-b9b2-76fb358f89f8)
)
(hierarchical_label "PWR" (shape input) (at 115.57 73.66 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e27ec415-edd2-4050-98c4-57516bd1c72d)
)
(hierarchical_label "PWM_IN" (shape input) (at 115.57 54.61 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fb33ec4b-4719-4f55-ab5b-785c07bd741f)
)
(symbol (lib_id "Device:R_Small") (at 153.67 78.74 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 06a9c448-f0bf-4781-a2e9-0ae01a16446e)
(property "Reference" "R26" (id 0) (at 148.59 77.47 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1M" (id 1) (at 148.59 80.01 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 153.67 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 153.67 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 05510451-a31a-471d-a393-cd58f1080c9b))
(pin "2" (uuid 1d465321-924d-4c5a-b267-becfce4a6811))
)
(symbol (lib_id "power:GND") (at 139.7 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0c09a4eb-ae62-490e-9f3c-f33fc0cf86ae)
(property "Reference" "#PWR0135" (id 0) (at 139.7 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 139.7 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (id 2) (at 139.7 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 139.7 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3eb2659e-6f66-4f19-988e-ca64ca37fdd4))
)
(symbol (lib_id "Transistor_FET:2N7002") (at 170.18 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0db55081-5cdb-45ee-b5e9-a04c8dac89c1)
(property "Reference" "Q3" (id 0) (at 176.53 53.3399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2N7002" (id 1) (at 176.53 55.8799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 175.26 56.515 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" (id 3) (at 170.18 54.61 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 42a0d206-5e6d-4354-a784-a2c271fe2d83))
(pin "2" (uuid cccfe4ee-f6b1-436b-acd8-1d5a7bb84bbb))
(pin "3" (uuid 89c5d9c1-444a-4282-b0d8-33f2c4800ccc))
)
(symbol (lib_id "Device:R_Small") (at 160.02 58.42 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2ab6a422-dad6-4767-81e3-3a520188583e)
(property "Reference" "R29" (id 0) (at 165.1 57.15 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100K" (id 1) (at 167.64 59.69 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 160.02 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 160.02 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 81b0136f-a138-4365-9c2e-2623de1da58f))
(pin "2" (uuid 0cbd78d7-6eb4-4dbe-9b56-9fb093f418f7))
)
(symbol (lib_id "Device:R_Small") (at 134.62 90.17 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2e4e1cd1-8603-4ac8-8728-6834e0e45faa)
(property "Reference" "R2" (id 0) (at 135.89 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100" (id 1) (at 135.89 87.63 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (id 2) (at 134.62 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 134.62 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 02cd41e3-9782-42e0-8139-afb485f7c2d3))
(pin "2" (uuid 9cbf6127-3809-4cf9-8f97-242461995595))
)
(symbol (lib_id "power:GND") (at 160.02 62.23 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 36532ec9-d84f-4724-9941-ecb815257465)
(property "Reference" "#PWR0122" (id 0) (at 160.02 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 160.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (id 2) (at 160.02 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)