-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathRibv6.net
More file actions
1554 lines (1554 loc) · 59.1 KB
/
Ribv6.net
File metadata and controls
1554 lines (1554 loc) · 59.1 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 C:\Users\AlexCamilo\Documents\GitHub\RobotInterfaceBoard\Ribv6.sch)
(date "10/22/2019 11:05:44 AM")
(tool "Eeschema (5.1.2)-2")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Ribv6.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U3)
(value esp-devkit)
(footprint esp-devkit:ESP-DEVKIT)
(libsource (lib esp-devkit) (part esp-devkit) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0A5B0D))
(comp (ref J19)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0A6A78))
(comp (ref J16)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0A9883))
(comp (ref J13)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0AC523))
(comp (ref J5)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0AD20A))
(comp (ref J10)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0AEAFF))
(comp (ref J21)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0AF6EB))
(comp (ref J3)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0B4095))
(comp (ref U1)
(value polulu-3784-D36V28F7)
(footprint polulu-3784-dcdcreg:polulu-3784-D36V28F7)
(libsource (lib polulu-3784-D36V28F7) (part polulu-3784-D36V28F7) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0BA17A))
(comp (ref U2)
(value polulu-3784-D36V28F7)
(footprint polulu-3784-dcdcreg:polulu-3784-D36V28F7)
(libsource (lib polulu-3784-D36V28F7) (part polulu-3784-D36V28F7) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D0BBA74))
(comp (ref J7)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D0DDA44))
(comp (ref J1)
(value Conn_01x03)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2BF939))
(comp (ref J9)
(value Conn_01x03)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2D4330))
(comp (ref F2)
(value Fuse)
(footprint 3557-2:3557-2)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5D3AD74E))
(comp (ref Q9)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D646896))
(comp (ref R18)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D648215))
(comp (ref R23)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D64877B))
(comp (ref Q8)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7605D3))
(comp (ref R17)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7605D9))
(comp (ref R22)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7605DF))
(comp (ref Q10)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7A4F4A))
(comp (ref R19)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7A4F50))
(comp (ref R24)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7A4F56))
(comp (ref Q11)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7C947E))
(comp (ref R20)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7C9484))
(comp (ref R25)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7C948A))
(comp (ref Q12)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7EE936))
(comp (ref R21)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7EE93C))
(comp (ref R26)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7EE942))
(comp (ref Q15)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D817511))
(comp (ref R29)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D817517))
(comp (ref R32)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D81751D))
(comp (ref Q13)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D603))
(comp (ref R27)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D60D))
(comp (ref R30)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D617))
(comp (ref Q14)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D645))
(comp (ref R28)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D64F))
(comp (ref R31)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D83D659))
(comp (ref Q2)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5D98153B))
(comp (ref R3)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D987847))
(comp (ref R2)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D987D5B))
(comp (ref D3)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D988325))
(comp (ref Q5)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE4BDF))
(comp (ref R11)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE4BE5))
(comp (ref R10)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE4BEB))
(comp (ref D6)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE4BF1))
(comp (ref Q3)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB1C49A))
(comp (ref R5)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB1C4A0))
(comp (ref R4)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB1C4A6))
(comp (ref D4)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB1C4AC))
(comp (ref Q6)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB55E7B))
(comp (ref R13)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB55E81))
(comp (ref R12)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB55E87))
(comp (ref D7)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB55E8D))
(comp (ref Q4)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB97714))
(comp (ref R7)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB9771A))
(comp (ref R6)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB97720))
(comp (ref D5)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB97726))
(comp (ref F3)
(value Fuse)
(footprint 3557-2:3557-2)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5DD653F7))
(comp (ref J20)
(value Conn_01x19)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x19_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x19) (description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE83A94))
(comp (ref J22)
(value Conn_01x06)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE8C448))
(comp (ref J24)
(value Conn_01x01_Male)
(footprint MountingHole:MountingHole_3.5mm_Pad)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1E2FC4))
(comp (ref J12)
(value Conn_01x01_Male)
(footprint MountingHole:MountingHole_3.5mm_Pad)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1E34AF))
(comp (ref J25)
(value Conn_01x06)
(footprint wiichuck:CONN_WII)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x06) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D26C3DC))
(comp (ref J8)
(value Conn_02x07_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x07_Odd_Even) (description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2CA642))
(comp (ref J23)
(value Conn_02x06_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x06_Odd_Even) (description "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2D1A00))
(comp (ref F1)
(value Fuse)
(footprint 3557-2:3557-2)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5D3DCD15))
(comp (ref J4)
(value Conn_02x07_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x07_Odd_Even) (description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2C97D6))
(comp (ref R34)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50C582))
(comp (ref R33)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50DBD2))
(comp (ref R36)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50E0EF))
(comp (ref R35)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50EBB5))
(comp (ref R37)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D50EF57))
(comp (ref J26)
(value Conn_01x01_Male)
(footprint P315100rH:P315100rH)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D58CD25))
(comp (ref J11)
(value Conn_01x01_Male)
(footprint P315100rH:P315100rH)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x01_Male) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D58D149))
(comp (ref F4)
(value Fuse)
(footprint 3557-2:3557-2)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5D5E1F6A))
(comp (ref F5)
(value Fuse)
(footprint 3557-2:3557-2)
(datasheet ~)
(libsource (lib Device) (part Fuse) (description Fuse))
(sheetpath (names /) (tstamps /))
(tstamp 5D5E2AE9))
(comp (ref J14)
(value Conn_02x04_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x04_Odd_Even) (description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E89524A))
(comp (ref J15)
(value Conn_02x04_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x04_Odd_Even) (description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E898337))
(comp (ref R38)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1B0D18))
(comp (ref U4)
(value DPDT_x2)
(footprint GF-126-0327:GF-126-0327)
(libsource (lib DPDT_x2) (part DPDT_x2) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DB0F542))
(comp (ref J6)
(value Conn_01x02_Female)
(footprint Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD9BFD7))
(comp (ref J2)
(value Conn_01x02_Female)
(footprint Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x02_Female) (description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5DD9DC4F))
(comp (ref Q1)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF6F2FE))
(comp (ref R8)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF6F308))
(comp (ref R1)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF6F312))
(comp (ref D1)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF6F31C))
(comp (ref R9)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF6F343))
(comp (ref Q7)
(value BSS138)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(libsource (lib Transistor_FET) (part BSS138) (description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB552E))
(comp (ref R15)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB5538))
(comp (ref R14)
(value R_Small)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB5542))
(comp (ref D2)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB554C))
(comp (ref R16)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFB5573))
(comp (ref D8)
(value LED_Small)
(footprint LED_SMD:LED_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part LED_Small) (description "Light emitting diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB340C7))
(comp (ref R39)
(value 330)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DB340D5)))
(libparts
(libpart (lib Connector) (part Conn_01x01_Male)
(description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib Connector) (part Conn_01x02_Female)
(description "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x02_Female))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(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))))
(libpart (lib Connector_Generic) (part Conn_01x06)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06))
(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))))
(libpart (lib Connector_Generic) (part Conn_01x19)
(description "Generic connector, single row, 01x19, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x19))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x04_Odd_Even)
(description "Generic connector, double row, 02x04, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x04_Odd_Even))
(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))))
(libpart (lib Connector_Generic) (part Conn_02x06_Odd_Even)
(description "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x06_Odd_Even))
(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 Connector_Generic) (part Conn_02x07_Odd_Even)
(description "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x07_Odd_Even))
(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))))
(libpart (lib DPDT_x2) (part DPDT_x2)
(fields
(field (name Reference) U)
(field (name Value) DPDT_x2))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name B) (type passive))
(pin (num 3) (name C) (type passive))
(pin (num 4) (name C) (type passive))
(pin (num 5) (name B) (type passive))
(pin (num 6) (name A) (type passive))))
(libpart (lib Device) (part Fuse)
(description Fuse)
(docs ~)
(footprints
(fp *Fuse*))
(fields
(field (name Reference) F)
(field (name Value) Fuse))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part LED_Small)
(description "Light emitting diode, small symbol")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Transistor_FET) (part BSS138)
(aliases
(alias 2N7002)
(alias 2N7002E)
(alias 2N7002H)
(alias 2N7002K)
(alias BS170F)
(alias BS870)
(alias BSN20)
(alias BSS123)
(alias BSS127S)
(alias DMG2302U)
(alias DMG3402L)
(alias DMG3404L)
(alias DMG3406L)
(alias DMG3414U)
(alias DMG3418L)
(alias DMN10H220L)
(alias DMN10H700S)
(alias DMN13H750S)
(alias DMN2041L)
(alias DMN2050L)
(alias DMN2056U)
(alias DMN2058U)
(alias DMN2075U)
(alias DMN2230U)
(alias DMN24H11DS)
(alias DMN24H3D5L)
(alias DMN3042L)
(alias DMN3051L)
(alias DMN30H4D0L)
(alias DMN3110S)
(alias DMN3150L)
(alias DMN3300U)
(alias DMN3404L)
(alias DMN6075S)
(alias DMN6140L)
(alias DMN67D7L)
(alias DMN67D8L)
(alias MMBF170)
(alias VN10LF)
(alias ZVN3306F)
(alias ZVN3310F)
(alias ZVN3320F)
(alias ZVN4106F)
(alias ZXM61N02F)
(alias ZXM61N03F)
(alias ZXMN10A07F)
(alias ZXMN2A01F)
(alias ZXMN2A14F)
(alias ZXMN2B01F)
(alias ZXMN2B14FH)
(alias ZXMN2F30FH)
(alias ZXMN2F34FH)
(alias ZXMN3A01F)
(alias ZXMN3A14F)
(alias ZXMN3B01F)
(alias ZXMN3B14F)
(alias ZXMN3F30FH)
(alias ZXMN6A07F)
(alias IRLML2060))
(description "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23")
(docs https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) Q)
(field (name Value) BSS138)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name S) (type passive))
(pin (num 3) (name D) (type passive))))
(libpart (lib esp-devkit) (part esp-devkit)
(fields
(field (name Reference) U)
(field (name Value) esp-devkit))
(pins
(pin (num 5V) (name 5V) (type input))
(pin (num 3V3) (name 3V3) (type input))
(pin (num CLK) (name CLK) (type input))
(pin (num CMD) (name CMD) (type input))
(pin (num EN) (name EN) (type input))
(pin (num GND) (name GND) (type input))
(pin (num IO1) (name IO1) (type input))
(pin (num IO2) (name IO2) (type input))
(pin (num IO4) (name IO4) (type input))
(pin (num IO5) (name IO5) (type input))
(pin (num IO12) (name IO12) (type input))
(pin (num IO13) (name IO13) (type input))
(pin (num IO14) (name IO14) (type input))
(pin (num IO15) (name IO15) (type input))
(pin (num IO16) (name IO16) (type input))
(pin (num IO17) (name IO17) (type input))
(pin (num IO18) (name IO18) (type input))
(pin (num IO19) (name IO19) (type input))
(pin (num IO21) (name IO21) (type input))
(pin (num IO22) (name IO22) (type input))
(pin (num IO23) (name IO23) (type input))
(pin (num IO25) (name IO25) (type input))
(pin (num IO26) (name IO26) (type input))
(pin (num IO27) (name IO27) (type input))
(pin (num IO32) (name IO32) (type input))
(pin (num IO33) (name IO33) (type input))
(pin (num IO34) (name IO34) (type input))
(pin (num IO35) (name IO35) (type input))
(pin (num RX0) (name RX0) (type input))
(pin (num SD0) (name SD0) (type input))
(pin (num SD1) (name SD1) (type input))
(pin (num SD2) (name SD2) (type input))
(pin (num SD3) (name SD3) (type input))
(pin (num SVN) (name SVN) (type input))
(pin (num SVP) (name SVP) (type input))
(pin (num TX0) (name TX0) (type input))))
(libpart (lib polulu-3784-D36V28F7) (part polulu-3784-D36V28F7)
(fields
(field (name Reference) U)
(field (name Value) polulu-3784-D36V28F7))
(pins
(pin (num EN) (name EN) (type input))
(pin (num GND) (name GND) (type input))
(pin (num PG) (name PG) (type input))
(pin (num VIN) (name VIN) (type input))
(pin (num VOUT) (name VOUT) (type input)))))
(libraries
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic.lib"))
(library (logical DPDT_x2)
(uri C:\Users\AlexCamilo\Documents\GitHub\RobotInterfaceBoard/sch_lib/DPDT_x2.lib))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Transistor_FET)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Transistor_FET.lib"))
(library (logical esp-devkit)
(uri C:\Users\AlexCamilo\Documents\GitHub\RobotInterfaceBoard/sch_lib/esp-devkit.lib))
(library (logical polulu-3784-D36V28F7)