-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBusProtection.kicad_sch
6155 lines (6019 loc) · 230 KB
/
BusProtection.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 3ddba546-0c22-44ae-8568-3b56fd4c1468)
(paper "B")
(title_block
(title "PyCubed Mini")
(date "2023-04-11")
(rev "B3/02")
(company "RExLab Carnegie Mellon University")
(comment 1 "Z.Manchester")
(comment 2 "N.Khera")
(comment 3 "M.Holliday")
)
(lib_symbols
(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: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 "Transistor_BJT:MBT2222ADW1T1" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MBT2222ADW1T1" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.onsemi.com/pub_link/Collateral/MBT2222ADW1T1-D.PDF" (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)))
)
(property "ki_keywords" "NPN/NPN Transistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "600mA IC, 40V Vce, Dual NPN/NPN Transistors, SOT-363" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?363*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MBT2222ADW1T1_0_1"
(polyline
(pts
(xy 0.635 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "MBT2222ADW1T1_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "B1" (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 "C1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "MBT2222ADW1T1_2_1"
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "B2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mainboard:MMBT2907" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 6.35 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MMBT2907" (at 11.43 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at -10.16 -25.4 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30040.pdf" (at -10.16 -17.78 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Single PNP BJT" (at -2.54 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Name" "ON Semiconductor" (at -1.27 -22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer_Part_Number" "MMBT2907ALT1G" (at -2.54 -15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "PNP Transistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.8A Ic, 45V Vce, PNP Transistor, SOT-23" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MMBT2907_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.778)
(xy 1.778 -2.286)
(xy 1.27 -1.27)
(xy 2.286 -1.778)
(xy 2.286 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "MMBT2907_1_1"
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (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 "E" (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 "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "mainboard:NX3008NBKS" (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NX3008NBKS" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (at -13.97 -13.97 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/NX3008NBKS.pdf" (at -13.97 -16.51 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "Dual N-Channel MOSFET - 2NMOS" (at -13.97 -19.05 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Nexperia USA Inc." (at -13.97 -21.59 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "NX3008NBKS" (at -13.97 -24.13 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "NX3008NBKS_1_1"
(polyline
(pts
(xy -1.016 0)
(xy -3.81 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.905)
(xy -1.016 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -1.27)
(xy -0.508 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 0.508)
(xy -0.508 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.286)
(xy -0.508 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.27 0)
(xy -0.508 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -1.778)
(xy 2.032 -1.778)
(xy 2.032 1.778)
(xy -0.508 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.254 0)
(xy 0.762 0.381)
(xy 0.762 -0.381)
(xy -0.254 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 1.524 0.508)
(xy 1.651 0.381)
(xy 2.413 0.381)
(xy 2.54 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.032 0.381)
(xy 1.651 -0.254)
(xy 2.413 -0.254)
(xy 2.032 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0.381 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 1.27 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(pin passive line (at 1.27 -5.08 90) (length 2.54)
(name "S2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 0 0) (length 2.54)
(name "G2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 1.27 5.08 270) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "NX3008NBKS_2_1"
(polyline
(pts
(xy -1.016 0)
(xy -3.81 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.905)
(xy -1.016 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -1.27)
(xy -0.508 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 0.508)
(xy -0.508 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.286)
(xy -0.508 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.27 0)
(xy -0.508 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 -1.778)
(xy 2.032 -1.778)
(xy 2.032 1.778)
(xy -0.508 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.254 0)
(xy 0.762 0.381)
(xy 0.762 -0.381)
(xy -0.254 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 1.524 0.508)
(xy 1.651 0.381)
(xy 2.413 0.381)
(xy 2.54 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.032 0.381)
(xy 1.651 -0.254)
(xy 2.413 -0.254)
(xy 2.032 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0.381 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 1.27 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(pin passive line (at 1.27 5.08 270) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 1.27 -5.08 90) (length 2.54)
(name "S1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 0 0) (length 2.54)
(name "G1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 0 3.556 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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 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" "global power" (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" (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))
(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 240.411 163.449) (diameter 0) (color 0 0 0 0)
(uuid 07fab855-c5b7-4a21-8930-dc467c4955da)
)
(junction (at 110.236 150.622) (diameter 0) (color 0 0 0 0)
(uuid 11a001e0-1dd3-453b-af41-5e733bc50dca)
)
(junction (at 105.156 43.434) (diameter 0) (color 0 0 0 0)
(uuid 1642080e-08b2-437b-bfc4-40fe6be27956)
)
(junction (at 198.501 163.449) (diameter 0) (color 0 0 0 0)
(uuid 1a3e50d8-3d7c-45a4-bd09-0dae22065ea5)
)
(junction (at 235.331 117.729) (diameter 0) (color 0 0 0 0)
(uuid 2280fbc2-3624-4774-8ca1-10f907e698d0)
)
(junction (at 217.551 61.341) (diameter 0) (color 0 0 0 0)
(uuid 22bcfd0d-dd2e-4e92-a4b9-161997fd82fd)
)
(junction (at 147.066 125.222) (diameter 0) (color 0 0 0 0)
(uuid 250c3fbb-09b5-4da5-a85a-84d5bbfd3ac8)
)
(junction (at 240.411 89.281) (diameter 0) (color 0 0 0 0)
(uuid 292db0d4-ba7b-4e68-b95c-baca68770568)
)
(junction (at 141.986 132.842) (diameter 0) (color 0 0 0 0)
(uuid 2a1642f0-f674-476e-abd2-44aaf63983ec)
)
(junction (at 100.076 132.842) (diameter 0) (color 0 0 0 0)
(uuid 2b95152e-cb65-4ccb-9f87-cd333574f7a5)
)
(junction (at 217.551 143.129) (diameter 0) (color 0 0 0 0)
(uuid 328cc9f4-be18-456a-9e67-89a25b6ee879)
)
(junction (at 136.906 76.454) (diameter 0) (color 0 0 0 0)
(uuid 36b1b8bb-fd8b-4f91-99c9-21f907f90eec)
)
(junction (at 198.501 60.071) (diameter 0) (color 0 0 0 0)
(uuid 435d2b68-445b-4ff8-8647-2dd45667094b)
)
(junction (at 94.996 76.454) (diameter 0) (color 0 0 0 0)
(uuid 451adb62-30fd-4efb-96be-a33cdcfc91ba)
)
(junction (at 190.881 89.281) (diameter 0) (color 0 0 0 0)
(uuid 454c4a42-ece1-4011-973e-0417cf84f17f)
)
(junction (at 175.641 143.129) (diameter 0) (color 0 0 0 0)
(uuid 4764f929-07d2-41b8-8f92-b932e50df493)
)
(junction (at 152.146 163.322) (diameter 0) (color 0 0 0 0)
(uuid 4c6174db-1e73-488f-b50a-80c9c394f4e6)
)
(junction (at 198.501 141.859) (diameter 0) (color 0 0 0 0)
(uuid 4d37e37e-1398-4667-8429-c69dd8c4c681)
)
(junction (at 144.526 170.942) (diameter 0) (color 0 0 0 0)
(uuid 50c16a5a-c988-4e32-a06b-9cd24d8cd305)
)
(junction (at 110.236 132.842) (diameter 0) (color 0 0 0 0)
(uuid 51c9985f-0b62-4973-9720-e4a126286fb1)
)
(junction (at 193.421 43.561) (diameter 0) (color 0 0 0 0)
(uuid 53b10628-9bc4-4a03-815d-985a860d83c6)
)
(junction (at 235.331 43.561) (diameter 0) (color 0 0 0 0)
(uuid 5eb1b6c9-def4-42e2-84a4-56ccb3d33af4)
)
(junction (at 110.236 59.944) (diameter 0) (color 0 0 0 0)
(uuid 643c12f8-0cbb-42c5-b241-847d930fc1da)
)
(junction (at 152.146 68.834) (diameter 0) (color 0 0 0 0)
(uuid 6851671f-9488-4180-9942-681e0f075fd0)
)
(junction (at 198.501 89.281) (diameter 0) (color 0 0 0 0)
(uuid 6aff091a-aa67-4eec-a429-e9efa0f9c55b)
)
(junction (at 225.171 158.369) (diameter 0) (color 0 0 0 0)
(uuid 6bfe3f7f-be65-42c5-82f6-995ed558a688)
)
(junction (at 235.331 125.349) (diameter 0) (color 0 0 0 0)
(uuid 70770f9d-11ec-4c97-9d40-8b6706f100b1)
)
(junction (at 152.146 81.534) (diameter 0) (color 0 0 0 0)
(uuid 78eea510-4ed9-45e7-b43b-b52ee52c91ab)
)
(junction (at 144.526 89.154) (diameter 0) (color 0 0 0 0)
(uuid 79585402-8682-4a2e-877b-98d145f22872)
)
(junction (at 232.791 171.069) (diameter 0) (color 0 0 0 0)
(uuid 7b43fc02-e154-4f1a-8676-9495bbe16bb1)
)
(junction (at 193.421 125.349) (diameter 0) (color 0 0 0 0)
(uuid 7c8ac444-6942-4de3-8a19-a7b3783669a3)
)
(junction (at 152.146 51.054) (diameter 0) (color 0 0 0 0)
(uuid 7fc1b054-e3b1-47e2-9e17-6d941dd31336)
)
(junction (at 147.066 117.602) (diameter 0) (color 0 0 0 0)
(uuid 812e131b-e831-4992-a0c8-a78d3477cc60)
)
(junction (at 225.171 76.581) (diameter 0) (color 0 0 0 0)
(uuid 81422f16-0e2a-4463-ad5c-45116aba4817)
)
(junction (at 141.986 51.054) (diameter 0) (color 0 0 0 0)
(uuid 8207e274-39dd-4192-93f2-5c3e14adafac)
)
(junction (at 198.501 171.069) (diameter 0) (color 0 0 0 0)
(uuid 85c2af21-60c1-4b75-8cee-c0c0ab49648d)
)
(junction (at 152.146 89.154) (diameter 0) (color 0 0 0 0)
(uuid 8782d671-f133-4c42-8d22-13d7f0db34dd)
)
(junction (at 240.411 141.859) (diameter 0) (color 0 0 0 0)
(uuid 898cf8c9-8db6-4d9e-919e-7990321837d2)
)
(junction (at 152.146 150.622) (diameter 0) (color 0 0 0 0)
(uuid 8bc0339a-7675-4d81-9e58-4e469f6c2c71)
)
(junction (at 240.411 171.069) (diameter 0) (color 0 0 0 0)
(uuid 8eb4b082-c469-402f-95f7-020d1b3deab5)
)
(junction (at 240.411 60.071) (diameter 0) (color 0 0 0 0)
(uuid 90a5f0ad-94e3-43ab-8be8-b3e0d9b04b8a)
)
(junction (at 110.236 68.834) (diameter 0) (color 0 0 0 0)
(uuid 92642601-6145-47e3-9942-36c530f13dc9)
)
(junction (at 110.236 170.942) (diameter 0) (color 0 0 0 0)
(uuid 93a7b427-e6ea-4f15-ae17-2eecec49fba2)
)
(junction (at 105.156 125.222) (diameter 0) (color 0 0 0 0)
(uuid 9552beab-5e35-4210-9179-488e0aa87732)
)
(junction (at 232.791 89.281) (diameter 0) (color 0 0 0 0)
(uuid 95c7740f-cebb-4c05-b60a-338927b24a6a)
)
(junction (at 230.251 132.969) (diameter 0) (color 0 0 0 0)
(uuid 986f736a-45c9-4891-bd61-b209dcc3434c)
)
(junction (at 152.146 132.842) (diameter 0) (color 0 0 0 0)
(uuid 9b5b67bb-003c-421e-9999-0d8403e87013)
)
(junction (at 175.641 61.341) (diameter 0) (color 0 0 0 0)
(uuid 9bfe4a7a-dedc-4350-9279-7493bf4b91be)
)
(junction (at 105.156 117.602) (diameter 0) (color 0 0 0 0)
(uuid 9dde289c-237c-45f9-8e9b-38bbe98be53e)
)
(junction (at 240.411 132.969) (diameter 0) (color 0 0 0 0)
(uuid 9e937883-a28f-480f-8880-669bb33db87f)
)
(junction (at 235.331 35.941) (diameter 0) (color 0 0 0 0)
(uuid a00ca17c-de80-4dfb-bae9-377b5c9bb433)
)
(junction (at 87.376 61.214) (diameter 0) (color 0 0 0 0)
(uuid a06692fb-f83a-4136-aa3b-154005700eaa)
)
(junction (at 190.881 171.069) (diameter 0) (color 0 0 0 0)
(uuid a0f059a1-a4f7-416a-8b74-8cc7317636a6)
)
(junction (at 102.616 89.154) (diameter 0) (color 0 0 0 0)
(uuid a1647efd-a63c-42fb-92bd-e065e6470dcf)
)
(junction (at 129.286 143.002) (diameter 0) (color 0 0 0 0)
(uuid a205804e-4587-46a1-9c67-3ed782bff0cc)
)
(junction (at 240.411 51.181) (diameter 0) (color 0 0 0 0)
(uuid a4fa70fd-4232-4e1d-8812-5af11299f706)
)
(junction (at 110.236 163.322) (diameter 0) (color 0 0 0 0)
(uuid a5831019-76ec-4bea-a32b-02cc6acd957f)
)
(junction (at 100.076 51.054) (diameter 0) (color 0 0 0 0)
(uuid a8499e8c-29b5-4537-af1a-e1c6fec5b940)
)
(junction (at 198.501 68.961) (diameter 0) (color 0 0 0 0)
(uuid acc43f2e-6585-489c-8062-63b5eddd8370)
)
(junction (at 198.501 81.661) (diameter 0) (color 0 0 0 0)
(uuid b473d4f6-de83-4a5c-80fd-50e5629d0519)
)
(junction (at 230.251 51.181) (diameter 0) (color 0 0 0 0)
(uuid b48b3f71-65fd-417a-b901-b8cb193ebae7)
)
(junction (at 105.156 35.814) (diameter 0) (color 0 0 0 0)
(uuid b954a566-3f85-4f5c-811a-96a56c22dd93)
)
(junction (at 240.411 150.749) (diameter 0) (color 0 0 0 0)
(uuid b9a38a1b-2a63-41d8-a595-eba456a366dc)
)
(junction (at 110.236 141.732) (diameter 0) (color 0 0 0 0)
(uuid bac8c5d8-5e00-4cc4-bc92-db8839dfc681)
)
(junction (at 198.501 51.181) (diameter 0) (color 0 0 0 0)
(uuid c314f344-d761-4500-a60a-7037b465c924)
)
(junction (at 94.996 158.242) (diameter 0) (color 0 0 0 0)
(uuid c48f3782-a394-4949-a1f9-77472b029875)
)
(junction (at 147.066 43.434) (diameter 0) (color 0 0 0 0)
(uuid c8b5e473-f429-4418-ac1b-dad318a6ede7)
)
(junction (at 152.146 170.942) (diameter 0) (color 0 0 0 0)
(uuid cf3dd6a6-871a-4e76-a0b4-0838d5688289)
)
(junction (at 188.341 51.181) (diameter 0) (color 0 0 0 0)
(uuid d020c64d-dd3e-4ad5-bdbe-8967e77bbfac)
)
(junction (at 136.906 158.242) (diameter 0) (color 0 0 0 0)
(uuid d473fb99-7779-463f-bac3-11c6e2d09add)
)
(junction (at 193.421 117.729) (diameter 0) (color 0 0 0 0)
(uuid d6f7bde9-01fd-45e3-826c-dbe632c7a841)
)
(junction (at 102.616 170.942) (diameter 0) (color 0 0 0 0)
(uuid d74f3a36-9e01-4cf8-aed9-ff0a764bf7eb)
)
(junction (at 198.501 132.969) (diameter 0) (color 0 0 0 0)
(uuid d8a01e5b-1951-4dad-b489-2c283f333004)
)
(junction (at 110.236 51.054) (diameter 0) (color 0 0 0 0)
(uuid d9e57cfa-c638-4622-af61-22b6261baa5c)
)
(junction (at 87.376 143.002) (diameter 0) (color 0 0 0 0)
(uuid dadfc26c-6d16-4398-bbb1-7edb0bcf33e8)
)
(junction (at 152.146 59.944) (diameter 0) (color 0 0 0 0)
(uuid de5029bc-9aa9-454b-819c-6ed19128f7ac)
)
(junction (at 147.066 35.814) (diameter 0) (color 0 0 0 0)
(uuid df1afe14-58a7-42a4-8a16-0d6c06333388)
)
(junction (at 198.501 150.749) (diameter 0) (color 0 0 0 0)
(uuid e36aeb3e-6395-4130-a584-666ba4d81137)
)
(junction (at 193.421 35.941) (diameter 0) (color 0 0 0 0)
(uuid e663b916-44d3-4587-88f7-393f07889578)
)
(junction (at 110.236 81.534) (diameter 0) (color 0 0 0 0)
(uuid e7373ef8-3dd1-46b1-a150-db81799e69dd)
)
(junction (at 188.341 132.969) (diameter 0) (color 0 0 0 0)
(uuid ea5fe1a1-a9b4-47a4-aa2f-c1b623fa484d)
)
(junction (at 183.261 76.581) (diameter 0) (color 0 0 0 0)
(uuid ec0acfce-4068-46bc-a774-a5413c827d68)
)
(junction (at 129.286 61.214) (diameter 0) (color 0 0 0 0)
(uuid ec48bd8d-9685-49db-9523-62040cb95763)
)
(junction (at 240.411 68.961) (diameter 0) (color 0 0 0 0)
(uuid ed7ab976-afc4-4534-9481-937708af2018)
)
(junction (at 240.411 81.661) (diameter 0) (color 0 0 0 0)
(uuid fa3054a0-b595-483b-8bb2-c637f15d9073)
)
(junction (at 152.146 141.732) (diameter 0) (color 0 0 0 0)
(uuid fdd9669c-8ee8-4f86-9a57-42add0bc39f8)
)
(junction (at 110.236 89.154) (diameter 0) (color 0 0 0 0)
(uuid ff46866b-10e4-494c-8d8c-db8290b46594)
)
(junction (at 183.261 158.369) (diameter 0) (color 0 0 0 0)
(uuid ff4a18c3-be3f-4990-9cee-e04747735864)
)
(wire (pts (xy 141.986 51.054) (xy 141.986 68.834))
(stroke (width 0) (type default))
(uuid 01b24352-01b7-4c86-be31-099a22847de4)
)
(wire (pts (xy 193.04 253.619) (xy 191.77 253.619))
(stroke (width 0) (type default))
(uuid 02356d3c-7c35-499a-b0f9-2944e4df74bd)
)
(wire (pts (xy 175.641 43.561) (xy 193.421 43.561))
(stroke (width 0) (type default))
(uuid 041491ad-9320-4960-bdaf-3d7caef36067)
)
(wire (pts (xy 110.236 117.602) (xy 105.156 117.602))
(stroke (width 0) (type default))
(uuid 046463c9-5d18-4812-ba35-2a6a369050b0)
)
(wire (pts (xy 240.411 35.941) (xy 235.331 35.941))
(stroke (width 0) (type default))
(uuid 06e22598-b8a8-423e-b77e-7590cccbfbb3)
)
(wire (pts (xy 175.641 89.281) (xy 190.881 89.281))
(stroke (width 0) (type default))
(uuid 098d05f0-76d3-4723-ad8a-64d4c5ebc06c)