-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcartboard.net
1017 lines (1017 loc) · 35.3 KB
/
cartboard.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
994
995
996
997
998
999
1000
(export (version D)
(design
(source /home/baobrien/school/EC/cartboard/cartboard.sch)
(date "Sun 11 Sep 2016 07:31:59 PM CDT")
(tool "Eeschema 4.0.2+dfsg1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source cartboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /protectedio/) (tstamps /56119D31/)
(title_block
(title)
(company)
(rev)
(date)
(source protected_io.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Power/) (tstamps /561555A2/)
(title_block
(title)
(company)
(rev)
(date)
(source power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/Isolated Serial/") (tstamps /5614830B/)
(title_block
(title)
(company)
(rev)
(date)
(source serial.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Low side drivers/") (tstamps /561AF28C/)
(title_block
(title)
(company)
(rev)
(date)
(source lowdriver.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U101)
(value CY8C29466)
(footprint Housings_SSOP:SSOP-28_5.3x10.2mm_Pitch0.65mm)
(libsource (lib cartboard) (part CY8C29466))
(sheetpath (names /) (tstamps /))
(tstamp 5617CCFA))
(comp (ref P101)
(value CONN_01X05)
(footprint Pin_Headers:Pin_Header_Angled_1x05)
(fields
(field (name Part) WM4203-ND))
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 561AE6AF))
(comp (ref C101)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 561BCB13))
(comp (ref C102)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 561BCBD3))
(comp (ref D1)
(value LED)
(footprint LEDs:LED_0805)
(fields
(field (name Part) APT2012SGC))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57D5F723))
(comp (ref R1)
(value 180R)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57D5FE3E))
(comp (ref D101)
(value LED)
(footprint LEDs:LED_0805)
(fields
(field (name Part) APT2012SGC))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57D60A49))
(comp (ref R101)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57D60A4F))
(comp (ref D102)
(value LED)
(footprint LEDs:LED_0805)
(fields
(field (name Part) APT2012SGC))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57D60D73))
(comp (ref R102)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57D60D79))
(comp (ref D103)
(value LED)
(footprint LEDs:LED_0805)
(fields
(field (name Part) APT2012SGC))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57D60ED3))
(comp (ref R103)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57D60ED9))
(comp (ref U202)
(value SP723)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib cartboard) (part SP723))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611A5E3))
(comp (ref C1)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611C7E0))
(comp (ref C2)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611C8BD))
(comp (ref C3)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611C8F2))
(comp (ref U201)
(value SP723)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib cartboard) (part SP723))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611A56D))
(comp (ref P202)
(value CONN_01X08)
(footprint cartboard:TE_TERMBLOCK_5mmx8_282836-8)
(fields
(field (name Part) 282836-8))
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611B50E))
(comp (ref RP202)
(value 1K)
(footprint Housings_SOIC:SOIC-16_7.5x10.3mm_Pitch1.27mm)
(fields
(field (name Part) 628A102))
(libsource (lib device) (part R_PACK8))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 5611A10D))
(comp (ref P201)
(value CONN_01X08)
(footprint cartboard:TE_TERMBLOCK_5mmx8_282836-8)
(fields
(field (name Part) 282836-8))
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 57D5CC6F))
(comp (ref RP201)
(value 1K)
(footprint Housings_SOIC:SOIC-16_7.5x10.3mm_Pitch1.27mm)
(fields
(field (name Part) 628A102))
(libsource (lib device) (part R_PACK8))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 57D5CCC9))
(comp (ref U203)
(value SP723)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib cartboard) (part SP723))
(sheetpath (names /protectedio/) (tstamps /56119D31/))
(tstamp 57D5D1E8))
(comp (ref P401)
(value CONN_01X02)
(footprint cartboard:TE_TERMBLOCK_5mmx2_282836-2)
(fields
(field (name Part) ED2609-ND))
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 561556C2))
(comp (ref C401)
(value 47u)
(footprint cartboard:CAP_UCD1H470MCL6GS)
(fields
(field (name part) UCD1H470MCL6GS))
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 56155710))
(comp (ref C402)
(value 47u)
(footprint cartboard:CAP_UCD1H470MCL6GS)
(fields
(field (name part) UCD1H470MCL6GS))
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 56155761))
(comp (ref C405)
(value 47u)
(footprint cartboard:CAP_UCD1H470MCL6GS)
(fields
(field (name part) UCD1H470MCL6GS))
(libsource (lib device) (part CP1))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 56155796))
(comp (ref L401)
(value .9u)
(footprint cartboard:L_NRS)
(fields
(field (name Part) NRS6028T0R9NMGJV))
(libsource (lib device) (part INDUCTOR_SMALL))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 561557D6))
(comp (ref C403)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 561558A0))
(comp (ref C404)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 561558CF))
(comp (ref U401)
(value MC7805CDTRKG)
(footprint cartboard:D-PAK3)
(libsource (lib cartboard) (part 7805CDT))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 56155B5E))
(comp (ref D401)
(value MBRS340T3G)
(footprint Diodes_SMD:SMC_Standard)
(fields
(field (name Part) MBRS340T3G))
(libsource (lib device) (part D_Schottky))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 56155C0F))
(comp (ref P302)
(value CONN_01X02)
(footprint cartboard:TE_TERMBLOCK_5mmx2_282836-2)
(fields
(field (name Part) ED2609-ND))
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /Power/) (tstamps /561555A2/))
(tstamp 561ACF5A))
(comp (ref U301)
(value CY7C65213-28)
(footprint Housings_SSOP:SSOP-28_5.3x10.2mm_Pitch0.65mm)
(fields
(field (name Part) CY7C65213-28PVXI))
(libsource (lib cartboard) (part CY7C65213-28))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 56148621))
(comp (ref P301)
(value USB_OTG)
(footprint Connect:USB_Mini-B)
(libsource (lib conn) (part USB_OTG))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 56148870))
(comp (ref C301)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 561488D3))
(comp (ref C302)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 56148948))
(comp (ref C303)
(value 1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 56148B2D))
(comp (ref U302)
(value ISO7321)
(footprint Housings_SOIC:SOIJ-8_5.3x5.3mm_Pitch1.27mm)
(libsource (lib cartboard) (part ISO7321))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 561490CD))
(comp (ref C304)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Isolated Serial/") (tstamps /5614830B/))
(tstamp 56149585))
(comp (ref D501)
(value MBRS340T3G)
(footprint Diodes_SMD:SMC_Standard)
(libsource (lib device) (part D_Schottky))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B0099))
(comp (ref P501)
(value CONN_01X02)
(footprint cartboard:TE_TERMBLOCK_5mmx2_282836-2)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B009F))
(comp (ref Q501)
(value NTD3055L104)
(footprint cartboard:D-PAK3)
(libsource (lib cartboard) (part Q_NMOS_DGS_DPAK3))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B00B6))
(comp (ref R501)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B00BC))
(comp (ref C501)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B0371))
(comp (ref D502)
(value MBRS340T3G)
(footprint Diodes_SMD:SMC_Standard)
(libsource (lib device) (part D_Schottky))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B0761))
(comp (ref P502)
(value CONN_01X02)
(footprint cartboard:TE_TERMBLOCK_5mmx2_282836-2)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B0767))
(comp (ref Q502)
(value NTD3055L104)
(footprint cartboard:D-PAK3)
(libsource (lib cartboard) (part Q_NMOS_DGS_DPAK3))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B077E))
(comp (ref R502)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B0784))
(comp (ref C502)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B078D))
(comp (ref D503)
(value MBRS340T3G)
(footprint Diodes_SMD:SMC_Standard)
(libsource (lib device) (part D_Schottky))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B2C02))
(comp (ref P503)
(value CONN_01X02)
(footprint cartboard:TE_TERMBLOCK_5mmx2_282836-2)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B2C08))
(comp (ref Q503)
(value NTD3055L104)
(footprint cartboard:D-PAK3)
(libsource (lib cartboard) (part Q_NMOS_DGS_DPAK3))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B2C1F))
(comp (ref R503)
(value 1K)
(footprint Resistors_SMD:R_0603_HandSoldering)
(libsource (lib device) (part R))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B2C25))
(comp (ref C503)
(value .1u)
(footprint Capacitors_SMD:C_0603_HandSoldering)
(libsource (lib device) (part C))
(sheetpath (names "/Low side drivers/") (tstamps /561AF28C/))
(tstamp 561B2C2E)))
(libparts
(libpart (lib cartboard) (part 7805CDT)
(aliases
(alias LM7812))
(description "Linear Regulator +5V DPAK-3")
(docs regulator\lm78xx.pdf)
(footprints
(fp DPAK-3))
(fields
(field (name Reference) U)
(field (name Value) 7805CDT))
(pins
(pin (num 1) (name VI) (type input))
(pin (num 3) (name VO) (type power_out))
(pin (num 4) (name GND) (type input))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X02)
(description "Connector 01x02")
(footprints
(fp Pin_Header_Straight_1X02)
(fp Pin_Header_Angled_1X02)
(fp Socket_Strip_Straight_1X02)
(fp Socket_Strip_Angled_1X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib conn) (part CONN_01X05)
(description "Connector 01x05")
(footprints
(fp Pin_Header_Straight_1X05)
(fp Pin_Header_Angled_1X05)
(fp Socket_Strip_Straight_1X05)
(fp Socket_Strip_Angled_1X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))))
(libpart (lib conn) (part CONN_01X08)
(description "Connector 01x08")
(footprints
(fp Pin_Header_Straight_1X08)
(fp Pin_Header_Angled_1X08)
(fp Socket_Strip_Straight_1X08)
(fp Socket_Strip_Angled_1X08))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X08))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))))
(libpart (lib device) (part CP1)
(description "Polarised capacitor")
(footprints
(fp SMD*_Pol)
(fp c_elec*)
(fp C*elec)
(fp TantalC*)
(fp Elko*)
(fp CP*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib cartboard) (part CY7C65213-28)
(fields
(field (name Reference) U)
(field (name Value) CY7C65213-28))
(pins
(pin (num 1) (name TXD) (type output))
(pin (num 2) (name ~DTR) (type output))
(pin (num 3) (name ~RTS) (type output))
(pin (num 4) (name VCCIO) (type power_in))
(pin (num 5) (name RXD) (type input))
(pin (num 6) (name ~RI) (type input))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name GPIO5) (type BiDi))
(pin (num 9) (name ~DSR) (type input))
(pin (num 10) (name ~DCD) (type input))
(pin (num 11) (name ~CTS) (type input))
(pin (num 12) (name GPIO4/~SLP) (type BiDi))
(pin (num 13) (name GPIO2) (type BiDi))
(pin (num 14) (name GPIO3/~PWR) (type BiDi))
(pin (num 15) (name USBD+) (type power_in))
(pin (num 16) (name USBD-) (type power_in))
(pin (num 17) (name VCCD) (type power_in))
(pin (num 18) (name GND) (type power_in))
(pin (num 19) (name ~RST) (type power_in))
(pin (num 20) (name VCC) (type power_in))
(pin (num 21) (name GND) (type power_in))
(pin (num 22) (name GPIO1/~RXLED) (type BiDi))
(pin (num 23) (name GPIO0/~TXLED) (type BiDi))
(pin (num 27) (name GPIO6) (type BiDi))
(pin (num 28) (name GPIO7) (type BiDi))))
(libpart (lib cartboard) (part CY8C29466)
(fields
(field (name Reference) U)
(field (name Value) CY8C29466))
(pins
(pin (num 1) (name P0[7]_AI) (type BiDi))
(pin (num 2) (name P0[5]_AIO) (type BiDi))
(pin (num 3) (name P0[3]_AIO) (type BiDi))
(pin (num 4) (name P0[1]_AI) (type BiDi))
(pin (num 5) (name P2[7]) (type BiDi))
(pin (num 6) (name P2[5]) (type BiDi))
(pin (num 7) (name P2[3]_AI) (type BiDi))
(pin (num 8) (name P2[1]_AI) (type BiDi))
(pin (num 9) (name SMP) (type power_in))
(pin (num 10) (name P1[7]_SCL) (type BiDi))
(pin (num 11) (name P1[5]_SDA) (type BiDi))
(pin (num 12) (name P1[3]) (type BiDi))
(pin (num 13) (name P1[1]_XIN_PSCL) (type BiDi))
(pin (num 14) (name VSS) (type power_in))
(pin (num 15) (name P1[0]_XIN_PSDA) (type BiDi))
(pin (num 16) (name P1[2]) (type BiDi))
(pin (num 17) (name P1[4]_EXCLK) (type BiDi))
(pin (num 18) (name P1[6]) (type BiDi))
(pin (num 19) (name XRES) (type BiDi))
(pin (num 20) (name P2[0]_AI) (type BiDi))
(pin (num 21) (name P2[2]_AI) (type BiDi))
(pin (num 22) (name P2[4]) (type BiDi))
(pin (num 23) (name P2[6]) (type BiDi))
(pin (num 24) (name P0[0]_AI) (type BiDi))
(pin (num 25) (name P0[2]_AIO) (type BiDi))
(pin (num 26) (name P0[4]_AIO) (type BiDi))
(pin (num 27) (name P0[6]_AIO) (type BiDi))
(pin (num 28) (name VDD) (type power_in))))
(libpart (lib device) (part D_Schottky)
(description "Diode schottky")
(footprints
(fp D-Pak_TO252AA)
(fp Diode_*)
(fp *SingleDiode)
(fp *SingleDiode*)
(fp *_Diode_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part INDUCTOR_SMALL)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR_SMALL))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib cartboard) (part ISO7321)
(fields
(field (name Reference) U)
(field (name Value) ISO7321))
(pins
(pin (num 1) (name VCC1) (type power_in))
(pin (num 2) (name OA) (type output))
(pin (num 3) (name IB) (type input))
(pin (num 4) (name GND1) (type power_in))
(pin (num 5) (name GND2) (type power_in))
(pin (num 6) (name OB) (type output))
(pin (num 7) (name IA) (type input))
(pin (num 8) (name VCC2) (type power_in))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib cartboard) (part Q_NMOS_DGS_DPAK3)
(description "Transistor N-MOSFET (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_DGS_DPAK3))
(pins
(pin (num 1) (name G) (type input))
(pin (num 3) (name S) (type passive))
(pin (num 4) (name D) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part R_PACK8)
(description "8 resistors Pack")
(fields
(field (name Reference) RP)
(field (name Value) R_PACK8))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name R8) (type passive))
(pin (num 10) (name R7) (type passive))
(pin (num 11) (name R6) (type passive))
(pin (num 12) (name R5) (type passive))
(pin (num 13) (name R4) (type passive))
(pin (num 14) (name R3) (type passive))
(pin (num 15) (name R2) (type passive))
(pin (num 16) (name R1) (type passive))))
(libpart (lib cartboard) (part SP723)
(footprints
(fp SOIC-8*))
(fields
(field (name Reference) U)
(field (name Value) SP723))
(pins
(pin (num 1) (name IN1) (type input))
(pin (num 2) (name IN2) (type input))
(pin (num 3) (name IN3) (type input))
(pin (num 4) (name V-) (type input))
(pin (num 5) (name IN4) (type input))
(pin (num 6) (name IN5) (type input))
(pin (num 7) (name IN6) (type input))
(pin (num 8) (name V+) (type input))))
(libpart (lib conn) (part USB_OTG)
(description "micro/mini connector")
(footprints
(fp USB*))
(fields
(field (name Reference) P)
(field (name Value) USB_OTG))
(pins
(pin (num 1) (name VCC) (type power_out))
(pin (num 2) (name D-) (type passive))
(pin (num 3) (name D+) (type passive))
(pin (num 4) (name ID) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name shield) (type passive)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical cartboard)
(uri /home/baobrien/school/EC/cartboard/cartboard.lib)))
(nets
(net (code 1) (name /XRES)
(node (ref P101) (pin 3))
(node (ref U101) (pin 19)))
(net (code 2) (name /PSCL)
(node (ref U101) (pin 13))
(node (ref P101) (pin 4)))
(net (code 3) (name /PSDA)
(node (ref P101) (pin 5))
(node (ref U101) (pin 15)))
(net (code 4) (name /Power/VCC)
(node (ref C101) (pin 1))
(node (ref U401) (pin 3))
(node (ref P302) (pin 2))
(node (ref U201) (pin 8))
(node (ref C102) (pin 1))
(node (ref C3) (pin 1))
(node (ref R1) (pin 2))
(node (ref C2) (pin 1))
(node (ref U302) (pin 8))
(node (ref C1) (pin 1))
(node (ref C304) (pin 1))
(node (ref U101) (pin 28))
(node (ref U202) (pin 8))
(node (ref U203) (pin 8))
(node (ref P101) (pin 1))
(node (ref C405) (pin 1))
(node (ref C404) (pin 1)))
(net (code 5) (name "/Low side drivers/C0")
(node (ref U101) (pin 16))
(node (ref R101) (pin 2))
(node (ref R501) (pin 2)))
(net (code 6) (name "/Low side drivers/VIN")
(node (ref P501) (pin 2))
(node (ref D501) (pin 1))
(node (ref P502) (pin 2))
(node (ref D502) (pin 1))
(node (ref D503) (pin 1))
(node (ref C401) (pin 1))
(node (ref L401) (pin 1))
(node (ref D401) (pin 1))
(node (ref C501) (pin 1))
(node (ref P503) (pin 2))
(node (ref C502) (pin 1))
(node (ref C503) (pin 1)))
(net (code 7) (name "/Low side drivers/C1")
(node (ref U101) (pin 12))
(node (ref R102) (pin 2))
(node (ref R502) (pin 2)))
(net (code 8) (name "/Low side drivers/C2")
(node (ref U101) (pin 6))
(node (ref R503) (pin 2))
(node (ref R103) (pin 2)))
(net (code 9) (name /IO14)
(node (ref RP201) (pin 3))
(node (ref U203) (pin 6))
(node (ref U101) (pin 21)))
(net (code 10) (name /IO16)
(node (ref U203) (pin 5))
(node (ref U101) (pin 22))
(node (ref RP201) (pin 1)))
(net (code 11) (name "/Isolated Serial/RXISO")
(node (ref U101) (pin 18))
(node (ref U302) (pin 7)))
(net (code 12) (name "/Isolated Serial/TXISO")
(node (ref U302) (pin 6))
(node (ref U101) (pin 5)))
(net (code 13) (name "Net-(D102-Pad2)")
(node (ref R102) (pin 1))
(node (ref D102) (pin 2)))
(net (code 14) (name "Net-(D103-Pad2)")
(node (ref R103) (pin 1))
(node (ref D103) (pin 2)))
(net (code 15) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref R1) (pin 1)))
(net (code 16) (name "Net-(D101-Pad2)")
(node (ref D101) (pin 2))
(node (ref R101) (pin 1)))
(net (code 17) (name /IO12)
(node (ref U203) (pin 7))
(node (ref RP201) (pin 5))
(node (ref U101) (pin 20)))
(net (code 18) (name /IO15)
(node (ref U203) (pin 3))
(node (ref RP201) (pin 2))
(node (ref U101) (pin 7)))
(net (code 19) (name "Net-(U101-Pad9)")
(node (ref U101) (pin 9)))
(net (code 20) (name "Net-(U101-Pad23)")
(node (ref U101) (pin 23)))
(net (code 21) (name /protectedio/IOP1)
(node (ref RP202) (pin 9))
(node (ref P202) (pin 1)))
(net (code 22) (name /protectedio/IOP2)
(node (ref P202) (pin 2))
(node (ref RP202) (pin 10)))
(net (code 23) (name /protectedio/IOP3)
(node (ref RP202) (pin 11))
(node (ref P202) (pin 3)))
(net (code 24) (name /protectedio/IOP4)
(node (ref P202) (pin 4))
(node (ref RP202) (pin 12)))
(net (code 25) (name /protectedio/IOP5)
(node (ref RP202) (pin 13))
(node (ref P202) (pin 5)))
(net (code 26) (name /protectedio/IOP6)
(node (ref P202) (pin 6))
(node (ref RP202) (pin 14)))
(net (code 27) (name /protectedio/IOP7)
(node (ref P202) (pin 7))
(node (ref RP202) (pin 15)))
(net (code 28) (name /protectedio/IOP8)
(node (ref P202) (pin 8))
(node (ref RP202) (pin 16)))
(net (code 29) (name /protectedio/IOP9)
(node (ref P201) (pin 1))
(node (ref RP201) (pin 9)))
(net (code 30) (name /protectedio/IOP10)
(node (ref RP201) (pin 10))
(node (ref P201) (pin 2)))
(net (code 31) (name /protectedio/IOP11)
(node (ref P201) (pin 3))
(node (ref RP201) (pin 11)))
(net (code 32) (name /protectedio/IOP12)
(node (ref RP201) (pin 12))
(node (ref P201) (pin 4)))
(net (code 33) (name /protectedio/IOP13)
(node (ref RP201) (pin 13))
(node (ref P201) (pin 5)))
(net (code 34) (name /protectedio/IOP14)
(node (ref P201) (pin 6))
(node (ref RP201) (pin 14)))
(net (code 35) (name "Net-(U201-Pad7)")
(node (ref U201) (pin 7)))
(net (code 36) (name /protectedio/IOP16)
(node (ref P201) (pin 8))
(node (ref RP201) (pin 16)))
(net (code 37) (name /protectedio/IOP15)
(node (ref RP201) (pin 15))
(node (ref P201) (pin 7)))
(net (code 38) (name "Net-(U201-Pad1)")
(node (ref U201) (pin 1)))
(net (code 39) (name "/Isolated Serial/GNDU")
(node (ref C303) (pin 2))
(node (ref U301) (pin 18))
(node (ref U301) (pin 21))
(node (ref U302) (pin 4))
(node (ref C302) (pin 2))
(node (ref C301) (pin 2))
(node (ref P301) (pin 5))
(node (ref U301) (pin 7)))
(net (code 40) (name "Net-(P301-Pad3)")
(node (ref P301) (pin 3))
(node (ref U301) (pin 15)))
(net (code 41) (name "Net-(P301-Pad2)")
(node (ref U301) (pin 16))
(node (ref P301) (pin 2)))
(net (code 42) (name "Net-(C303-Pad1)")
(node (ref U301) (pin 17))
(node (ref C303) (pin 1)))
(net (code 43) (name "Net-(U301-Pad27)")
(node (ref U301) (pin 27)))
(net (code 44) (name "Net-(U301-Pad28)")
(node (ref U301) (pin 28)))
(net (code 45) (name "Net-(U301-Pad19)")
(node (ref U301) (pin 19)))
(net (code 46) (name "Net-(P301-Pad4)")
(node (ref P301) (pin 4)))
(net (code 47) (name "Net-(P301-Pad6)")
(node (ref P301) (pin 6)))
(net (code 48) (name "/Isolated Serial/VCCUSB")
(node (ref U301) (pin 20))
(node (ref P301) (pin 1))
(node (ref U302) (pin 1))
(node (ref C301) (pin 1))
(node (ref C302) (pin 1))
(node (ref U301) (pin 4)))
(net (code 49) (name "Net-(U301-Pad5)")
(node (ref U301) (pin 5))
(node (ref U302) (pin 2)))
(net (code 50) (name "Net-(U301-Pad1)")
(node (ref U302) (pin 3))
(node (ref U301) (pin 1)))
(net (code 51) (name "Net-(U301-Pad23)")
(node (ref U301) (pin 23)))
(net (code 52) (name "Net-(U301-Pad14)")
(node (ref U301) (pin 14)))
(net (code 53) (name "Net-(U301-Pad2)")
(node (ref U301) (pin 2)))
(net (code 54) (name "Net-(U301-Pad3)")
(node (ref U301) (pin 3)))
(net (code 55) (name "Net-(U301-Pad6)")
(node (ref U301) (pin 6)))
(net (code 56) (name "Net-(U301-Pad9)")
(node (ref U301) (pin 9)))
(net (code 57) (name "Net-(U301-Pad10)")
(node (ref U301) (pin 10)))
(net (code 58) (name "Net-(U301-Pad11)")
(node (ref U301) (pin 11)))
(net (code 59) (name "Net-(U301-Pad12)")
(node (ref U301) (pin 12)))
(net (code 60) (name "Net-(U301-Pad22)")
(node (ref U301) (pin 22)))
(net (code 61) (name "Net-(U301-Pad13)")
(node (ref U301) (pin 13)))
(net (code 62) (name "Net-(U301-Pad8)")
(node (ref U301) (pin 8)))
(net (code 63) (name "Net-(D401-Pad2)")
(node (ref P401) (pin 2))
(node (ref D401) (pin 2)))
(net (code 64) (name /Power/VIN)
(node (ref U401) (pin 1))
(node (ref C403) (pin 1))
(node (ref L401) (pin 2))
(node (ref C402) (pin 1)))
(net (code 65) (name GND)
(node (ref C503) (pin 2))
(node (ref C502) (pin 2))
(node (ref Q503) (pin 3))
(node (ref Q502) (pin 3))
(node (ref C501) (pin 2))
(node (ref Q501) (pin 3))
(node (ref C304) (pin 2))
(node (ref P302) (pin 1))
(node (ref U401) (pin 4))
(node (ref C404) (pin 2))
(node (ref C403) (pin 2))
(node (ref U302) (pin 5))
(node (ref C405) (pin 2))
(node (ref C402) (pin 2))
(node (ref C401) (pin 2))
(node (ref P401) (pin 1))
(node (ref P101) (pin 2))
(node (ref D103) (pin 1))
(node (ref D102) (pin 1))
(node (ref U203) (pin 4))
(node (ref D1) (pin 1))
(node (ref U202) (pin 4))
(node (ref U101) (pin 14))
(node (ref D101) (pin 1))
(node (ref C1) (pin 2))
(node (ref U201) (pin 4))
(node (ref C102) (pin 2))
(node (ref C2) (pin 2))
(node (ref C101) (pin 2))
(node (ref C3) (pin 2)))
(net (code 66) (name "Net-(Q502-Pad1)")
(node (ref R502) (pin 1))
(node (ref Q502) (pin 1)))
(net (code 67) (name "Net-(Q503-Pad1)")
(node (ref R503) (pin 1))
(node (ref Q503) (pin 1)))
(net (code 68) (name "Net-(D503-Pad2)")
(node (ref Q503) (pin 4))
(node (ref D503) (pin 2))
(node (ref P503) (pin 1)))
(net (code 69) (name "Net-(Q501-Pad1)")
(node (ref Q501) (pin 1))
(node (ref R501) (pin 1)))
(net (code 70) (name "Net-(D501-Pad2)")
(node (ref P501) (pin 1))
(node (ref Q501) (pin 4))
(node (ref D501) (pin 2)))
(net (code 71) (name "Net-(D502-Pad2)")
(node (ref P502) (pin 1))
(node (ref D502) (pin 2))
(node (ref Q502) (pin 4)))
(net (code 72) (name /IO1)
(node (ref RP202) (pin 8))
(node (ref U101) (pin 24))
(node (ref U201) (pin 2)))
(net (code 73) (name /IO2)
(node (ref U201) (pin 6))
(node (ref RP202) (pin 7))
(node (ref U101) (pin 4)))
(net (code 74) (name /IO3)
(node (ref U201) (pin 3))
(node (ref RP202) (pin 6))
(node (ref U101) (pin 25)))
(net (code 75) (name /IO4)
(node (ref U101) (pin 3))
(node (ref U201) (pin 5))
(node (ref RP202) (pin 5)))
(net (code 76) (name /IO5)
(node (ref RP202) (pin 4))
(node (ref U101) (pin 26))
(node (ref U202) (pin 1)))
(net (code 77) (name /IO6)
(node (ref U202) (pin 7))
(node (ref U101) (pin 2))
(node (ref RP202) (pin 3)))
(net (code 78) (name /IO7)
(node (ref U101) (pin 27))
(node (ref RP202) (pin 2))
(node (ref U202) (pin 2)))
(net (code 79) (name /IO8)
(node (ref RP202) (pin 1))
(node (ref U101) (pin 1))