-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFan_channels.kicad_sch
2226 lines (2156 loc) · 85.7 KB
/
Fan_channels.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 85c1cdae-e2ae-4647-9d19-027911f09920)
(paper "A4")
(lib_symbols
(symbol "74xGxx:74LVC1G17" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -2.54 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LVC1G17" (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" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Single Gate Buff Schmitt LVC CMOS" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single Schmitt Buffer Gate, Low-Voltage CMOS" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT* SG-*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LVC1G17_0_1"
(polyline
(pts
(xy -2.54 0.635)
(xy -1.905 0.635)
(xy -1.905 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 2.54)
(xy -3.81 -2.54)
(xy 2.54 0)
(xy -3.81 2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 0.635)
(xy -2.54 0.635)
(xy -2.54 -0.635)
(xy -1.27 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "74LVC1G17_1_1"
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 0 -2.54 270) (length 0) hide
(name "GND" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output line (at 6.35 0 180) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 0 2.54 90) (length 0) hide
(name "VCC" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 0 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 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (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_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (id 1) (at 1.905 0 90)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.635 -1.905) (end 0 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.635 -0.635) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.635 0.635) (end 0 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.635 1.905) (end 0 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Polyfuse_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "F" (id 0) (at -1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Polyfuse_Small" (id 1) (at 1.905 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" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Polyfuse_Small_0_1"
(rectangle (start -0.508 1.27) (end 0.508 -1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.27)
(xy -1.016 0.762)
(xy 1.016 -0.762)
(xy 1.016 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Polyfuse_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.635)
(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.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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 res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (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_0_1"
(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))
)
)
(symbol "R_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 "SilenFan-rescue:PMEG40T10ER-Diode" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PMEG40T10ER-Diode" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:Nexperia_CFP3_SOD-123W" (id 2) (at 0 -4.445 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_fp_filters" "Nexperia*CFP3*SOD?123W*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PMEG40T10ER-Diode_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "PMEG40T10ER-Diode_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:BSS138" (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" "BSS138" (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/BSS138-D.PDF" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "50V Vds, 0.22A Id, 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 "BSS138_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 "BSS138_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:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 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" "power-flag" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (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" "power-flag" (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 112.014 44.577) (diameter 0) (color 0 0 0 0)
(uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
)
(junction (at 111.887 109.22) (diameter 0) (color 0 0 0 0)
(uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131)
)
(junction (at 112.014 26.797) (diameter 0) (color 0 0 0 0)
(uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
)
(junction (at 76.327 91.44) (diameter 0) (color 0 0 0 0)
(uuid 262f1ea9-0133-4b43-be36-456207ea857c)
)
(junction (at 25.4 54.737) (diameter 0) (color 0 0 0 0)
(uuid 29bb7297-26fb-4776-9266-2355d022bab0)
)
(junction (at 111.887 91.44) (diameter 0) (color 0 0 0 0)
(uuid 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)
)
(junction (at 63.754 44.577) (diameter 0) (color 0 0 0 0)
(uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
)
(junction (at 76.454 26.797) (diameter 0) (color 0 0 0 0)
(uuid 5487601b-81d3-4c70-8f3d-cf9df9c63302)
)
(junction (at 76.327 171.069) (diameter 0) (color 0 0 0 0)
(uuid 5d276922-a869-4f5d-88b0-61d986223d09)
)
(junction (at 63.627 171.069) (diameter 0) (color 0 0 0 0)
(uuid 6a5078fd-b09f-4f9a-b2cb-c75109f8778d)
)
(junction (at 86.487 171.069) (diameter 0) (color 0 0 0 0)
(uuid 6daebe83-aaa4-4961-a38a-cbd8d373aa18)
)
(junction (at 86.487 109.22) (diameter 0) (color 0 0 0 0)
(uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
)
(junction (at 63.627 109.22) (diameter 0) (color 0 0 0 0)
(uuid 89e83c2e-e90a-4a50-b278-880bac0cfb49)
)
(junction (at 111.887 171.069) (diameter 0) (color 0 0 0 0)
(uuid b85f4051-4924-4ef5-8f46-e5012b0a6e31)
)
(junction (at 26.289 181.229) (diameter 0) (color 0 0 0 0)
(uuid c160a93a-9820-41f6-bec7-520aa36db6d3)
)
(junction (at 36.83 67.437) (diameter 0) (color 0 0 0 0)
(uuid c4cab9c5-d6e5-4660-b910-603a51b56783)
)
(junction (at 76.327 109.22) (diameter 0) (color 0 0 0 0)
(uuid d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
)
(junction (at 111.887 153.289) (diameter 0) (color 0 0 0 0)
(uuid d9a3c286-f26f-457f-a590-3b14be8b9b34)
)
(junction (at 35.941 132.08) (diameter 0) (color 0 0 0 0)
(uuid e5217a0c-7f55-4c30-adda-7f8d95709d1b)
)
(junction (at 35.941 193.929) (diameter 0) (color 0 0 0 0)
(uuid eb3ad1a3-1c41-42ae-9185-d2788631f4c4)
)
(junction (at 76.327 153.289) (diameter 0) (color 0 0 0 0)
(uuid ed91d7d8-f779-4103-8a9a-87b263add478)
)
(junction (at 26.289 119.38) (diameter 0) (color 0 0 0 0)
(uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
)
(junction (at 86.614 44.577) (diameter 0) (color 0 0 0 0)
(uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
)
(junction (at 76.454 44.577) (diameter 0) (color 0 0 0 0)
(uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
)
(wire (pts (xy 112.014 24.257) (xy 112.014 26.797))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
)
(wire (pts (xy 112.014 44.577) (xy 128.27 44.577))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
)
(wire (pts (xy 63.627 171.069) (xy 76.327 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 030e0175-d199-4dc2-b62d-35962dae27ba)
)
(wire (pts (xy 26.289 122.428) (xy 26.289 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
)
(wire (pts (xy 63.627 171.069) (xy 63.627 176.149))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bfb1bb4-bacc-4488-b3a9-77e4a80e1b91)
)
(wire (pts (xy 26.289 184.277) (xy 26.289 181.229))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f5ee21e-7d5f-4596-a9ad-d4af7b2dff9b)
)
(polyline (pts (xy 12.573 205.105) (xy 12.573 144.399))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fe0cf31-f539-4826-8c16-31e5fe6c2c8c)
)
(wire (pts (xy 43.307 195.453) (xy 48.387 195.453))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 108d71e5-233b-4029-a9bc-259c4124e3da)
)
(wire (pts (xy 111.887 109.22) (xy 128.651 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 109caac1-5036-4f23-9a66-f569d871501b)
)
(wire (pts (xy 48.514 67.437) (xy 48.514 69.977))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
)
(wire (pts (xy 63.754 44.577) (xy 63.754 49.657))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
)
(wire (pts (xy 126.238 19.177) (xy 127.254 19.177))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14b01c80-fabc-43bb-8b6a-a3a3bec214ea)
)
(wire (pts (xy 86.614 44.577) (xy 94.234 44.577))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
)
(polyline (pts (xy 12.573 205.105) (xy 142.621 205.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19a92793-1768-4727-939d-f3672f21713f)
)
(wire (pts (xy 86.487 134.62) (xy 86.487 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c68b844-c861-46b7-b734-0242168a4220)
)
(wire (pts (xy 128.651 163.449) (xy 128.651 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1db2d99a-24d1-44c6-b5a4-129b77e93baf)
)
(wire (pts (xy 76.327 157.607) (xy 76.327 153.289))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f54f424-ccbb-4e5b-be8d-fbbec3bd28eb)
)
(wire (pts (xy 36.83 57.277) (xy 36.83 67.437))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f9ae101-c652-4998-a503-17aedf3d5746)
)
(polyline (pts (xy 12.573 143.256) (xy 12.573 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20c315f4-1e4f-49aa-8d61-778a7389df7e)
)
(wire (pts (xy 66.548 26.797) (xy 63.754 26.797))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
)
(wire (pts (xy 76.327 95.758) (xy 76.327 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
)
(wire (pts (xy 111.887 165.481) (xy 111.887 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23610b5b-a059-4edc-9bd8-16218f5bf787)
)
(wire (pts (xy 86.487 173.609) (xy 86.487 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2512bafa-aa17-47a2-87a4-f19ab6a2259c)
)
(wire (pts (xy 26.289 132.08) (xy 35.941 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
)
(wire (pts (xy 46.101 181.229) (xy 42.291 181.229))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ddf990a-0267-4c32-808a-7296878ad80a)
)
(wire (pts (xy 46.101 119.38) (xy 42.291 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30c33e3e-fb78-498d-bffe-76273d527004)
)
(wire (pts (xy 63.627 134.62) (xy 63.627 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
)
(wire (pts (xy 21.971 181.229) (xy 26.289 181.229))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34e30786-6250-45d7-9f15-8626ff1b12e6)
)
(wire (pts (xy 25.4 65.405) (xy 25.4 67.437))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36d783e7-096f-4c97-9672-7e08c083b87b)
)
(wire (pts (xy 35.941 193.929) (xy 43.307 193.929))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38696799-ee79-42a5-b275-ba3cdf12623d)
)
(wire (pts (xy 76.454 26.797) (xy 112.014 26.797))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
)
(wire (pts (xy 26.289 130.048) (xy 26.289 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
)
(wire (pts (xy 21.971 119.38) (xy 26.289 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
)
(wire (pts (xy 74.041 153.289) (xy 76.327 153.289))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46d4b228-5466-474b-af31-68eb4c50216d)
)
(wire (pts (xy 86.487 119.38) (xy 86.487 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b03e854-02fe-44cc-bece-f8268b7cae54)
)
(wire (pts (xy 26.289 191.897) (xy 26.289 193.929))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d1df7f3-83b3-40fb-a2d9-64dae7a747b9)
)
(wire (pts (xy 63.754 44.577) (xy 76.454 44.577))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4db55cb8-197b-4402-871f-ce582b65664b)
)
(wire (pts (xy 111.887 171.069) (xy 128.651 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 508716f3-efe8-412d-abb7-93291cf04de9)
)
(wire (pts (xy 63.754 39.497) (xy 63.754 44.577))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
)
(wire (pts (xy 111.887 171.069) (xy 101.727 171.069))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a311f34-07ad-4d02-935b-dbfd8f6f522c)
)
(wire (pts (xy 63.627 153.289) (xy 63.627 158.369))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ab77b13-9a4c-47c4-83bf-5cc41b9231e3)
)
(wire (pts (xy 35.941 132.08) (xy 43.307 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615)
)
(wire (pts (xy 36.83 40.767) (xy 36.83 52.197))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c30b9b4-3014-4f50-9329-27a539b67e01)
)
(wire (pts (xy 128.651 101.6) (xy 128.651 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e80ebcb-000b-46b3-9bfc-f98f7930d1c2)
)
(wire (pts (xy 66.421 91.44) (xy 63.627 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5edcefbe-9766-42c8-9529-28d0ec865573)
)
(wire (pts (xy 128.27 33.909) (xy 128.27 26.797))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 633bb94e-a671-4a7a-813f-7654a30a046e)
)
(wire (pts (xy 128.651 160.909) (xy 128.651 153.289))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cda3392-f05b-4513-81e4-1c8708c78bee)
)
(wire (pts (xy 43.18 54.737) (xy 45.72 54.737))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ffdf05e-e119-49f9-85e9-13e4901df42a)
)
(wire (pts (xy 128.651 99.06) (xy 128.651 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 708a2cd3-19d9-4b36-986c-17ebb2bb06b2)
)
(wire (pts (xy 63.627 91.44) (xy 63.627 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 721d1be9-236e-470b-ba69-f1cc6c43faf9)
)
(wire (pts (xy 111.887 153.289) (xy 111.887 157.861))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74123d4d-6fed-4532-84e0-0ae12d34045d)
)
(wire (pts (xy 111.887 91.44) (xy 111.887 96.012))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab)
)
(wire (pts (xy 127.254 16.637) (xy 112.014 16.637))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(polyline (pts (xy 12.573 82.55) (xy 142.621 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a4ce4b3-518a-4819-b8b2-5127b3347c64)
)
(wire (pts (xy 28.321 181.229) (xy 26.289 181.229))