-
Notifications
You must be signed in to change notification settings - Fork 2
/
beaglebone-cape.net
1048 lines (1048 loc) · 35.7 KB
/
beaglebone-cape.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/shawn/src/BBBdc/beaglebone-cape.sch)
(date "Sun 07 Aug 2016 04:16:02 PM EDT")
(tool "Eeschema 4.0.2+dfsg1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "BeagleBone Door Lock Cape")
(company)
(rev 2.3)
(date 2016-01-10)
(source beaglebone-cape.sch)
(comment (number 1) (value "License: GPL v3, https://github.com/bubbapizza/BBBdc"))
(comment (number 2) (value "Drawn by Shawn Wilson"))
(comment (number 3) (value "Design by Rob Caruso"))
(comment (number 4) (value ""))))
(sheet (number 2) (name /LOCK_RELAYS/) (tstamps /56401355/)
(title_block
(title "BeagleBone Door Lock Cape")
(company)
(rev 2.3)
(date 2016-01-10)
(source lock_relays.sch)
(comment (number 1) (value "License: GPL v3, https://github.com/bubbapizza/BBBdc"))
(comment (number 2) (value "Drawn by Shawn Wilson"))
(comment (number 3) (value "Design by Rob Caruso"))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value 24C256)
(footprint Housings_DIP:DIP-8_W7.62mm)
(libsource (lib memory) (part 24C16))
(sheetpath (names /) (tstamps /))
(tstamp 534A29B4))
(comp (ref R3)
(value 4.7k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 534A2A1B))
(comp (ref R2)
(value 4.7k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 534A2A28))
(comp (ref R1)
(value 4.7k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 534A2A2E))
(comp (ref R4)
(value 5.6k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 534A2A34))
(comp (ref R5)
(value 5.6k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 534A2A3A))
(comp (ref C1)
(value "0.1uF (25V)")
(footprint Capacitors_ThroughHole:C_Rect_L4_W2.5_P2.5)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 534A2AC4))
(comp (ref P1)
(value BEAGLEBONE_BLACK)
(footprint beagleboard:BEAGLEBONE_BLACK_NO_PERIMETER)
(libsource (lib beagleboard) (part BEAGLEBONE_BLACK))
(sheetpath (names /) (tstamps /))
(tstamp 5350D632))
(comp (ref P4)
(value JUMPERS)
(footprint Pin_Headers:Pin_Header_Straight_2x02)
(libsource (lib conn) (part CONN_02X02))
(sheetpath (names /) (tstamps /))
(tstamp 563FB879))
(comp (ref P6)
(value "RTC MODULE")
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 563FCAE1))
(comp (ref C2)
(value "10 uF (25V)")
(footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
(libsource (lib device) (part CP1_Small))
(sheetpath (names /) (tstamps /))
(tstamp 563FD9A8))
(comp (ref C3)
(value "22 uF (16V)")
(footprint Capacitors_ThroughHole:C_Radial_D5_L6_P2.5)
(libsource (lib device) (part CP1_Small))
(sheetpath (names /) (tstamps /))
(tstamp 563FD9F2))
(comp (ref P2)
(value 12V)
(footprint abracadabra:TERM_BLOCK_ED2609)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 563FDA3C))
(comp (ref SW1)
(value PWR_SWITCH)
(footprint abracadabra:BUTTON_MJTP1230)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 563FC459))
(comp (ref SW2)
(value RESET_SWITCH)
(footprint abracadabra:BUTTON_MJTP1230)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 563FC518))
(comp (ref P5)
(value GREEN_LIGHT)
(footprint abracadabra:TERM_BLOCK_ED2609)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 563FD8F2))
(comp (ref R13)
(value 1k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FE3F6))
(comp (ref D4)
(value GREEN)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part Led_Small))
(sheetpath (names /) (tstamps /))
(tstamp 563FE60A))
(comp (ref R11)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FEF8E))
(comp (ref R12)
(value 10k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FF019))
(comp (ref P3)
(value RED_LIGHT)
(footprint abracadabra:TERM_BLOCK_ED2609)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /) (tstamps /))
(tstamp 563FFDED))
(comp (ref R10)
(value 1k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FFDFD))
(comp (ref D3)
(value RED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part Led_Small))
(sheetpath (names /) (tstamps /))
(tstamp 563FFE03))
(comp (ref R8)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FFE16))
(comp (ref R9)
(value 10k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 563FFE1C))
(comp (ref R6)
(value 1k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564BCB76))
(comp (ref D1)
(value "PWR +12V")
(footprint LEDs:LED-3MM)
(fields
(field (name Color) RED))
(libsource (lib device) (part Led_Small))
(sheetpath (names /) (tstamps /))
(tstamp 564BCC0F))
(comp (ref R7)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 564BDD3D))
(comp (ref D2)
(value "PWR +5V")
(footprint LEDs:LED-3MM)
(fields
(field (name Color) GREEN))
(libsource (lib device) (part Led_Small))
(sheetpath (names /) (tstamps /))
(tstamp 564BDE06))
(comp (ref U2)
(value V7805-2000)
(footprint abracadabra:V78XX-2000)
(libsource (lib w_relay) (part V7805-2000))
(sheetpath (names /) (tstamps /))
(tstamp 565B7676))
(comp (ref Q1)
(value 2N7000)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Narrow_Oval)
(libsource (lib device) (part Q_NJFET_SGD))
(sheetpath (names /) (tstamps /))
(tstamp 565B7ADC))
(comp (ref Q2)
(value 2N7000)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Narrow_Oval)
(libsource (lib device) (part Q_NJFET_SGD))
(sheetpath (names /) (tstamps /))
(tstamp 565B7EDA))
(comp (ref R16)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5642BC25))
(comp (ref R18)
(value 10k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5642BC5C))
(comp (ref P9)
(value "DOOR STRIKE/MAGNET")
(footprint abracadabra:TERM_BLOCK_ED2609)
(fields
(field (name PCBLabel) "DOOR LCK"))
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5642BE38))
(comp (ref D7)
(value 1N4007)
(footprint Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10)
(libsource (lib device) (part D))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643DD3A))
(comp (ref R14)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643DD91))
(comp (ref D5)
(value "RELAY ON")
(footprint LEDs:LED-3MM)
(fields
(field (name Color) BLUE))
(libsource (lib device) (part Led_Small))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643DDD6))
(comp (ref R17)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643E2AD))
(comp (ref R19)
(value 10k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643E2B3))
(comp (ref D8)
(value 1N4007)
(footprint Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10)
(libsource (lib device) (part D))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643E2D0))
(comp (ref R15)
(value 330)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643E2D6))
(comp (ref D6)
(value "RELAY ON")
(footprint LEDs:LED-3MM)
(fields
(field (name Color) BLUE))
(libsource (lib device) (part Led_Small))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5643E2DC))
(comp (ref D9)
(value 1N4007)
(footprint Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10)
(libsource (lib device) (part D))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 56475E79))
(comp (ref P8)
(value "NC/NO JUMPER")
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(fields
(field (name J1) NC)
(field (name J2) NO))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 56477BD0))
(comp (ref P7)
(value "NC/NO JUMPER")
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(fields
(field (name J1) NC)
(field (name J2) NO))
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 56477F22))
(comp (ref U4)
(value 4N25)
(footprint Housings_DIP:DIP-6_W7.62mm)
(libsource (lib opto) (part 4N25))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659C613))
(comp (ref R23)
(value 2k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659CA75))
(comp (ref R21)
(value 1k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659CC50))
(comp (ref U3)
(value 4N25)
(footprint Housings_DIP:DIP-6_W7.62mm)
(libsource (lib opto) (part 4N25))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659D430))
(comp (ref R22)
(value 2k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659D43F))
(comp (ref R20)
(value 1k)
(footprint Discret:R1)
(libsource (lib device) (part R))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 5659D44E))
(comp (ref Q3)
(value 2N7000)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Narrow_Oval)
(libsource (lib device) (part Q_NJFET_SGD))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 565B891D))
(comp (ref Q4)
(value 2N7000)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Narrow_Oval)
(libsource (lib device) (part Q_NJFET_SGD))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 565B8DD9))
(comp (ref RLY2)
(value JW2SN-DC5V)
(footprint abracadabra:Panasonic_JW)
(libsource (lib w_relay) (part JW2SN-DC5V))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 565BA692))
(comp (ref RLY1)
(value JW2SN-DC5V)
(footprint abracadabra:Panasonic_JW)
(libsource (lib w_relay) (part JW2SN-DC5V))
(sheetpath (names /LOCK_RELAYS/) (tstamps /56401355/))
(tstamp 565BAA70)))
(libparts
(libpart (lib memory) (part 24C16)
(aliases
(alias 24C512))
(description "I2C Serial EEPROM")
(fields
(field (name Reference) U)
(field (name Value) 24C16))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA) (type BiDi))
(pin (num 6) (name SCL) (type input))
(pin (num 7) (name WP) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib opto) (part 4N25)
(aliases
(alias 4N26))
(description "DIP6, DC Optocoupler Base Connected, Vce 30V, CTR 20%, Viso 2500V")
(fields
(field (name Reference) U)
(field (name Value) 4N25)
(field (name Footprint) DIP-6))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib beagleboard) (part BEAGLEBONE_BLACK)
(footprints
(fp BEAGLEBONE_BLACK))
(fields
(field (name Reference) P)
(field (name Value) BEAGLEBONE_BLACK))
(pins
(pin (num A1) (name GND) (type passive))
(pin (num A2) (name P2) (type passive))
(pin (num A3) (name P3) (type passive))
(pin (num A4) (name P4) (type passive))
(pin (num A5) (name P5) (type passive))
(pin (num A6) (name P6) (type passive))
(pin (num A7) (name P7) (type passive))
(pin (num A8) (name P8) (type passive))
(pin (num A9) (name P9) (type passive))
(pin (num A10) (name P10) (type passive))
(pin (num A11) (name P11) (type passive))
(pin (num A12) (name P12) (type passive))
(pin (num A13) (name P13) (type passive))
(pin (num A14) (name P14) (type passive))
(pin (num A15) (name P15) (type passive))
(pin (num A16) (name P16) (type passive))
(pin (num A17) (name P17) (type passive))
(pin (num A18) (name P18) (type passive))
(pin (num A19) (name P19) (type passive))
(pin (num A20) (name P20) (type passive))
(pin (num A21) (name P21) (type passive))
(pin (num A22) (name P22) (type passive))
(pin (num A23) (name P23) (type input))
(pin (num A24) (name P24) (type passive))
(pin (num A25) (name P25) (type input))
(pin (num A26) (name P26) (type passive))
(pin (num A27) (name P27) (type passive))
(pin (num A28) (name AP28) (type passive))
(pin (num A29) (name P29) (type passive))
(pin (num A30) (name P30) (type passive))
(pin (num A31) (name P31) (type passive))
(pin (num A32) (name P32) (type passive))
(pin (num A33) (name P33) (type passive))
(pin (num A34) (name P34) (type passive))
(pin (num A35) (name P35) (type passive))
(pin (num A36) (name P36) (type passive))
(pin (num A37) (name P37) (type passive))
(pin (num A38) (name P38) (type passive))
(pin (num A39) (name P39) (type passive))
(pin (num A40) (name P40) (type passive))
(pin (num A41) (name P41) (type passive))
(pin (num A42) (name P42) (type passive))
(pin (num A43) (name P43) (type passive))
(pin (num A44) (name P44) (type passive))
(pin (num A45) (name P45) (type passive))
(pin (num A46) (name P46) (type passive))
(pin (num B1) (name GND) (type passive))
(pin (num B2) (name P2) (type passive))
(pin (num B3) (name ~) (type passive))
(pin (num B4) (name P4) (type passive))
(pin (num B5) (name P5) (type passive))
(pin (num B6) (name P6) (type passive))
(pin (num B7) (name P7) (type passive))
(pin (num B8) (name P8) (type passive))
(pin (num B9) (name P9) (type passive))
(pin (num B10) (name P10) (type passive))
(pin (num B11) (name B11) (type passive))
(pin (num B12) (name P12) (type passive))
(pin (num B13) (name P13) (type passive))
(pin (num B14) (name P14) (type passive))
(pin (num B15) (name P15) (type passive))
(pin (num B16) (name P16) (type passive))
(pin (num B17) (name P17) (type passive))
(pin (num B18) (name P18) (type passive))
(pin (num B19) (name P19) (type passive))
(pin (num B20) (name P20) (type passive))
(pin (num B21) (name P21) (type passive))
(pin (num B22) (name P22) (type passive))
(pin (num B23) (name P23) (type input))
(pin (num B24) (name P24) (type passive))
(pin (num B25) (name P25) (type input))
(pin (num B26) (name P26) (type passive))
(pin (num B27) (name P27) (type passive))
(pin (num B28) (name AP28) (type passive))
(pin (num B29) (name P29) (type passive))
(pin (num B30) (name P30) (type passive))
(pin (num B31) (name P31) (type passive))
(pin (num B32) (name P32) (type passive))
(pin (num B33) (name P33) (type passive))
(pin (num B34) (name P34) (type passive))
(pin (num B35) (name P35) (type passive))
(pin (num B36) (name P36) (type passive))
(pin (num B37) (name P37) (type passive))
(pin (num B38) (name P38) (type passive))
(pin (num B39) (name P39) (type passive))
(pin (num B40) (name P40) (type passive))
(pin (num B41) (name P41) (type passive))
(pin (num B42) (name P42) (type passive))
(pin (num B43) (name P43) (type passive))
(pin (num B44) (name P44) (type passive))
(pin (num B45) (name P45) (type passive))
(pin (num B46) (name P46) (type passive))))
(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_01X03)
(description "Connector 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (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_02X02)
(description "Connector 02x02")
(footprints
(fp Pin_Header_Straight_2X02)
(fp Pin_Header_Angled_2X02)
(fp Socket_Strip_Straight_2X02)
(fp Socket_Strip_Angled_2X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X02))
(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))))
(libpart (lib device) (part CP1_Small)
(description "Polarised capacitor")
(footprints
(fp CP*)
(fp Elko*)
(fp TantalC*)
(fp C*elec)
(fp c_elec*)
(fp SMD*_Pol))
(fields
(field (name Reference) C)
(field (name Value) CP1_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp Diode_*)
(fp D-Pak_TO252AA)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib w_relay) (part JW2SN-DC5V)
(description "DPDT Relay 5V")
(docs doc/panasonic_jw_relay.pdf)
(footprints
(fp relay*))
(fields
(field (name Reference) RLY)
(field (name Value) JW2SN-DC5V))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))
(pin (num 7) (name ~) (type passive))
(pin (num 8) (name ~) (type passive))))
(libpart (lib device) (part Led_Small)
(description Led)
(footprints
(fp CP*)
(fp SM*))
(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 Q_NJFET_SGD)
(description "Transistor N-JFET (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NJFET_SGD))
(pins
(pin (num 1) (name S) (type passive))
(pin (num 2) (name G) (type input))
(pin (num 3) (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 SW_PUSH)
(description Button)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib w_relay) (part V7805-2000)
(aliases
(alias LM7805)
(alias LM7812)
(alias 78L05))
(description "Non-Isolated Switching Regulator +5V")
(docs doc/v78xx-2000.pdf)
(fields
(field (name Reference) U)
(field (name Value) V7805-2000))
(pins
(pin (num GND) (name GND) (type input))
(pin (num VI) (name VI) (type input))
(pin (num VO) (name VO) (type power_out)))))
(libraries
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical memory)
(uri /usr/share/kicad/library/memory.lib))
(library (logical opto)
(uri /usr/share/kicad/library/opto.lib))
(library (logical beagleboard)
(uri /home/shawn/src/BBBdc/lib/beagleboard.lib))
(library (logical w_relay)
(uri /home/shawn/src/BBBdc/lib/w_relay/w_relay.lib)))
(nets
(net (code 1) (name +12V)
(node (ref R10) (pin 1))
(node (ref C2) (pin 1))
(node (ref U2) (pin VI))
(node (ref R21) (pin 1))
(node (ref P5) (pin 2))
(node (ref R20) (pin 1))
(node (ref P8) (pin 2))
(node (ref P2) (pin 2))
(node (ref R6) (pin 1))
(node (ref P3) (pin 2))
(node (ref R13) (pin 1)))
(net (code 2) (name "Net-(Q2-Pad2)")
(node (ref Q2) (pin 2))
(node (ref R12) (pin 1))
(node (ref R11) (pin 1)))
(net (code 3) (name GND)
(node (ref D9) (pin 2))
(node (ref P7) (pin 3))
(node (ref U1) (pin 4))
(node (ref R22) (pin 2))
(node (ref P1) (pin B43))
(node (ref RLY1) (pin 5))
(node (ref RLY2) (pin 5))
(node (ref Q4) (pin 1))
(node (ref Q3) (pin 1))
(node (ref D2) (pin 1))
(node (ref P1) (pin A1))
(node (ref P2) (pin 1))
(node (ref P1) (pin A2))
(node (ref D1) (pin 1))
(node (ref P1) (pin B46))
(node (ref C1) (pin 2))
(node (ref P1) (pin B1))
(node (ref P1) (pin B44))
(node (ref R23) (pin 2))
(node (ref P1) (pin B45))
(node (ref P1) (pin B2))
(node (ref U2) (pin GND))
(node (ref Q1) (pin 1))
(node (ref Q2) (pin 1))
(node (ref P4) (pin 1))
(node (ref P4) (pin 3))
(node (ref P6) (pin 1))
(node (ref C3) (pin 2))
(node (ref R12) (pin 2))
(node (ref C2) (pin 2))
(node (ref R9) (pin 2))
(node (ref SW2) (pin 2))
(node (ref R18) (pin 2))
(node (ref SW1) (pin 2))
(node (ref R19) (pin 2)))
(net (code 4) (name /GPIO_45)
(node (ref P1) (pin A11))
(node (ref R11) (pin 2)))
(net (code 5) (name "Net-(D4-Pad1)")
(node (ref P5) (pin 1))
(node (ref Q2) (pin 3))
(node (ref D4) (pin 1)))
(net (code 6) (name "Net-(D4-Pad2)")
(node (ref R13) (pin 2))
(node (ref D4) (pin 2)))
(net (code 7) (name "Net-(D3-Pad1)")
(node (ref P3) (pin 1))
(node (ref D3) (pin 1))
(node (ref Q1) (pin 3)))
(net (code 8) (name "Net-(Q1-Pad2)")
(node (ref R8) (pin 1))
(node (ref R9) (pin 1))
(node (ref Q1) (pin 2)))
(net (code 9) (name /GPIO_69)
(node (ref P1) (pin A9))
(node (ref R8) (pin 2)))
(net (code 10) (name "Net-(D3-Pad2)")
(node (ref D3) (pin 2))
(node (ref R10) (pin 2)))
(net (code 11) (name /I2C2_SDA)
(node (ref R5) (pin 2))
(node (ref U1) (pin 5))
(node (ref P1) (pin B20))
(node (ref P6) (pin 4)))
(net (code 12) (name "Net-(P6-Pad2)")
(node (ref P6) (pin 2)))
(net (code 13) (name +3V3)
(node (ref U4) (pin 5))
(node (ref U1) (pin 8))
(node (ref R3) (pin 1))
(node (ref R2) (pin 1))
(node (ref R1) (pin 1))
(node (ref R4) (pin 1))
(node (ref R5) (pin 1))
(node (ref U3) (pin 5))
(node (ref P1) (pin B4))
(node (ref P1) (pin B3))
(node (ref C1) (pin 1))
(node (ref P6) (pin 5)))
(net (code 14) (name /I2C2_SCL)
(node (ref R4) (pin 2))
(node (ref P6) (pin 3))
(node (ref U1) (pin 6))
(node (ref P1) (pin B19)))
(net (code 15) (name /A0)
(node (ref U1) (pin 1))
(node (ref R3) (pin 2))
(node (ref P4) (pin 2)))
(net (code 16) (name /SYS_RESETn)
(node (ref SW2) (pin 1))
(node (ref P1) (pin B10)))
(net (code 17) (name /PWR_BUT)
(node (ref SW1) (pin 1))
(node (ref P1) (pin B9)))
(net (code 18) (name /LCD_DATA15)
(node (ref P1) (pin A32)))
(net (code 19) (name /MMC1_DAT7)
(node (ref P1) (pin A4)))
(net (code 20) (name /MMC1_DAT3)
(node (ref P1) (pin A6)))
(net (code 21) (name /GPIO_67)
(node (ref P1) (pin A8)))
(net (code 22) (name /GPIO_68)
(node (ref P1) (pin A10)))
(net (code 23) (name /GPIO_44)
(node (ref P1) (pin A12)))
(net (code 24) (name /GPIO_26)
(node (ref P1) (pin A14)))
(net (code 25) (name /MMC1_CMD)
(node (ref P1) (pin A20)))
(net (code 26) (name /MMC1_DAT5)
(node (ref P1) (pin A22)))
(net (code 27) (name /MMC1_DAT1)
(node (ref P1) (pin A24)))
(net (code 28) (name /GPIO_61)
(node (ref P1) (pin A26)))
(net (code 29) (name /LCD_PCLK)
(node (ref P1) (pin A28)))
(net (code 30) (name /LCD_AC_BIAS)
(node (ref P1) (pin A30)))
(net (code 31) (name /GPIO_66)
(node (ref P1) (pin A7)))
(net (code 32) (name /LCD_DATA11)
(node (ref P1) (pin A34)))
(net (code 33) (name /LCD_DATA10)
(node (ref P1) (pin A36)))
(net (code 34) (name /LCD_DATA9)
(node (ref P1) (pin A38)))
(net (code 35) (name /LCD_DATA7)
(node (ref P1) (pin A40)))
(net (code 36) (name /LCD_DATA5)
(node (ref P1) (pin A42)))
(net (code 37) (name /LCD_DATA3)
(node (ref P1) (pin A44)))
(net (code 38) (name /LCD_DATA1)
(node (ref P1) (pin A46)))
(net (code 39) (name /LCD_DATA0)
(node (ref P1) (pin A45)))
(net (code 40) (name /LCD_DATA2)
(node (ref P1) (pin A43)))
(net (code 41) (name /LCD_DATA4)
(node (ref P1) (pin A41)))
(net (code 42) (name /LCD_DATA6)
(node (ref P1) (pin A39)))
(net (code 43) (name /LCD_DATA8)
(node (ref P1) (pin A37)))
(net (code 44) (name /LCD_DATA12)
(node (ref P1) (pin A35)))
(net (code 45) (name /LCD_DATA13)
(node (ref P1) (pin A33)))
(net (code 46) (name /LCD_DATA14)
(node (ref P1) (pin A31)))
(net (code 47) (name +5V)
(node (ref R7) (pin 1))
(node (ref D7) (pin 1))
(node (ref R14) (pin 1))
(node (ref D8) (pin 1))
(node (ref R15) (pin 1))
(node (ref C3) (pin 1))
(node (ref P1) (pin B5))
(node (ref U2) (pin VO))
(node (ref RLY2) (pin 1))
(node (ref RLY1) (pin 1))
(node (ref P1) (pin B6)))
(net (code 48) (name "Net-(D2-Pad2)")
(node (ref D2) (pin 2))
(node (ref R7) (pin 2)))
(net (code 49) (name /SPI1_SCLK)
(node (ref P1) (pin B31)))
(net (code 50) (name /SPI1_D0)
(node (ref P1) (pin B29)))
(net (code 51) (name /GPIO_115)
(node (ref P1) (pin B27)))
(net (code 52) (name /GPIO_117)
(node (ref P1) (pin B25)))
(net (code 53) (name /GPIO_49)
(node (ref P1) (pin B23)))
(net (code 54) (name /SPIO_DO)
(node (ref P1) (pin B21)))
(net (code 55) (name /SPIO_CSO)
(node (ref P1) (pin B17)))
(net (code 56) (name /GPIO_48)
(node (ref P1) (pin B15)))
(net (code 57) (name /UART4_TXD)
(node (ref P1) (pin B13)))
(net (code 58) (name /UART4_RXD)
(node (ref P1) (pin B11)))
(net (code 59) (name /AIN4)
(node (ref P1) (pin B33)))
(net (code 60) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref R6) (pin 2)))
(net (code 61) (name /LOCK_RELAYS/R2_READ)
(node (ref U4) (pin 4))
(node (ref R23) (pin 1))
(node (ref P1) (pin A18)))
(net (code 62) (name /LOCK_RELAYS/R1_READ)
(node (ref U3) (pin 4))
(node (ref P1) (pin A16))
(node (ref R22) (pin 1)))
(net (code 63) (name /LOCK_RELAYS/R2_ENGAGE)
(node (ref P1) (pin A17))
(node (ref R17) (pin 2)))
(net (code 64) (name /VADC)
(node (ref P1) (pin B32)))
(net (code 65) (name /LCD_HSYNC)
(node (ref P1) (pin A29)))
(net (code 66) (name /LCD_VSYNC)
(node (ref P1) (pin A27)))
(net (code 67) (name /MMC1_DAT0)
(node (ref P1) (pin A25)))
(net (code 68) (name /MMC1_DAT4)
(node (ref P1) (pin A23)))
(net (code 69) (name /MMC1_CLK)
(node (ref P1) (pin A21)))
(net (code 70) (name /EHRPWM2A)
(node (ref P1) (pin A19)))
(net (code 71) (name /EHRPWM2B)
(node (ref P1) (pin A13)))
(net (code 72) (name /MMC1_DAT2)
(node (ref P1) (pin A5)))
(net (code 73) (name /MMC1_DAT6)
(node (ref P1) (pin A3)))
(net (code 74) (name /ECAPWMO)
(node (ref P1) (pin B42)))
(net (code 75) (name /AIN1)
(node (ref P1) (pin B40)))
(net (code 76) (name /AIN3)
(node (ref P1) (pin B38)))
(net (code 77) (name /AIN5)
(node (ref P1) (pin B36)))
(net (code 78) (name /AGND)
(node (ref P1) (pin B34)))
(net (code 79) (name /GPIO_112)
(node (ref P1) (pin B30)))
(net (code 80) (name /SPI1_CS0)
(node (ref P1) (pin B28)))
(net (code 81) (name /UART1_RXD)
(node (ref P1) (pin B26)))
(net (code 82) (name /UART1_TXD)
(node (ref P1) (pin B24)))
(net (code 83) (name /SPIO_SLCK)
(node (ref P1) (pin B22)))
(net (code 84) (name /SPIO_D1)
(node (ref P1) (pin B18)))
(net (code 85) (name /EHRPWM1B)
(node (ref P1) (pin B16)))
(net (code 86) (name /EHRPWM1A)
(node (ref P1) (pin B14)))
(net (code 87) (name /GPIO_60)
(node (ref P1) (pin B12)))
(net (code 88) (name /GPIO_20)
(node (ref P1) (pin B41)))
(net (code 89) (name /AIN0)
(node (ref P1) (pin B39)))
(net (code 90) (name /AIN2)
(node (ref P1) (pin B37)))
(net (code 91) (name /AIN6)
(node (ref P1) (pin B35)))
(net (code 92) (name /A2)
(node (ref R1) (pin 2))
(node (ref U1) (pin 3)))
(net (code 93) (name "Net-(U1-Pad7)")
(node (ref U1) (pin 7)))
(net (code 94) (name /A1)
(node (ref R2) (pin 2))
(node (ref U1) (pin 2))
(node (ref P4) (pin 4)))
(net (code 95) (name /SYS_5V)
(node (ref P1) (pin B8))
(node (ref P1) (pin B7)))
(net (code 96) (name /LOCK_RELAYS/R1_ENGAGE)
(node (ref R16) (pin 2))
(node (ref P1) (pin A15)))
(net (code 97) (name "Net-(R21-Pad2)")
(node (ref R21) (pin 2))
(node (ref U4) (pin 1)))
(net (code 98) (name "Net-(R20-Pad2)")
(node (ref R20) (pin 2))
(node (ref U3) (pin 1)))
(net (code 99) (name "Net-(RLY1-Pad6)")
(node (ref U3) (pin 2))
(node (ref RLY1) (pin 6)))
(net (code 100) (name "Net-(U3-Pad6)")
(node (ref U3) (pin 6)))
(net (code 101) (name "Net-(P7-Pad2)")
(node (ref P9) (pin 2))
(node (ref P7) (pin 2)))