-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpi3GpioTester.net
993 lines (993 loc) · 38.9 KB
/
rpi3GpioTester.net
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
(export (version D)
(design
(source C:\Users\jmizk\Downloads\accessories-master\forRaspberryPi3\rpi3GpioTester\rpi3GpioTester.sch)
(date "2019/11/28 17:39:41")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source rpi3GpioTester.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref SW6)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B84F98D))
(comp (ref D6)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B84F9E6))
(comp (ref R6)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B84FAEF))
(comp (ref J1)
(value Raspberry_Pi_2_3)
(footprint Socket_Strips:Socket_Strip_Straight_2x20_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Raspberry_Pi_2_3) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE197E))
(comp (ref SW5)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE547D))
(comp (ref D5)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE5483))
(comp (ref R5)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE5489))
(comp (ref SW4)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE56E6))
(comp (ref D4)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE56EC))
(comp (ref R4)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE56F2))
(comp (ref SW20)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE80BF))
(comp (ref D20)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE80C5))
(comp (ref R20)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE80CB))
(comp (ref SW19)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8344))
(comp (ref D19)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE834A))
(comp (ref R19)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8350))
(comp (ref SW18)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8367))
(comp (ref D18)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE836D))
(comp (ref R18)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8373))
(comp (ref SW17)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE864E))
(comp (ref D17)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8654))
(comp (ref R17)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE865A))
(comp (ref SW16)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8671))
(comp (ref D16)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8677))
(comp (ref R16)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE867D))
(comp (ref SW13)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE8694))
(comp (ref D13)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE869A))
(comp (ref R13)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE86A0))
(comp (ref SW12)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE86B7))
(comp (ref D12)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE86BD))
(comp (ref R12)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE86C3))
(comp (ref SW27)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE331B))
(comp (ref D27)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3321))
(comp (ref R27)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3327))
(comp (ref SW26)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE333E))
(comp (ref D26)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3344))
(comp (ref R26)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE334A))
(comp (ref SW25)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3361))
(comp (ref D25)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3367))
(comp (ref R25)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE336D))
(comp (ref SW24)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3384))
(comp (ref D24)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE338A))
(comp (ref R24)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE3390))
(comp (ref SW23)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33A7))
(comp (ref D23)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33AD))
(comp (ref R23)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33B3))
(comp (ref SW22)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33CA))
(comp (ref D22)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33D0))
(comp (ref R22)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33D6))
(comp (ref SW21)
(value SW_Push)
(footprint Buttons_Switches_THT:SW_Tactile_Straight_KSA0Axx1LFTR)
(libsource (lib rpi3GpioTester-rescue) (part SW_Push) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33ED))
(comp (ref D21)
(value LED)
(footprint LEDs:LED_D3.0mm)
(libsource (lib rpi3GpioTester-rescue) (part LED-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33F3))
(comp (ref R21)
(value 1K)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical)
(libsource (lib rpi3GpioTester-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCE33F9))
(comp (ref I2C1)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCF20C1))
(comp (ref I2C2)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCF8720))
(comp (ref I2C12)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCF9A23))
(comp (ref I2C_Grove1)
(value Conn_01x04)
(footprint Connectors:Grove_1x04)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCFD618))
(comp (ref I2C11)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DCFFA6B))
(comp (ref J3)
(value Conn_01x12_Male)
(footprint Pin_Headers:Pin_Header_Straight_1x12_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x12_Male) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD03A26))
(comp (ref J2)
(value Conn_01x20_Male)
(footprint Pin_Headers:Pin_Header_Straight_1x20_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x20_Male) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD1866B))
(comp (ref I2C3)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5205A))
(comp (ref I2C4)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD5206E))
(comp (ref I2C10)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD52082))
(comp (ref I2C9)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD52096))
(comp (ref I2C5)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA189))
(comp (ref I2C6)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA19D))
(comp (ref I2C16)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA1B1))
(comp (ref I2C15)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA1C5))
(comp (ref I2C7)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA1F1))
(comp (ref I2C8)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA205))
(comp (ref I2C14)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA219))
(comp (ref I2C13)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDAA22D))
(comp (ref I2C_Grove4)
(value Conn_01x04)
(footprint Connectors:Grove_1x04)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD88E1A))
(comp (ref I2C_Grove3)
(value Conn_01x04)
(footprint Connectors:Grove_1x04)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD9ED5C))
(comp (ref I2C_Grove2)
(value Conn_01x04)
(footprint Connectors:Grove_1x04)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDB6048))
(comp (ref I2C_PU1)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DD8E5EE))
(comp (ref J_5V1)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DE85532))
(comp (ref J_GND1)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DF0A267))
(comp (ref J_5V2)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDDAC92))
(comp (ref J_GND2)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DDDACA5))
(comp (ref J_3V31)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DF106F2))
(comp (ref J_3V32)
(value Conn_01x04_Female)
(footprint Socket_Strips:Socket_Strip_Straight_1x04_Pitch2.54mm)
(libsource (lib rpi3GpioTester-rescue) (part Conn_01x04_Female) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DE1615D)))
(libparts
(libpart (lib rpi3GpioTester-rescue) (part Conn_01x04)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part Conn_01x04_Female)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Socket?Strip?Straight?1X*)
(fp Socket?Strip?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part Conn_01x12_Male)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x12_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part Conn_01x20_Male)
(footprints
(fp Connector*:*_??x*mm*)
(fp Connector*:*1x??x*mm*)
(fp Pin?Header?Straight?1X*)
(fp Pin?Header?Angled?1X*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x20_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part LED-Device)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED-Device))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part R-Device)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R-Device))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib rpi3GpioTester-rescue) (part Raspberry_Pi_2_3)
(fields
(field (name Reference) J)
(field (name Value) Raspberry_Pi_2_3)
(field (name Footprint) Pin_Headers:Pin_Header_Straight_2x20))
(pins
(pin (num 1) (name 3V3) (type power_out))
(pin (num 2) (name 5V) (type passive))
(pin (num 3) (name "(SDA1)_GPIO2") (type BiDi))
(pin (num 4) (name 5V) (type passive))
(pin (num 5) (name "(SCL1)_GPIO3") (type BiDi))
(pin (num 6) (name GND) (type passive))
(pin (num 7) (name "(GCLK)_GPIO4") (type BiDi))
(pin (num 8) (name "(TXD0)_GPIO14") (type BiDi))
(pin (num 9) (name GND) (type passive))
(pin (num 10) (name "(RXD0)_GPIO15") (type BiDi))
(pin (num 11) (name "GPIO17_(GEN0)") (type BiDi))
(pin (num 12) (name "GPIO18_(GEN1)") (type BiDi))
(pin (num 13) (name "GPIO27_(GEN2)") (type BiDi))
(pin (num 14) (name GND) (type passive))
(pin (num 15) (name "GPIO22_(GEN3)") (type BiDi))
(pin (num 16) (name "GPIO23_(GEN4)") (type BiDi))
(pin (num 17) (name 3V3) (type power_out))
(pin (num 18) (name "GPIO24_(GEN5)") (type BiDi))
(pin (num 19) (name "(SPI_MOSI)_GPIO10") (type BiDi))
(pin (num 20) (name GND) (type passive))
(pin (num 21) (name "(SPI_MISO)_GPIO9") (type BiDi))
(pin (num 22) (name "GPIO25_(GEN6)") (type BiDi))
(pin (num 23) (name "(SPI_SCLK)_GPIO11") (type BiDi))
(pin (num 24) (name "(~SPI_CE0~)_GPIO8") (type BiDi))
(pin (num 25) (name GND) (type passive))
(pin (num 26) (name "(~SPI_CE1~)_GPIO7") (type BiDi))
(pin (num 27) (name ID_SD) (type BiDi))
(pin (num 28) (name ID_SC) (type BiDi))
(pin (num 29) (name GPIO5) (type BiDi))
(pin (num 30) (name GND) (type passive))
(pin (num 31) (name GPIO6) (type BiDi))
(pin (num 32) (name GPIO12) (type BiDi))
(pin (num 33) (name GPIO13) (type BiDi))
(pin (num 34) (name GND) (type passive))
(pin (num 35) (name GPIO19) (type BiDi))
(pin (num 36) (name GPIO16) (type BiDi))
(pin (num 37) (name GPIO26) (type BiDi))
(pin (num 38) (name GPIO20) (type BiDi))
(pin (num 39) (name GND) (type passive))
(pin (num 40) (name GPIO21) (type BiDi))))
(libpart (lib rpi3GpioTester-rescue) (part SW_Push)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive)))))
(libraries
(library (logical rpi3GpioTester-rescue)
(uri C:\Users\jmizk\Downloads\accessories-master\forRaspberryPi3\rpi3GpioTester/rpi3GpioTester-rescue.lib)))
(nets
(net (code 1) (name GND)
(node (ref D16) (pin 1))
(node (ref J1) (pin 39))
(node (ref J1) (pin 34))
(node (ref J1) (pin 30))
(node (ref J1) (pin 6))
(node (ref D22) (pin 1))
(node (ref D23) (pin 1))
(node (ref D24) (pin 1))
(node (ref I2C1) (pin 3))
(node (ref D21) (pin 1))
(node (ref D13) (pin 1))
(node (ref J1) (pin 9))
(node (ref D17) (pin 1))
(node (ref D25) (pin 1))
(node (ref D26) (pin 1))
(node (ref D27) (pin 1))
(node (ref D12) (pin 1))
(node (ref I2C13) (pin 1))
(node (ref J1) (pin 20))
(node (ref D18) (pin 1))
(node (ref D19) (pin 1))
(node (ref D20) (pin 1))
(node (ref J1) (pin 25))
(node (ref J1) (pin 14))
(node (ref D6) (pin 1))
(node (ref SW6) (pin 2))
(node (ref I2C7) (pin 3))
(node (ref I2C14) (pin 1))
(node (ref I2C8) (pin 3))
(node (ref J_GND2) (pin 4))
(node (ref J_GND2) (pin 3))
(node (ref J_GND2) (pin 2))
(node (ref J_GND2) (pin 1))
(node (ref I2C_Grove4) (pin 4))
(node (ref J_GND1) (pin 1))
(node (ref J_GND1) (pin 2))
(node (ref J_GND1) (pin 3))
(node (ref J_GND1) (pin 4))
(node (ref I2C_Grove3) (pin 4))
(node (ref I2C_Grove2) (pin 4))
(node (ref I2C16) (pin 1))
(node (ref I2C6) (pin 3))
(node (ref I2C3) (pin 3))
(node (ref I2C15) (pin 1))
(node (ref I2C2) (pin 3))
(node (ref I2C4) (pin 3))
(node (ref I2C10) (pin 1))
(node (ref J2) (pin 1))
(node (ref I2C12) (pin 1))
(node (ref I2C9) (pin 1))
(node (ref J3) (pin 1))
(node (ref I2C11) (pin 1))
(node (ref I2C_Grove1) (pin 4))
(node (ref I2C5) (pin 3))
(node (ref SW5) (pin 2))
(node (ref D5) (pin 1))
(node (ref SW4) (pin 2))
(node (ref D4) (pin 1)))
(net (code 2) (name +3V3)
(node (ref I2C_Grove4) (pin 3))
(node (ref SW20) (pin 1))
(node (ref J1) (pin 17))
(node (ref I2C11) (pin 4))
(node (ref SW18) (pin 1))
(node (ref I2C8) (pin 4))
(node (ref I2C12) (pin 4))
(node (ref I2C7) (pin 4))
(node (ref J2) (pin 2))
(node (ref J3) (pin 2))
(node (ref I2C14) (pin 4))
(node (ref SW19) (pin 1))
(node (ref I2C2) (pin 4))
(node (ref SW26) (pin 1))
(node (ref SW25) (pin 1))
(node (ref SW17) (pin 1))
(node (ref SW16) (pin 1))
(node (ref SW27) (pin 1))
(node (ref SW13) (pin 1))
(node (ref SW24) (pin 1))
(node (ref SW12) (pin 1))
(node (ref SW21) (pin 1))
(node (ref I2C1) (pin 4))
(node (ref SW23) (pin 1))
(node (ref I2C13) (pin 4))
(node (ref I2C_Grove1) (pin 3))
(node (ref J1) (pin 1))
(node (ref SW22) (pin 1))
(node (ref I2C_Grove3) (pin 3))
(node (ref I2C3) (pin 4))
(node (ref I2C_Grove2) (pin 3))
(node (ref I2C_PU1) (pin 2))
(node (ref I2C_PU1) (pin 3))
(node (ref J_3V31) (pin 1))
(node (ref J_3V31) (pin 2))
(node (ref I2C10) (pin 4))
(node (ref I2C9) (pin 4))
(node (ref J_3V32) (pin 3))
(node (ref J_3V32) (pin 4))
(node (ref I2C15) (pin 4))
(node (ref J_3V31) (pin 4))
(node (ref I2C16) (pin 4))
(node (ref I2C6) (pin 4))
(node (ref I2C4) (pin 4))
(node (ref J_3V31) (pin 3))
(node (ref J_3V32) (pin 2))
(node (ref I2C5) (pin 4))
(node (ref J_3V32) (pin 1)))
(net (code 3) (name SCL)
(node (ref I2C15) (pin 2))
(node (ref I2C10) (pin 2))
(node (ref I2C9) (pin 2))
(node (ref I2C12) (pin 2))
(node (ref I2C16) (pin 2))
(node (ref I2C4) (pin 2))
(node (ref I2C6) (pin 2))
(node (ref I2C2) (pin 2))
(node (ref I2C5) (pin 2))
(node (ref I2C3) (pin 2))
(node (ref J1) (pin 5))
(node (ref I2C_Grove1) (pin 1))
(node (ref I2C11) (pin 2))
(node (ref I2C1) (pin 2))
(node (ref I2C8) (pin 2))
(node (ref I2C_Grove2) (pin 1))
(node (ref I2C14) (pin 2))
(node (ref I2C_PU1) (pin 1))
(node (ref I2C_Grove4) (pin 1))
(node (ref I2C7) (pin 2))
(node (ref I2C13) (pin 2))
(node (ref I2C_Grove3) (pin 1)))
(net (code 4) (name G22)
(node (ref J1) (pin 15))
(node (ref R22) (pin 1))
(node (ref J2) (pin 15))
(node (ref SW22) (pin 2)))
(net (code 5) (name G21)
(node (ref SW21) (pin 2))
(node (ref J2) (pin 14))
(node (ref J1) (pin 40))
(node (ref R21) (pin 1)))
(net (code 6) (name SDA)
(node (ref J1) (pin 3))
(node (ref I2C_Grove1) (pin 2))
(node (ref I2C11) (pin 3))
(node (ref I2C3) (pin 1))
(node (ref I2C_Grove3) (pin 2))
(node (ref I2C_Grove4) (pin 2))
(node (ref I2C7) (pin 1))
(node (ref I2C14) (pin 3))
(node (ref I2C5) (pin 1))
(node (ref I2C8) (pin 1))
(node (ref I2C16) (pin 3))
(node (ref I2C15) (pin 3))
(node (ref I2C_Grove2) (pin 2))
(node (ref I2C4) (pin 1))
(node (ref I2C6) (pin 1))
(node (ref I2C10) (pin 3))
(node (ref I2C13) (pin 3))
(node (ref I2C1) (pin 1))
(node (ref I2C_PU1) (pin 4))
(node (ref I2C9) (pin 3))
(node (ref I2C12) (pin 3))
(node (ref I2C2) (pin 1)))
(net (code 7) (name G18)
(node (ref SW18) (pin 2))
(node (ref R18) (pin 1))
(node (ref J2) (pin 11))
(node (ref J1) (pin 12)))
(net (code 8) (name G19)
(node (ref SW19) (pin 2))
(node (ref R19) (pin 1))
(node (ref J1) (pin 35))
(node (ref J2) (pin 12)))
(net (code 9) (name G20)
(node (ref SW20) (pin 2))
(node (ref R20) (pin 1))
(node (ref J2) (pin 13))
(node (ref J1) (pin 38)))
(net (code 10) (name G23)
(node (ref J2) (pin 16))
(node (ref SW23) (pin 2))
(node (ref R23) (pin 1))
(node (ref J1) (pin 16)))
(net (code 11) (name G24)
(node (ref R24) (pin 1))
(node (ref J2) (pin 17))
(node (ref SW24) (pin 2))
(node (ref J1) (pin 18)))
(net (code 12) (name G25)
(node (ref J1) (pin 22))
(node (ref SW25) (pin 2))
(node (ref J2) (pin 18))
(node (ref R25) (pin 1)))
(net (code 13) (name TXD0)
(node (ref J3) (pin 4))
(node (ref J1) (pin 8)))
(net (code 14) (name RXD0)
(node (ref J3) (pin 5))
(node (ref J1) (pin 10)))
(net (code 15) (name ID_SC)
(node (ref J3) (pin 11))
(node (ref J1) (pin 28)))
(net (code 16) (name SPI_CE1)
(node (ref J3) (pin 6))
(node (ref J1) (pin 26)))
(net (code 17) (name SPI_CE0)
(node (ref J1) (pin 24))
(node (ref J3) (pin 7)))
(net (code 18) (name SPI_MISO)
(node (ref J3) (pin 8))
(node (ref J1) (pin 21)))
(net (code 19) (name SPI_MOSI)
(node (ref J3) (pin 9))
(node (ref J1) (pin 19)))
(net (code 20) (name SPI_SCLK)
(node (ref J1) (pin 23))
(node (ref J3) (pin 10)))
(net (code 21) (name ID_SD)
(node (ref J3) (pin 12))
(node (ref J1) (pin 27)))
(net (code 22) (name +5V)
(node (ref J3) (pin 3))
(node (ref J2) (pin 3))
(node (ref J_5V1) (pin 2))
(node (ref J_5V1) (pin 4))
(node (ref J_5V1) (pin 3))
(node (ref J_5V1) (pin 1))
(node (ref J1) (pin 4))
(node (ref J1) (pin 2))
(node (ref J_5V2) (pin 4))
(node (ref J_5V2) (pin 3))
(node (ref J_5V2) (pin 1))
(node (ref J_5V2) (pin 2)))
(net (code 23) (name "Net-(D12-Pad2)")
(node (ref D12) (pin 2))
(node (ref R12) (pin 2)))
(net (code 24) (name G27)
(node (ref J1) (pin 13))
(node (ref SW27) (pin 2))
(node (ref J2) (pin 20))
(node (ref R27) (pin 1)))
(net (code 25) (name "Net-(D27-Pad2)")
(node (ref R27) (pin 2))
(node (ref D27) (pin 2)))
(net (code 26) (name G12)
(node (ref J1) (pin 32))
(node (ref R12) (pin 1))
(node (ref J2) (pin 7))
(node (ref SW12) (pin 2)))
(net (code 27) (name G26)
(node (ref J1) (pin 37))
(node (ref J2) (pin 19))
(node (ref SW26) (pin 2))
(node (ref R26) (pin 1)))
(net (code 28) (name "Net-(D26-Pad2)")
(node (ref D26) (pin 2))
(node (ref R26) (pin 2)))
(net (code 29) (name "Net-(D16-Pad2)")
(node (ref D16) (pin 2))
(node (ref R16) (pin 2)))
(net (code 30) (name "Net-(D17-Pad2)")
(node (ref R17) (pin 2))
(node (ref D17) (pin 2)))
(net (code 31) (name G17)
(node (ref R17) (pin 1))
(node (ref J2) (pin 10))
(node (ref SW17) (pin 2))
(node (ref J1) (pin 11)))
(net (code 32) (name G16)
(node (ref SW16) (pin 2))
(node (ref R16) (pin 1))
(node (ref J2) (pin 9))
(node (ref J1) (pin 36)))
(net (code 33) (name "Net-(D25-Pad2)")
(node (ref R25) (pin 2))
(node (ref D25) (pin 2)))
(net (code 34) (name G13)
(node (ref J2) (pin 8))
(node (ref J1) (pin 33))
(node (ref SW13) (pin 2))
(node (ref R13) (pin 1)))
(net (code 35) (name "Net-(D13-Pad2)")
(node (ref D13) (pin 2))
(node (ref R13) (pin 2)))
(net (code 36) (name "Net-(D21-Pad2)")
(node (ref D21) (pin 2))
(node (ref R21) (pin 2)))
(net (code 37) (name "Net-(D22-Pad2)")
(node (ref D22) (pin 2))
(node (ref R22) (pin 2)))
(net (code 38) (name "Net-(D24-Pad2)")
(node (ref R24) (pin 2))
(node (ref D24) (pin 2)))
(net (code 39) (name "Net-(D23-Pad2)")
(node (ref D23) (pin 2))
(node (ref R23) (pin 2)))
(net (code 40) (name "Net-(D6-Pad2)")
(node (ref D6) (pin 2))
(node (ref SW6) (pin 1))
(node (ref R6) (pin 2)))
(net (code 41) (name "Net-(D19-Pad2)")
(node (ref R19) (pin 2))
(node (ref D19) (pin 2)))
(net (code 42) (name "Net-(D20-Pad2)")
(node (ref R20) (pin 2))
(node (ref D20) (pin 2)))
(net (code 43) (name "Net-(D18-Pad2)")
(node (ref D18) (pin 2))
(node (ref R18) (pin 2)))
(net (code 44) (name G5)
(node (ref J1) (pin 29))
(node (ref J2) (pin 5))
(node (ref R5) (pin 1)))
(net (code 45) (name G6)
(node (ref R6) (pin 1))
(node (ref J1) (pin 31))
(node (ref J2) (pin 6)))
(net (code 46) (name "Net-(D5-Pad2)")
(node (ref R5) (pin 2))
(node (ref SW5) (pin 1))
(node (ref D5) (pin 2)))
(net (code 47) (name G4)
(node (ref J2) (pin 4))
(node (ref R4) (pin 1))
(node (ref J1) (pin 7)))
(net (code 48) (name "Net-(D4-Pad2)")
(node (ref R4) (pin 2))
(node (ref D4) (pin 2))
(node (ref SW4) (pin 1)))))