-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-case-controller.net
More file actions
1918 lines (1918 loc) · 79.4 KB
/
Copy pathtest-case-controller.net
File metadata and controls
1918 lines (1918 loc) · 79.4 KB
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
(export (version D)
(design
(source "D:\\OneDrive\\Projects\\Pinball - Demo Box\\PCB\\mainboard\\mainboard.sch")
(date "10-4-2021 17:24:11")
(tool "Eeschema (5.1.0)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Mainboard main schematic")
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Mainboard ATmega328/") (tstamps /605B13F8/)
(title_block
(title "Mainboard ATmega328")
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard_atmega328.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/)
(title_block
(title "Mainboard MOSFET 0 thru 3")
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard_mosfet_0-3.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/)
(title_block
(title)
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard_mosfet_4-7.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Mainboard Input Matrix/") (tstamps /606CA42C/)
(title_block
(title)
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard_input_matrix.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Mainboard PCA9685/") (tstamps /605AEFDD/)
(title_block
(title "Mainboard PCA9685 and Power")
(company PinBus)
(rev 1.0)
(date 2021-03-27)
(source mainboard_pca9685.sch)
(comment (number 1) (value "Design by Thomas Gravekamp"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J2)
(value "JST XH 01x04")
(footprint Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Female) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E15C8))
(comp (ref J3)
(value "JST XH 01x04")
(footprint Connector_JST:JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Female) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E15CE))
(comp (ref Y1)
(value Resonator)
(footprint Crystal:Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm)
(datasheet ~)
(libsource (lib Device) (part Resonator) (description "Three pin ceramic resonator"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E160A))
(comp (ref SW1)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_PTS810)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E1619))
(comp (ref C2)
(value 100μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E1631))
(comp (ref R1)
(value 4.7kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E1637))
(comp (ref J1)
(value "Pin Header 02x03")
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E1656))
(comp (ref J6)
(value "Pin header 01x06")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Female) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605FCCBD))
(comp (ref J5)
(value "Pin header 01x08")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605FE9B1))
(comp (ref J4)
(value "Pin header 01x08")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x08_Female) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605FF76A))
(comp (ref C3)
(value 100μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E16D8))
(comp (ref C1)
(value 4.7μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E16D2))
(comp (ref C5)
(value 100μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E16CC))
(comp (ref U1)
(value ATmega328-AU)
(footprint Package_QFP:TQFP-32_7x7mm_P0.8mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/ATmega328_P%20AVR%20MCU%20with%20picoPower%20Technology%20Data%20Sheet%2040001984A.pdf)
(libsource (lib MCU_Microchip_ATmega) (part ATmega328-AU) (description "20MHz, 32kB Flash, 2kB SRAM, 1kB EEPROM, TQFP-32"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E169E))
(comp (ref C4)
(value 100μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 605E1698))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 606C73E0))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 606C7AEC))
(comp (ref R2)
(value 1kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 60703A82))
(comp (ref R3)
(value 1kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard ATmega328/") (tstamps /605B13F8/))
(tstamp 60704552))
(comp (ref Q1)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 6078393D))
(comp (ref D3)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783943))
(comp (ref R4)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783949))
(comp (ref R6)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 6078394F))
(comp (ref LED1)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783987))
(comp (ref Q3)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 6078398D))
(comp (ref D5)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783993))
(comp (ref R8)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783999))
(comp (ref R10)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 6078399F))
(comp (ref LED2)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839DF))
(comp (ref LED3)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A31))
(comp (ref SOL0)
(value "JST VH 3.96 01x03")
(footprint Connector_JST:JST_VH_B3P-VH_1x03_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A89))
(comp (ref LED0)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A91))
(comp (ref SOL1)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839CC))
(comp (ref SOL3)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A76))
(comp (ref SOL2)
(value "JST VH 3.96 01x03")
(footprint Connector_JST:JST_VH_B3P-VH_1x03_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607850CD))
(comp (ref R11)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A49))
(comp (ref R9)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A43))
(comp (ref D6)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A3D))
(comp (ref Q4)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 60783A37))
(comp (ref R7)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839F7))
(comp (ref R5)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839F1))
(comp (ref D4)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839EB))
(comp (ref Q2)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 0 thru 3/") (tstamps /6076D1AF/))
(tstamp 607839E5))
(comp (ref LED4)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E55DC))
(comp (ref Q5)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E55E2))
(comp (ref D7)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E55E8))
(comp (ref R12)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E55EE))
(comp (ref R14)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E55F4))
(comp (ref SOL4)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E5623))
(comp (ref LED5)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E5636))
(comp (ref Q7)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E563C))
(comp (ref D9)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E5642))
(comp (ref R16)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E5648))
(comp (ref R18)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E564E))
(comp (ref SOL5)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 607E567B))
(comp (ref LED6)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9AB))
(comp (ref Q6)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9B1))
(comp (ref D8)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9B7))
(comp (ref R13)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9BD))
(comp (ref R15)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9C3))
(comp (ref SOL6)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081A9F0))
(comp (ref LED7)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA03))
(comp (ref Q8)
(value IRL540)
(footprint Package_TO_SOT_THT:TO-220-3_Horizontal_TabDown)
(datasheet ~)
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA09))
(comp (ref D10)
(value 1N4007)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA0F))
(comp (ref R17)
(value 10Ω)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA15))
(comp (ref R19)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA1B))
(comp (ref SOL7)
(value "JST VH 3.96 01x02")
(footprint Connector_JST:JST_VH_B2P-VH_1x02_P3.96mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6081AA48))
(comp (ref JP1)
(value Jumper_3_Open)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 6066EFAA))
(comp (ref JP2)
(value Jumper_3_Open)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Jumper) (part Jumper_3_Open) (description "Jumper, 3-pole, both open"))
(sheetpath (names "/Mainboard MOSFET 4 thru 7/") (tstamps /607D19A4/))
(tstamp 60677623))
(comp (ref MTX-0x0)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD48B))
(comp (ref MXT-1x0)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD491))
(comp (ref MTX-2x0)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD497))
(comp (ref MTX-3x0)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD49D))
(comp (ref MTX-0x1)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4A3))
(comp (ref MTX-1x1)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4A9))
(comp (ref MTX-2x1)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4AF))
(comp (ref MTX-3x1)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4B5))
(comp (ref MTX-0x2)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4BB))
(comp (ref MTX-1x2)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4C1))
(comp (ref MTX-2x2)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4C7))
(comp (ref MTX-3x2)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4CD))
(comp (ref MTX-0x3)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4D3))
(comp (ref MTX-1x3)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4D9))
(comp (ref MTX-2x3)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4DF))
(comp (ref MTX-3x3)
(value "JST XH 2.50 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606CD4E5))
(comp (ref D11)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606D43DC))
(comp (ref D12)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606D6C07))
(comp (ref D13)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606D7293))
(comp (ref D14)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606D7767))
(comp (ref D15)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E0121))
(comp (ref D16)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E0127))
(comp (ref D17)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E012D))
(comp (ref D18)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E0133))
(comp (ref D19)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E2C7D))
(comp (ref D20)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E2C83))
(comp (ref D21)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E2C89))
(comp (ref D22)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E2C8F))
(comp (ref D23)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E3E37))
(comp (ref D24)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E3E3D))
(comp (ref D25)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E3E43))
(comp (ref D26)
(value 1N4148W-G)
(footprint Diode_SMD:D_SOD-123)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 606E3E49))
(comp (ref R20)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 6074B00D))
(comp (ref R22)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 6074C438))
(comp (ref R21)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 6074BE68))
(comp (ref R23)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 6078C708))
(comp (ref JP7)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607BE504))
(comp (ref JP8)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607C0344))
(comp (ref JP9)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607C0B56))
(comp (ref JP10)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607C1344))
(comp (ref JP3)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607E0A9F))
(comp (ref JP4)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607E4D46))
(comp (ref JP5)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607E552C))
(comp (ref JP6)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard Input Matrix/") (tstamps /606CA42C/))
(tstamp 607E5C9F))
(comp (ref U2)
(value PCA9685PW)
(footprint Package_SO:TSSOP-28_4.4x9.7mm_P0.65mm)
(datasheet http://www.nxp.com/documents/data_sheet/PCA9685.pdf)
(libsource (lib Driver_LED) (part PCA9685PW) (description "16-channel 12-bit PWM Fm+ I2C-bus LED controller RGBA TSSOP"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605AF879))
(comp (ref R25)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F28B6))
(comp (ref R26)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F4F00))
(comp (ref R27)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F5280))
(comp (ref R28)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F5675))
(comp (ref R29)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F59C5))
(comp (ref R30)
(value 10kΩ)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F5CA3))
(comp (ref A0)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F7BEE))
(comp (ref A1)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F816A))
(comp (ref A2)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F86F2))
(comp (ref A3)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F8B8B))
(comp (ref A4)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F903C))
(comp (ref A5)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605F9441))
(comp (ref C14)
(value 10μF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 605FB85C))
(comp (ref LED8)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 6063C1F7))
(comp (ref LED9)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 6063EF89))
(comp (ref LED10)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 6063FECD))
(comp (ref LED11)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 60641103))
(comp (ref LED13)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Male) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names "/Mainboard PCA9685/") (tstamps /605AEFDD/))
(tstamp 60643018))
(comp (ref LED14)
(value "JST XH 01x02")
(footprint Connector_JST:JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical)
(datasheet ~)