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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
|
(export (version D)
(design
(source /home/easwaran/allProjects/kicad/openPlc_Rpi/openPlc_Rpi.sch)
(date "Thu 25 Apr 2019 02:35:34 PM IST")
(tool "Eeschema 5.1.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "OpenPLC V2")
(company FOSSEE)
(rev 0.1)
(date)
(source openPlc_Rpi.sch)
(comment (number 1) (value "by Vishnu Easwaran E"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C1)
(value 100nf)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEB7E2A))
(comp (ref D1)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBD1E9))
(comp (ref D2)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBD285))
(comp (ref D3)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBD2CF))
(comp (ref D4)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEBD325))
(comp (ref R14)
(value 5k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED2707))
(comp (ref R10)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED27BB))
(comp (ref R15)
(value 5k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED77CD))
(comp (ref R11)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED77D4))
(comp (ref R16)
(value 5k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED9437))
(comp (ref R12)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BED943E))
(comp (ref R13)
(value 5k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BEDB20B))
(comp (ref R9)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BEDB212))
(comp (ref C4)
(value 100n)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5BEE6BD5))
(comp (ref R1)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF16006))
(comp (ref R5)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF161B6))
(comp (ref R2)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF2485F))
(comp (ref R6)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF24866))
(comp (ref R3)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF28922))
(comp (ref R7)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF28929))
(comp (ref R4)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF2CEA3))
(comp (ref R17)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF4EFA8))
(comp (ref R18)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF59792))
(comp (ref R19)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF5EDB1))
(comp (ref R20)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF64607))
(comp (ref J3)
(value Screw_Terminal_01x04)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-4pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x04) (description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF91875))
(comp (ref J4)
(value Screw_Terminal_01x02)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-2pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C04CC85))
(comp (ref C2)
(value 150uf)
(footprint Capacitors_SMD:CP_Elec_8x10)
(datasheet https://www.mouser.in/datasheet/2/293/e-wt-30307.pdf)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C06F020))
(comp (ref L1)
(value 680uh)
(footprint Inductors_SMD:L_12x12mm_h6mm)
(datasheet ~)
(libsource (lib Device) (part L_Core_Ferrite) (description "Inductor with ferrite core"))
(sheetpath (names /) (tstamps /))
(tstamp 5C092438))
(comp (ref C3)
(value 1000uf)
(footprint Capacitors_SMD:CP_Elec_10x10)
(datasheet https://www.mouser.in/datasheet/2/315/ABA0000C1145-947633.pdf)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C0C4B3E))
(comp (ref D5)
(value D_Zener)
(footprint Diodes_SMD:D_SMA_Handsoldering)
(datasheet https://www.mouser.in/datasheet/2/308/NTS245SF-D-532018.pdf)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C11003D))
(comp (ref C6)
(value C)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C248F0C))
(comp (ref C5)
(value C)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C248FCA))
(comp (ref U7)
(value AMS1117-3.3)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(datasheet http://www.advanced-monolithic.com/pdf/ds1117.pdf)
(libsource (lib Regulator_Linear) (part AMS1117-3.3) (description "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF3AC36))
(comp (ref U8)
(value ULN2803A)
(footprint Housings_SOIC:SOIC-18W_7.5x11.6mm_Pitch1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/uln2803a.pdf)
(libsource (lib Transistor_Array) (part ULN2803A) (description "Darlington Transistor Arrays, SOIC18/DIP18"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF4D5DF))
(comp (ref U6)
(value ADS1018IDGS)
(footprint Housings_SSOP:TSSOP-10_3x3mm_Pitch0.5mm)
(datasheet http://www.ti.com/lit/ds/symlink/ads1018.pdf)
(libsource (lib Analog_ADC) (part ADS1018IDGS) (description " Ultrasmall, Low-Power, SPI-Compatible, 12-Bit, Analog-to-Digital Converter With Internal Reference and Temperature Sensor, VSSOP-10"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF4E6A0))
(comp (ref J5)
(value Screw_Terminal_01x12)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-12pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x12) (description "Generic screw terminal, single row, 01x12, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C23AF1C))
(comp (ref J2)
(value Screw_Terminal_01x05)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-5pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x05) (description "Generic screw terminal, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2BFD43))
(comp (ref D7)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78E40D))
(comp (ref D8)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78E414))
(comp (ref D9)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78E41B))
(comp (ref D10)
(value D_Zener)
(footprint Diodes_SMD:D_1206)
(datasheet ~)
(libsource (lib Device) (part D_Zener) (description "Zener diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C78E422))
(comp (ref U3)
(value LTV-847)
(footprint Housings_DIP:DIP-16_W7.62mm_SMDSocket_SmallPads)
(datasheet http://optoelectronics.liteon.com/upload/download/DS-70-96-0016/LTV-8X7%20series.PDF)
(libsource (lib Isolator) (part LTV-847) (description "Quad DC Optocoupler, Vce 35V, CTR 50%, DIP-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA82F87))
(comp (ref U2)
(value LTV-847)
(footprint Housings_DIP:DIP-16_W7.62mm_SMDSocket_SmallPads)
(datasheet http://optoelectronics.liteon.com/upload/download/DS-70-96-0016/LTV-8X7%20series.PDF)
(libsource (lib Isolator) (part LTV-847) (description "Quad DC Optocoupler, Vce 35V, CTR 50%, DIP-16"))
(sheetpath (names /) (tstamps /))
(tstamp 5CACFFEF))
(comp (ref J6)
(value Screw_Terminal_01x05)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-5pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x05) (description "Generic screw terminal, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C83CB91))
(comp (ref R25)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C879247))
(comp (ref R21)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8792FF))
(comp (ref R26)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5BE3))
(comp (ref R27)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5C93))
(comp (ref R22)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5E3A))
(comp (ref R23)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5EEA))
(comp (ref R24)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5F98))
(comp (ref R29)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB16C42))
(comp (ref R30)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB50E51))
(comp (ref R31)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB6EB1B))
(comp (ref R32)
(value R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5CB8D19B))
(comp (ref J7)
(value Screw_Terminal_01x12)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-12pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x12) (description "Generic screw terminal, single row, 01x12, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBB002E))
(comp (ref R33)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C82D01B))
(comp (ref D11)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8D4269))
(comp (ref R34)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8F5754))
(comp (ref D12)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C8F575B))
(comp (ref R35)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C93767D))
(comp (ref D13)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C937684))
(comp (ref D14)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C958D01))
(comp (ref D15)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C99C5DB))
(comp (ref D16)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5C9E0802))
(comp (ref D17)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA0201E))
(comp (ref R40)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA23819))
(comp (ref D18)
(value LED)
(footprint LEDs:LED_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA23820))
(comp (ref D19)
(value S1BB)
(footprint Diodes_SMD:D_SMB_Handsoldering)
(datasheet ~)
(libsource (lib pspice) (part DIODE) (description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints"))
(sheetpath (names /) (tstamps /))
(tstamp 5C91E3F9))
(comp (ref R8)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5BF2CEAA))
(comp (ref R28)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C8B5D3F))
(comp (ref D6)
(value D_Schottky_power)
(footprint Diodes_SMD:D_SMC_Handsoldering)
(datasheet https://www.mouser.in/datasheet/2/115/ds30923-81396.pdf)
(libsource (lib dinkan) (part D_Schottky_power) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5CAF2109))
(comp (ref U1)
(value power_LM2576)
(footprint TO_SOT_Packages_SMD:TO-263-5_TabPin3)
(datasheet http://www.ti.com/lit/ds/symlink/lm2576.pdf)
(libsource (lib dinkan) (part power_LM2576) (description "12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator TO-263"))
(sheetpath (names /) (tstamps /))
(tstamp 5CBD2290))
(comp (ref C7)
(value Cap_tantalum_1206_3218)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(datasheet https://datasheet.octopart.com/T491A334K035AT-Kemet-datasheet-5314837.pdf)
(libsource (lib dinkan) (part Cap_tantalum_1206_3218) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC687E7))
(comp (ref U4)
(value power_L7812_smd)
(footprint TO_SOT_Packages_SMD:TO-263-2)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
(libsource (lib dinkan) (part power_L7812_smd) (description "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252"))
(sheetpath (names /) (tstamps /))
(tstamp 5CC1336E))
(comp (ref R36)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C958CFA))
(comp (ref R37)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C99C5D4))
(comp (ref R38)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5C9E07FB))
(comp (ref R39)
(value R_US)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5CA02017))
(comp (ref K1)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CADF52D))
(comp (ref K2)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB2272C))
(comp (ref K3)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB2372E))
(comp (ref K4)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB241D5))
(comp (ref K5)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB25CFF))
(comp (ref K6)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB268F8))
(comp (ref K7)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB289D7))
(comp (ref K8)
(value G5LE-1)
(footprint Relays_THT:Relay_SPDT_OMRON-G5LE-1)
(datasheet http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(libsource (lib Relay) (part G5LE-1) (description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A"))
(sheetpath (names /) (tstamps /))
(tstamp 5CB29AFA))
(comp (ref J1)
(value Raspberry_Pi_2_3)
(footprint Socket_Strips:Socket_Strip_Straight_2x20_Pitch2.54mm)
(datasheet https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/rpi_SCH_3bplus_1p0_reduced.pdf)
(libsource (lib Connector) (part Raspberry_Pi_2_3) (description "expansion header for Raspberry Pi 2 & 3"))
(sheetpath (names /) (tstamps /))
(tstamp 5BF3B5F0))
(comp (ref J8)
(value Screw_Terminal_01x02)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-2pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDC7D9))
(comp (ref C8)
(value .1uf)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5CCFDF0C))
(comp (ref Q1)
(value BSS123)
(footprint TO_SOT_Packages_SMD:SOT-23)
(datasheet http://www.diodes.com/assets/Datasheets/ds30366.pdf)
(libsource (lib Transistor_FET) (part BSS123) (description "0.17A Id, 100V Vds, N-Channel MOSFET, SOT-23"))
(sheetpath (names /) (tstamps /))
(tstamp 5CDC1E78))
(comp (ref U5)
(value MAX481E)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(datasheet https://datasheets.maximintegrated.com/en/ds/MAX1487E-MAX491E.pdf)
(libsource (lib Interface_UART) (part MAX481E) (description "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, with low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5CD1AABB))
(comp (ref C9)
(value C)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5D13D006))
(comp (ref R43)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D316B9E))
(comp (ref R44)
(value 120R)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D317C2B))
(comp (ref R45)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D31AE21))
(comp (ref R42)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D36E330))
(comp (ref R41)
(value 10k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5D36E9B7))
(comp (ref J9)
(value Screw_Terminal_01x02)
(footprint TerminalBlocks_Phoenix:TerminalBlock_Phoenix_MKDS1.5-2pol)
(datasheet ~)
(libsource (lib Connector) (part Screw_Terminal_01x02) (description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D3F3EB3))
(comp (ref J10)
(value Conn_01x04)
(footprint Connectors_JST:JST_XH_B04B-XH-A_04x2.50mm_Straight)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D098491))
(comp (ref J11)
(value Conn_01x04)
(footprint Connectors_JST:JST_XH_B04B-XH-A_04x2.50mm_Straight)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D153C13))
(comp (ref J12)
(value Conn_01x04)
(footprint Connectors_JST:JST_XH_B04B-XH-A_04x2.50mm_Straight)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D181B57))
(comp (ref J13)
(value Conn_01x04)
(footprint Connectors_JST:JST_XH_B04B-XH-A_04x2.50mm_Straight)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D181B79)))
(libparts
(libpart (lib Analog_ADC) (part ADS1018IDGS)
(aliases
(alias ADS1118IDGS))
(description " Ultrasmall, Low-Power, SPI-Compatible, 12-Bit, Analog-to-Digital Converter With Internal Reference and Temperature Sensor, VSSOP-10")
(docs http://www.ti.com/lit/ds/symlink/ads1018.pdf)
(footprints
(fp TSSOP*3x3mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) ADS1018IDGS))
(pins
(pin (num 1) (name SCLK) (type input))
(pin (num 2) (name ~CS) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name AIN0) (type input))
(pin (num 5) (name AIN1) (type input))
(pin (num 6) (name AIN2) (type input))
(pin (num 7) (name AIN3) (type input))
(pin (num 8) (name VDD) (type power_in))
(pin (num 9) (name DOUT/~DRDY) (type output))
(pin (num 10) (name DIN) (type input))))
(libpart (lib Connector) (part Raspberry_Pi_2_3)
(description "expansion header for Raspberry Pi 2 & 3")
(docs https://www.raspberrypi.org/documentation/hardware/raspberrypi/schematics/rpi_SCH_3bplus_1p0_reduced.pdf)
(footprints
(fp PinHeader*2x20*P2.54mm*Vertical*)
(fp PinSocket*2x20*P2.54mm*Vertical*))
(fields
(field (name Reference) J)
(field (name Value) Raspberry_Pi_2_3))
(pins
(pin (num 1) (name 3V3) (type power_in))
(pin (num 2) (name 5V) (type power_in))
(pin (num 3) (name SDA/GPIO2) (type BiDi))
(pin (num 4) (name 5V) (type power_in))
(pin (num 5) (name SCL/GPIO3) (type BiDi))
(pin (num 6) (name GND) (type power_in))
(pin (num 7) (name GCLK0/GPIO4) (type BiDi))
(pin (num 8) (name GPIO14/TXD) (type BiDi))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name GPIO15/RXD) (type BiDi))
(pin (num 11) (name GPIO17) (type BiDi))
(pin (num 12) (name GPIO18/PWM0) (type BiDi))
(pin (num 13) (name GPIO27) (type BiDi))
(pin (num 14) (name GND) (type power_in))
(pin (num 15) (name GPIO22) (type BiDi))
(pin (num 16) (name GPIO23) (type BiDi))
(pin (num 17) (name 3V3) (type power_in))
(pin (num 18) (name GPIO24) (type BiDi))
(pin (num 19) (name MOSI0/GPIO10) (type BiDi))
(pin (num 20) (name GND) (type power_in))
(pin (num 21) (name MISO0/GPIO9) (type BiDi))
(pin (num 22) (name GPIO25) (type BiDi))
(pin (num 23) (name SCLK0/GPIO11) (type BiDi))
(pin (num 24) (name ~CE0~/GPIO8) (type BiDi))
(pin (num 25) (name GND) (type power_in))
(pin (num 26) (name ~CE1~/GPIO7) (type BiDi))
(pin (num 27) (name ID_SD/GPIO0) (type BiDi))
(pin (num 28) (name ID_SC/GPIO1) (type BiDi))
(pin (num 29) (name GCLK1/GPIO5) (type BiDi))
(pin (num 30) (name GND) (type power_in))
(pin (num 31) (name GCLK2/GPIO6) (type BiDi))
(pin (num 32) (name PWM0/GPIO12) (type BiDi))
(pin (num 33) (name PWM1/GPIO13) (type BiDi))
(pin (num 34) (name GND) (type power_in))
(pin (num 35) (name GPIO19/MISO1) (type BiDi))
(pin (num 36) (name GPIO16) (type BiDi))
(pin (num 37) (name GPIO26) (type BiDi))
(pin (num 38) (name GPIO20/MOSI1) (type BiDi))
(pin (num 39) (name GND) (type power_in))
(pin (num 40) (name GPIO21/SCLK1) (type BiDi))))
(libpart (lib Connector) (part Screw_Terminal_01x02)
(description "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x02))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))))
(libpart (lib Connector) (part Screw_Terminal_01x04)
(description "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part Screw_Terminal_01x05)
(description "Generic screw terminal, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x05))
(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))))
(libpart (lib Connector) (part Screw_Terminal_01x12)
(description "Generic screw terminal, single row, 01x12, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp TerminalBlock*:*))
(fields
(field (name Reference) J)
(field (name Value) Screw_Terminal_01x12))
(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_01x04)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_Zener)
(description "Zener diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Zener))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(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 Device) (part L_Core_Ferrite)
(description "Inductor with ferrite core")
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L_Core_Ferrite))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(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_US)
(description "Resistor, US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Interface_UART) (part MAX481E)
(aliases
(alias MAX483E)
(alias MAX485E)
(alias MAX487E)
(alias MAX1487E)
(alias MAX3485)
(alias MAX3483)
(alias MAX3486))
(description "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, with low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8")
(docs https://datasheets.maximintegrated.com/en/ds/MAX1487E-MAX491E.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) MAX481E))
(pins
(pin (num 1) (name RO) (type output))
(pin (num 2) (name ~RE) (type input))
(pin (num 3) (name DE) (type input))
(pin (num 4) (name DI) (type input))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name A) (type BiDi))
(pin (num 7) (name B) (type BiDi))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib Isolator) (part PC847)
(aliases
(alias LTV-847))
(description "DC Quad Optocoupler, Vce 35V, CTR 50-300%, DIP16")
(docs http://www.soselectronic.cz/a_info/resource/d/pc817.pdf)
(footprints
(fp DIP*W7.62mm*))
(fields
(field (name Reference) U)
(field (name Value) PC847)
(field (name Footprint) Package_DIP:DIP-16_W7.62mm))
(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))
(pin (num 9) (name ~) (type passive))
(pin (num 10) (name ~) (type passive))
(pin (num 11) (name ~) (type passive))
(pin (num 12) (name ~) (type passive))
(pin (num 13) (name ~) (type passive))
(pin (num 14) (name ~) (type passive))
(pin (num 15) (name ~) (type passive))
(pin (num 16) (name ~) (type passive))))
(libpart (lib Regulator_Linear) (part AP1117-15)
(aliases
(alias AP1117-18)
(alias AP1117-25)
(alias AP1117-33)
(alias AP1117-50)
(alias LD1117S33TR_SOT223)
(alias LD1117S12TR_SOT223)
(alias LD1117S18TR_SOT223)
(alias LD1117S25TR_SOT223)
(alias LD1117S50TR_SOT223)
(alias NCP1117-12_SOT223)
(alias NCP1117-1.5_SOT223)
(alias NCP1117-1.8_SOT223)
(alias NCP1117-2.0_SOT223)
(alias NCP1117-2.5_SOT223)
(alias NCP1117-2.85_SOT223)
(alias NCP1117-3.3_SOT223)
(alias NCP1117-5.0_SOT223)
(alias AMS1117-1.5)
(alias AMS1117-1.8)
(alias AMS1117-2.5)
(alias AMS1117-2.85)
(alias AMS1117-3.3)
(alias AMS1117-5.0))
(description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
(docs http://www.diodes.com/datasheets/AP1117.pdf)
(footprints
(fp SOT?223*TabPin2*))
(fields
(field (name Reference) U)
(field (name Value) AP1117-15)
(field (name Footprint) Package_TO_SOT_SMD:SOT-223-3_TabPin2))
(pins
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name VO) (type power_out))
(pin (num 3) (name VI) (type power_in))))
(libpart (lib Relay) (part G5LE-1)
(description "Omron G5LE relay, Miniature Single Pole, SPDT, 10A")
(docs http://www.omron.com/ecb/products/pdf/en-g5le.pdf)
(footprints
(fp Relay*SPDT*Omron*G5LE?1*))
(fields
(field (name Reference) K)
(field (name Value) G5LE-1)
(field (name Footprint) Relay_THT:Relay_SPDT_Omron-G5LE-1))
(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))))
(libpart (lib Transistor_Array) (part ULN2803A)
(aliases
(alias ULN2802A)
(alias ULN2801A)
(alias ULN2804A)
(alias ULN2805A))
(description "Darlington Transistor Arrays, SOIC18/DIP18")
(docs http://www.ti.com/lit/ds/symlink/uln2803a.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*7.5x11.6mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) ULN2803A))
(pins
(pin (num 1) (name I1) (type input))
(pin (num 2) (name I2) (type input))
(pin (num 3) (name I3) (type input))
(pin (num 4) (name I4) (type input))
(pin (num 5) (name I5) (type input))
(pin (num 6) (name I6) (type input))
(pin (num 7) (name I7) (type input))
(pin (num 8) (name I8) (type input))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name COM) (type passive))
(pin (num 11) (name O8) (type openCol))
(pin (num 12) (name O7) (type openCol))
(pin (num 13) (name O6) (type openCol))
(pin (num 14) (name O5) (type openCol))
(pin (num 15) (name O4) (type openCol))
(pin (num 16) (name O3) (type openCol))
(pin (num 17) (name O2) (type openCol))
(pin (num 18) (name O1) (type openCol))))
(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 dinkan) (part Cap_tantalum_1206_3218)
(description "Polarized capacitor")
(docs https://datasheet.octopart.com/T491A334K035AT-Kemet-datasheet-5314837.pdf)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) Cap_tantalum_1206_3218)
(field (name Footprint) Capacitors_Tantalum_SMD:CP_Tantalum_Case-A_EIA-3216-18_Hand))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib dinkan) (part D_Schottky_power)
(description "Schottky diode")
(docs https://www.mouser.in/datasheet/2/115/ds30923-81396.pdf)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky_power)
(field (name Footprint) Diodes_SMD:D_SMC_Handsoldering))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib dinkan) (part power_L7812_smd)
(description "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252")
(docs http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
(footprints
(fp TO?252*)
(fp TO?263*)
(fp TO?220*))
(fields
(field (name Reference) U)
(field (name Value) power_L7812_smd)
(field (name Footprint) TO_SOT_Packages_SMD:TO-263-2))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name OUT) (type power_out))))
(libpart (lib dinkan) (part power_LM2576)
(description "12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator TO-263")
(docs http://www.ti.com/lit/ds/symlink/lm2576.pdf)
(footprints
(fp TO?263*))
(fields
(field (name Reference) U)
(field (name Value) power_LM2576)
(field (name Footprint) Package_TO_SOT_SMD:TO-263-5_TabPin3))
(pins
(pin (num 1) (name VIN) (type power_in))
(pin (num 2) (name OUT) (type output))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name FB) (type input))
(pin (num 5) (name ~ON~/OFF) (type input))))
(libpart (lib pspice) (part DIODE)
(description "Diode symbol for simulation only. Pin order incompatible with official kicad footprints")
(docs ~)
(fields
(field (name Reference) D)
(field (name Value) DIODE))
(pins
(pin (num 1) (name K) (type input))
(pin (num 2) (name A) (type input)))))
(libraries
(library (logical Analog_ADC)
(uri /usr/share/kicad/library/Analog_ADC.lib))
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Interface_UART)
(uri /usr/share/kicad/library/Interface_UART.lib))
(library (logical Isolator)
(uri /usr/share/kicad/library/Isolator.lib))
(library (logical Regulator_Linear)
(uri /usr/share/kicad/library/Regulator_Linear.lib))
(library (logical Relay)
(uri /usr/share/kicad/library/Relay.lib))
(library (logical Transistor_Array)
(uri /usr/share/kicad/library/Transistor_Array.lib))
(library (logical Transistor_FET)
(uri /usr/share/kicad/library/Transistor_FET.lib))
(library (logical dinkan)
(uri /home/easwaran/allProjects/kicad/openPlc_Rpi/MyLibrary/dinkan.lib))
(library (logical pspice)
(uri /usr/share/kicad/library/pspice.lib)))
(nets
(net (code 1) (name "Net-(D15-Pad2)")
(node (ref D15) (pin 2))
(node (ref R37) (pin 2)))
(net (code 2) (name "Net-(D16-Pad2)")
(node (ref R38) (pin 2))
(node (ref D16) (pin 2)))
(net (code 3) (name "Net-(D14-Pad2)")
(node (ref R36) (pin 2))
(node (ref D14) (pin 2)))
(net (code 4) (name "Net-(D13-Pad2)")
(node (ref R35) (pin 2))
(node (ref D13) (pin 2)))
(net (code 5) (name "Net-(D18-Pad2)")
(node (ref R40) (pin 2))
(node (ref D18) (pin 2)))
(net (code 6) (name "Net-(D17-Pad2)")
(node (ref D17) (pin 2))
(node (ref R39) (pin 2)))
(net (code 7) (name "Net-(D11-Pad2)")
(node (ref R33) (pin 2))
(node (ref D11) (pin 2)))
(net (code 8) (name GND)
(node (ref U2) (pin 11))
(node (ref C9) (pin 2))
(node (ref C2) (pin 2))
(node (ref J4) (pin 1))
(node (ref U8) (pin 9))
(node (ref U6) (pin 3))
(node (ref U5) (pin 5))
(node (ref C1) (pin 2))
(node (ref Q1) (pin 2))
(node (ref R45) (pin 1))
(node (ref U2) (pin 9))
(node (ref R13) (pin 2))
(node (ref C4) (pin 1))
(node (ref D6) (pin 2))
(node (ref U4) (pin 2))
(node (ref J1) (pin 39))
(node (ref J1) (pin 25))
(node (ref U7) (pin 1))
(node (ref J1) (pin 20))
(node (ref J1) (pin 9))
(node (ref J1) (pin 14))
(node (ref C8) (pin 2))
(node (ref J1) (pin 30))
(node (ref J1) (pin 6))
(node (ref J1) (pin 34))
(node (ref U1) (pin 3))
(node (ref U1) (pin 5))
(node (ref C6) (pin 2))
(node (ref C5) (pin 2))
(node (ref C7) (pin 2))
(node (ref J10) (pin 4))
(node (ref J13) (pin 4))
(node (ref U3) (pin 11))
(node (ref J11) (pin 4))
(node (ref J12) (pin 4))
(node (ref D5) (pin 2))
(node (ref C3) (pin 2))
(node (ref U3) (pin 9))
(node (ref U2) (pin 13))
(node (ref R14) (pin 2))
(node (ref U3) (pin 15))
(node (ref U2) (pin 15))
(node (ref R16) (pin 2))
(node (ref R15) (pin 2))
(node (ref U3) (pin 13)))
(net (code 9) (name "Net-(D12-Pad2)")
(node (ref R34) (pin 2))
(node (ref D12) (pin 2)))
(net (code 10) (name +5V)
(node (ref R39) (pin 1))
(node (ref J11) (pin 3))
(node (ref L1) (pin 2))
(node (ref R36) (pin 1))
(node (ref R37) (pin 1))
(node (ref R33) (pin 1))
(node (ref R38) (pin 1))
(node (ref D8) (pin 1))
(node (ref K1) (pin 5))
(node (ref C3) (pin 1))
(node (ref J10) (pin 3))
(node (ref D4) (pin 1))
(node (ref D3) (pin 1))
(node (ref J13) (pin 3))
(node (ref J12) (pin 3))
(node (ref R34) (pin 1))
(node (ref C1) (pin 1))
(node (ref D1) (pin 1))
(node (ref D2) (pin 1))
(node (ref U1) (pin 4))
(node (ref K5) (pin 5))
(node (ref C5) (pin 1))
(node (ref D9) (pin 1))
(node (ref D10) (pin 1))
(node (ref U7) (pin 3))
(node (ref K6) (pin 5))
(node (ref K7) (pin 5))
(node (ref J1) (pin 2))
(node (ref K8) (pin 5))
(node (ref U8) (pin 10))
(node (ref J1) (pin 4))
(node (ref K4) (pin 5))
(node (ref K3) (pin 5))
(node (ref D7) (pin 1))
(node (ref R35) (pin 1))
(node (ref R40) (pin 1))
(node (ref K2) (pin 5)))
(net (code 11) (name +3V3)
(node (ref J1) (pin 17))
(node (ref J1) (pin 1))
(node (ref R18) (pin 1))
(node (ref R19) (pin 1))
(node (ref R20) (pin 1))
(node (ref C6) (pin 1))
(node (ref U7) (pin 2))
(node (ref R17) (pin 1))
(node (ref R31) (pin 1))
(node (ref R42) (pin 2))
(node (ref R29) (pin 1))
(node (ref R30) (pin 1))
(node (ref R43) (pin 2))
(node (ref C9) (pin 1))
(node (ref R32) (pin 1))
(node (ref U5) (pin 8)))
(net (code 12) (name "Net-(R23-Pad1)")
(node (ref R27) (pin 2))
(node (ref R23) (pin 1))
(node (ref U3) (pin 5)))
(net (code 13) (name "Net-(R22-Pad1)")
(node (ref R22) (pin 1))
(node (ref U3) (pin 3))
(node (ref R26) (pin 2)))
(net (code 14) (name DI_6)
(node (ref J1) (pin 18))
(node (ref U3) (pin 14))
(node (ref R30) (pin 2)))
(net (code 16) (name DI_5)
(node (ref R31) (pin 2))
(node (ref J1) (pin 22))
(node (ref U3) (pin 12)))
(net (code 17) (name DI_4)
(node (ref J1) (pin 26))
(node (ref R32) (pin 2))
(node (ref U3) (pin 10)))
(net (code 18) (name /19)
(node (ref J7) (pin 4))
(node (ref K7) (pin 3)))
(net (code 19) (name /18)
(node (ref J7) (pin 9))
(node (ref K6) (pin 4)))
(net (code 20) (name /17)
(node (ref J7) (pin 8))
(node (ref K6) (pin 1)))
(net (code 21) (name /16)
(node (ref J7) (pin 7))
(node (ref K6) (pin 3)))
(net (code 22) (name /21)
(node (ref J7) (pin 6))
(node (ref K7) (pin 4)))
(net (code 23) (name /20)
(node (ref K7) (pin 1))
(node (ref J7) (pin 5)))
(net (code 24) (name /24)
(node (ref K8) (pin 4))
(node (ref J7) (pin 3)))
(net (code 25) (name /23)
(node (ref K8) (pin 1))
(node (ref J7) (pin 2)))
(net (code 26) (name /15)
(node (ref J7) (pin 12))
(node (ref K5) (pin 4)))
(net (code 27) (name /14)
(node (ref K5) (pin 1))
(node (ref J7) (pin 11)))
(net (code 28) (name /13)
(node (ref J7) (pin 10))
(node (ref K5) (pin 3)))
(net (code 29) (name /22)
(node (ref J7) (pin 1))
(node (ref K8) (pin 3)))
(net (code 30) (name DI_7)
(node (ref U3) (pin 16))
(node (ref R29) (pin 2))
(node (ref J1) (pin 16)))
(net (code 31) (name /DIGND)
(node (ref R6) (pin 1))
(node (ref U3) (pin 6))
(node (ref R7) (pin 1))
(node (ref R5) (pin 1))
(node (ref U3) (pin 2))
(node (ref U3) (pin 4))
(node (ref R27) (pin 1))
(node (ref U2) (pin 8))
(node (ref J6) (pin 5))
(node (ref R25) (pin 1))
(node (ref U3) (pin 8))
(node (ref U2) (pin 4))
(node (ref U2) (pin 2))
(node (ref U2) (pin 6))
(node (ref R26) (pin 1))
(node (ref R8) (pin 1))
(node (ref R28) (pin 1))
(node (ref J2) (pin 5)))
(net (code 33) (name "Net-(R24-Pad1)")
(node (ref U3) (pin 7))
(node (ref R24) (pin 1))
(node (ref R28) (pin 2)))
(net (code 34) (name +24V)
(node (ref U4) (pin 1))
(node (ref C2) (pin 1))
(node (ref J4) (pin 2))
(node (ref J11) (pin 1))
(node (ref J12) (pin 1))
(node (ref D5) (pin 1))
(node (ref J10) (pin 1))
(node (ref J13) (pin 1))
(node (ref U1) (pin 1))
(node (ref D19) (pin 2))
(node (ref C7) (pin 1)))
(net (code 35) (name "Net-(Q1-Pad1)")
(node (ref R41) (pin 1))
(node (ref Q1) (pin 1)))
(net (code 36) (name /TXD)
(node (ref J1) (pin 8))
(node (ref U5) (pin 4))
(node (ref R41) (pin 2)))
(net (code 37) (name "Net-(Q1-Pad3)")
(node (ref U5) (pin 2))
(node (ref R42) (pin 1))
(node (ref Q1) (pin 3))
(node (ref U5) (pin 3)))
(net (code 38) (name +12V)
(node (ref J12) (pin 2))
(node (ref D19) (pin 1))
(node (ref J13) (pin 2))
(node (ref J11) (pin 2))
(node (ref U4) (pin 3))
(node (ref C8) (pin 1))
(node (ref J10) (pin 2)))
(net (code 39) (name "Net-(D16-Pad1)")
(node (ref U8) (pin 13))
(node (ref D2) (pin 2))
(node (ref K2) (pin 2))
(node (ref D16) (pin 1)))
(net (code 40) (name /5)
(node (ref J5) (pin 8))
(node (ref K2) (pin 1)))
(net (code 41) (name /3)
(node (ref K1) (pin 4))
(node (ref J5) (pin 12)))
(net (code 42) (name /1)
(node (ref K1) (pin 3))
(node (ref J5) (pin 10)))
(net (code 43) (name /2)
(node (ref J5) (pin 11))
(node (ref K1) (pin 1)))
(net (code 44) (name /10)
(node (ref K4) (pin 3))
(node (ref J5) (pin 1)))
(net (code 45) (name "Net-(D6-Pad1)")
(node (ref D6) (pin 1))
(node (ref U1) (pin 2))
(node (ref L1) (pin 1)))
(net (code 46) (name SCL)
(node (ref J8) (pin 1))
(node (ref J1) (pin 5)))
(net (code 47) (name DI_0)
(node (ref U2) (pin 10))
(node (ref J1) (pin 40))
(node (ref R20) (pin 2)))
(net (code 48) (name DI_1)
(node (ref J1) (pin 38))
(node (ref R19) (pin 2))
(node (ref U2) (pin 12)))
(net (code 49) (name DO_0)
(node (ref U8) (pin 8))
(node (ref J1) (pin 37)))
(net (code 50) (name DI_2)
(node (ref J1) (pin 36))
(node (ref R18) (pin 2))
(node (ref U2) (pin 14)))
(net (code 51) (name DO_1)
(node (ref J1) (pin 35))
(node (ref U8) (pin 7)))
(net (code 52) (name DO_2)
(node (ref U8) (pin 6))
(node (ref J1) (pin 33)))
(net (code 53) (name DI_3)
(node (ref J1) (pin 32))
(node (ref U2) (pin 16))
(node (ref R17) (pin 2)))
(net (code 54) (name DO_3)
(node (ref U8) (pin 5))
(node (ref J1) (pin 31)))
(net (code 55) (name SDA)
(node (ref J1) (pin 3))
(node (ref J8) (pin 2)))
(net (code 56) (name DO_4)
(node (ref J1) (pin 29))
(node (ref U8) (pin 4)))
(net (code 57) (name /B)
(node (ref U5) (pin 7))
(node (ref R43) (pin 1))
(node (ref J9) (pin 2))
(node (ref R44) (pin 2)))
(net (code 58) (name /A)
(node (ref J9) (pin 1))
(node (ref R44) (pin 1))
(node (ref U5) (pin 6))
(node (ref R45) (pin 2)))
(net (code 59) (name "Net-(J1-Pad7)")
(node (ref J1) (pin 7)))
(net (code 60) (name "Net-(D10-Pad2)")
(node (ref D14) (pin 1))
(node (ref K8) (pin 2))
(node (ref D10) (pin 2))
(node (ref U8) (pin 15)))
(net (code 61) (name /RXD)
(node (ref U5) (pin 1))
(node (ref J1) (pin 10)))
(net (code 62) (name "Net-(D13-Pad1)")
(node (ref K7) (pin 2))
(node (ref D13) (pin 1))
(node (ref D9) (pin 2))
(node (ref U8) (pin 16)))
(net (code 63) (name "Net-(D12-Pad1)")
(node (ref U8) (pin 17))
(node (ref K6) (pin 2))
(node (ref D12) (pin 1))
(node (ref D8) (pin 2)))
(net (code 64) (name "Net-(J6-Pad4)")
(node (ref R24) (pin 2))
(node (ref J6) (pin 4)))
(net (code 65) (name DO_5)
(node (ref J1) (pin 15))
(node (ref U8) (pin 3)))
(net (code 66) (name DO_6)
(node (ref U8) (pin 2))
(node (ref J1) (pin 13)))
(net (code 67) (name DO_7)
(node (ref U8) (pin 1))
(node (ref J1) (pin 11)))
(net (code 68) (name "Net-(R4-Pad1)")
(node (ref U2) (pin 7))
(node (ref R8) (pin 2))
(node (ref R4) (pin 1)))
(net (code 69) (name "Net-(R1-Pad1)")
(node (ref U2) (pin 1))
(node (ref R1) (pin 1))
(node (ref R5) (pin 2)))
(net (code 70) (name "Net-(R3-Pad1)")
(node (ref U2) (pin 5))
(node (ref R3) (pin 1))
(node (ref R7) (pin 2)))
(net (code 71) (name "Net-(R2-Pad1)")
(node (ref R2) (pin 1))
(node (ref R6) (pin 2))
(node (ref U2) (pin 3)))
(net (code 72) (name "Net-(J3-Pad1)")
(node (ref R9) (pin 2))
(node (ref J3) (pin 1)))
(net (code 73) (name "Net-(J3-Pad4)")
(node (ref J3) (pin 4))
(node (ref R12) (pin 2)))
(net (code 74) (name "Net-(J3-Pad3)")
(node (ref R11) (pin 2))
(node (ref J3) (pin 3)))
(net (code 75) (name "Net-(J3-Pad2)")
(node (ref R10) (pin 2))
(node (ref J3) (pin 2)))
(net (code 76) (name "Net-(D18-Pad1)")
(node (ref U8) (pin 11))
(node (ref K4) (pin 2))
(node (ref D4) (pin 2))
(node (ref D18) (pin 1)))
(net (code 77) (name "Net-(D17-Pad1)")
(node (ref U8) (pin 12))
(node (ref K3) (pin 2))
(node (ref D17) (pin 1))
(node (ref D3) (pin 2)))
(net (code 78) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref U8) (pin 14))
(node (ref K1) (pin 2))
(node (ref D15) (pin 1)))
(net (code 79) (name "Net-(R11-Pad1)")
(node (ref R15) (pin 1))
(node (ref U6) (pin 6))
(node (ref R11) (pin 1)))
(net (code 80) (name "Net-(R10-Pad1)")
(node (ref U6) (pin 5))
(node (ref R10) (pin 1))
(node (ref R14) (pin 1)))
(net (code 81) (name "Net-(R13-Pad1)")
(node (ref U6) (pin 4))
(node (ref R9) (pin 1))
(node (ref R13) (pin 1)))
(net (code 82) (name "Net-(C4-Pad2)")
(node (ref U6) (pin 8))
(node (ref C4) (pin 2)))
(net (code 83) (name "Net-(R12-Pad1)")
(node (ref R16) (pin 1))
(node (ref R12) (pin 1))
(node (ref U6) (pin 7)))
(net (code 84) (name "Net-(J1-Pad12)")
(node (ref J1) (pin 12)))
(net (code 85) (name "Net-(R21-Pad1)")
(node (ref U3) (pin 1))
(node (ref R25) (pin 2))
(node (ref R21) (pin 1)))
(net (code 86) (name "Net-(J6-Pad1)")
(node (ref J6) (pin 1))
(node (ref R21) (pin 2)))
(net (code 87) (name "Net-(J6-Pad3)")
(node (ref R23) (pin 2))
(node (ref J6) (pin 3)))
(net (code 88) (name "Net-(J6-Pad2)")
(node (ref R22) (pin 2))
(node (ref J6) (pin 2)))
(net (code 89) (name "Net-(J2-Pad3)")
(node (ref R3) (pin 2))
(node (ref J2) (pin 3)))
(net (code 90) (name "Net-(J2-Pad2)")
(node (ref R2) (pin 2))
(node (ref J2) (pin 2)))
(net (code 91) (name "Net-(J2-Pad1)")
(node (ref R1) (pin 2))
(node (ref J2) (pin 1)))
(net (code 92) (name "Net-(J2-Pad4)")
(node (ref R4) (pin 2))
(node (ref J2) (pin 4)))
(net (code 93) (name CS0)
(node (ref J1) (pin 24))
(node (ref U6) (pin 2)))
(net (code 94) (name MOSI)
(node (ref U6) (pin 10))
(node (ref J1) (pin 19)))
(net (code 95) (name SCK)
(node (ref J1) (pin 23))
(node (ref U6) (pin 1)))
(net (code 96) (name /4)
(node (ref K2) (pin 3))
(node (ref J5) (pin 7)))
(net (code 97) (name /9)
(node (ref J5) (pin 6))
(node (ref K3) (pin 4)))
(net (code 98) (name /8)
(node (ref J5) (pin 5))
(node (ref K3) (pin 1)))
(net (code 99) (name /7)
(node (ref J5) (pin 4))
(node (ref K3) (pin 3)))
(net (code 100) (name /12)
(node (ref K4) (pin 4))
(node (ref J5) (pin 3)))
(net (code 101) (name /11)
(node (ref K4) (pin 1))
(node (ref J5) (pin 2)))
(net (code 102) (name MISO)
(node (ref U6) (pin 9))
(node (ref J1) (pin 21)))
(net (code 103) (name "Net-(D11-Pad1)")
(node (ref D11) (pin 1))
(node (ref U8) (pin 18))
(node (ref K5) (pin 2))
(node (ref D7) (pin 2)))
(net (code 104) (name "Net-(J1-Pad28)")
(node (ref J1) (pin 28)))
(net (code 105) (name "Net-(J1-Pad27)")
(node (ref J1) (pin 27)))
(net (code 106) (name /6)
(node (ref J5) (pin 9))
(node (ref K2) (pin 4)))))
|