aboutsummaryrefslogtreecommitdiff
path: root/hw/chibi/chibi_2024/chibi_2024.net
blob: 8fb38f6c21ed8ac0cc66a7e1947402fd49600bae (plain)
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
(export (version D)
  (design
    (source /home/user/toys/7seg/hw/chibi/chibi_2024/chibi_2024.sch)
    (date "Sat 29 Apr 2017 08:28:41 PM CEST")
    (tool "Eeschema 4.0.4-1.fc24-product")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source chibi_2024.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 2) (name /mux_mod_right/) (tstamps /59008B1D/)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source mux_module.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 3) (name /mux_mod_left/) (tstamps /5901390A/)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source mux_module.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref U3)
      (value STM32F030F4Px)
      (footprint Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm)
      (libsource (lib chibi_2024-cache) (part STM32F030F4Px))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F61E))
    (comp (ref U2)
      (value SP3485CN)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib interface) (part SP3485CN))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F61F))
    (comp (ref C5)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F628))
    (comp (ref U1)
      (value LD1117S33CTR)
      (footprint TO_SOT_Packages_SMD:SOT-223)
      (libsource (lib regul) (part LD1117S33CTR))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F629))
    (comp (ref C6)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62D))
    (comp (ref C4)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62E))
    (comp (ref C3)
      (value 1000u)
      (footprint Capacitors_ThroughHole:C_Radial_D10_L20_P5-7.5)
      (fields
        (field (name Reichelt) "RAD FR 1.000/25"))
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F62F))
    (comp (ref Y1)
      (value 8MHz)
      (footprint Crystals:Crystal_HC49-SD_SMD)
      (libsource (lib device) (part Crystal_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F635))
    (comp (ref C12)
      (value 22p)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F636))
    (comp (ref C13)
      (value 22p)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F637))
    (comp (ref R13)
      (value 0.1)
      (footprint Resistors_SMD:R_2512_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F639))
    (comp (ref P2)
      (value CONN_02X05)
      (footprint Pin_Headers:Pin_Header_Straight_2x05)
      (libsource (lib conn) (part CONN_02X05))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F63A))
    (comp (ref P4)
      (value CONN_02X05)
      (footprint Pin_Headers:Pin_Header_Straight_2x05)
      (libsource (lib conn) (part CONN_02X05))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F63B))
    (comp (ref U4)
      (value LM358)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib linear) (part LM358))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F640))
    (comp (ref R15)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F641))
    (comp (ref R16)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F642))
    (comp (ref R14)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F644))
    (comp (ref R11)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F645))
    (comp (ref C17)
      (value comp)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F646))
    (comp (ref C16)
      (value comp)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5901F647))
    (comp (ref Q1)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59030F4D))
    (comp (ref Q2)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031899))
    (comp (ref Q3)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031ABE))
    (comp (ref Q4)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031DA8))
    (comp (ref Q5)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031EC7))
    (comp (ref Q6)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59031FF7))
    (comp (ref Q7)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 5903212A))
    (comp (ref Q8)
      (value AO3415A)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PMOS_GSD))
      (sheetpath (names /) (tstamps /))
      (tstamp 59032262))
    (comp (ref U7)
      (value 74HC595_mine)
      (footprint Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm)
      (libsource (lib components) (part 74HC595_mine))
      (sheetpath (names /) (tstamps /))
      (tstamp 5903A15D))
    (comp (ref P5)
      (value SWD)
      (footprint Socket_Strips:Socket_Strip_Straight_1x04)
      (libsource (lib conn) (part CONN_01X04))
      (sheetpath (names /) (tstamps /))
      (tstamp 5904BCE7))
    (comp (ref D7)
      (value ID)
      (footprint LEDs:LED_0603)
      (fields
        (field (name Color) Yellow))
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 590565A2))
    (comp (ref R35)
      (value 100)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590569D3))
    (comp (ref R36)
      (value 140)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056B28))
    (comp (ref R37)
      (value 100)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056C60))
    (comp (ref D8)
      (value ERROR)
      (footprint LEDs:LED_0603)
      (fields
        (field (name Color) Red))
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056D95))
    (comp (ref D9)
      (value COMM)
      (footprint LEDs:LED_0603)
      (fields
        (field (name Color) Green))
      (libsource (lib device) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 59056ED7))
    (comp (ref C11)
      (value 10n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905A693))
    (comp (ref R3)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905A92F))
    (comp (ref SW1)
      (value USER)
      (footprint Buttons_Switches_ThroughHole:SW_PUSH_SMALL)
      (libsource (lib device) (part SW_PUSH_SMALL_H))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905D817))
    (comp (ref SW2)
      (value RESET)
      (footprint Buttons_Switches_ThroughHole:SW_PUSH_SMALL)
      (libsource (lib device) (part SW_PUSH_SMALL_H))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905DB00))
    (comp (ref R1)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905EAC9))
    (comp (ref C1)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5905EF05))
    (comp (ref C7)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062924))
    (comp (ref C8)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062A72))
    (comp (ref C9)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062BCF))
    (comp (ref C10)
      (value 47u)
      (footprint Capacitors_SMD:c_elec_5x5.8)
      (fields
        (field (name Reichelt) "VF 47/6,3 P-C"))
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 59062D2B))
    (comp (ref C19)
      (value 1000u)
      (footprint Capacitors_ThroughHole:C_Radial_D10_L20_P5-7.5)
      (libsource (lib device) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906411A))
    (comp (ref C2)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906B773))
    (comp (ref R12)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906C4F4))
    (comp (ref R10)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906C9A8))
    (comp (ref R7)
      (value 4k7)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906DDCC))
    (comp (ref C15)
      (value 220n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906E07E))
    (comp (ref R8)
      (value 4k7)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5906E371))
    (comp (ref P1)
      (value VIN)
      (footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 590744DF))
    (comp (ref P3)
      (value GND)
      (footprint Mounting_Holes:MountingHole_4.3mm_M4_Pad_Via)
      (libsource (lib conn) (part CONN_01X01))
      (sheetpath (names /) (tstamps /))
      (tstamp 5907496E))
    (comp (ref C14)
      (value 220n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5908CA87))
    (comp (ref R6)
      (value 4k7)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5908DB62))
    (comp (ref R17)
      (value 4k7)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5908FA1B))
    (comp (ref R18)
      (value 4k7)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590900F3))
    (comp (ref C18)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590904B5))
    (comp (ref R9)
      (value 1k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590921E9))
    (comp (ref R5)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 59098BAA))
    (comp (ref R31)
      (value 4k7)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5909FD36))
    (comp (ref C24)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5909FFB1))
    (comp (ref C25)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A081B))
    (comp (ref C26)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A09AF))
    (comp (ref C27)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A0B46))
    (comp (ref C20)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A11EA))
    (comp (ref C21)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A11F0))
    (comp (ref C22)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A11F6))
    (comp (ref C23)
      (value 100n)
      (footprint Capacitors_SMD:C_0603_HandSoldering)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A11FC))
    (comp (ref R30)
      (value 10k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A16EE))
    (comp (ref R28)
      (value 10k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A1BED))
    (comp (ref R27)
      (value 10k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A1DD9))
    (comp (ref R26)
      (value 10k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A20F5))
    (comp (ref R24)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A22E9))
    (comp (ref R22)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A252E))
    (comp (ref R21)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590A26E0))
    (comp (ref U6)
      (value LM393)
      (footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
      (libsource (lib linear) (part LM393))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AA304))
    (comp (ref R25)
      (value 47k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AA841))
    (comp (ref R29)
      (value 47k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AB4C7))
    (comp (ref R32)
      (value 100k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590ACB0B))
    (comp (ref D3)
      (value "BAR 43C")
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part D_Schottky_x2_KCom_AAK))
      (sheetpath (names /) (tstamps /))
      (tstamp 590AEA0F))
    (comp (ref D4)
      (value "BAR 43C")
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part D_Schottky_x2_KCom_AAK))
      (sheetpath (names /) (tstamps /))
      (tstamp 590B08F4))
    (comp (ref D5)
      (value "BAR 43C")
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part D_Schottky_x2_KCom_AAK))
      (sheetpath (names /) (tstamps /))
      (tstamp 590B0F7C))
    (comp (ref D6)
      (value "BAR 43C")
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part D_Schottky_x2_KCom_AAK))
      (sheetpath (names /) (tstamps /))
      (tstamp 590B2902))
    (comp (ref R23)
      (value 470k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590B7D5F))
    (comp (ref R20)
      (value 47k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590BEC8C))
    (comp (ref D2)
      (value D_Small)
      (footprint Diodes_SMD:SOD-323)
      (libsource (lib device) (part D_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D0105))
    (comp (ref Q9)
      (value Q_PNP_CBE)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_PNP_CBE))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D2490))
    (comp (ref R19)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D2659))
    (comp (ref Q10)
      (value Q_NPN_CBE)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_NPN_CBE))
      (sheetpath (names /) (tstamps /))
      (tstamp 590D9BF9))
    (comp (ref Q11)
      (value Q_NPN_CBE)
      (footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
      (libsource (lib device) (part Q_NPN_CBE))
      (sheetpath (names /) (tstamps /))
      (tstamp 590DB412))
    (comp (ref R33)
      (value 100k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590E4C6D))
    (comp (ref R34)
      (value 100k)
      (footprint Resistors_SMD:R_0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590E5245))
    (comp (ref U5)
      (value 74HC595_mine)
      (footprint Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm)
      (libsource (lib components) (part 74HC595_mine))
      (sheetpath (names /) (tstamps /))
      (tstamp 590EBD9D))
    (comp (ref R4)
      (value 100k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 590FF79A))
    (comp (ref R2)
      (value 10k)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5910A89E))
    (comp (ref F1)
      (value "2.5A MT")
      (footprint Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_open_universal_Type-III)
      (libsource (lib device) (part F_Small))
      (sheetpath (names /) (tstamps /))
      (tstamp 5911004E))
    (comp (ref D1)
      (value "6.4V 1.3W")
      (footprint Discret:D5)
      (libsource (lib device) (part ZENERsmall))
      (sheetpath (names /) (tstamps /))
      (tstamp 59113850))
    (comp (ref D10)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900990E))
    (comp (ref D11)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 59009915))
    (comp (ref D12)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900991C))
    (comp (ref D13)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 59009923))
    (comp (ref U8)
      (value MBI5026)
      (footprint footprints:SSOP24-1.0)
      (libsource (lib components) (part MBI5026))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 5900992A))
    (comp (ref R39)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 590099AE))
    (comp (ref R38)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_right/) (tstamps /59008B1D/))
      (tstamp 590DC56C))
    (comp (ref D14)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900990E))
    (comp (ref D15)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 59009915))
    (comp (ref D16)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900991C))
    (comp (ref D17)
      (value 7seg_4digit_cc)
      (footprint Displays_7-Segment:Cx56-12)
      (libsource (lib components) (part 7seg_4digit_cc))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 59009923))
    (comp (ref U9)
      (value MBI5026)
      (footprint footprints:SSOP24-1.0)
      (libsource (lib components) (part MBI5026))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 5900992A))
    (comp (ref R41)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 590099AE))
    (comp (ref R40)
      (value R)
      (footprint Resistors_SMD:R_0603_HandSoldering)
      (libsource (lib device) (part R))
      (sheetpath (names /mux_mod_left/) (tstamps /5901390A/))
      (tstamp 590DC56C)))
  (libparts
    (libpart (lib components) (part 74HC595_mine)
      (docs ref/74HC_HCT595.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) 74HC595_mine))
      (pins
        (pin (num 1) (name Q1) (type input))
        (pin (num 2) (name Q2) (type input))
        (pin (num 3) (name Q3) (type input))
        (pin (num 4) (name Q4) (type input))
        (pin (num 5) (name Q5) (type input))
        (pin (num 6) (name Q6) (type input))
        (pin (num 7) (name Q7) (type input))
        (pin (num 8) (name GND) (type input))
        (pin (num 9) (name Q7S) (type input))
        (pin (num 10) (name ~MR) (type input))
        (pin (num 11) (name SHCP) (type input))
        (pin (num 12) (name STCP) (type input))
        (pin (num 13) (name ~OE) (type input))
        (pin (num 14) (name DS) (type input))
        (pin (num 15) (name Q0) (type input))
        (pin (num 16) (name VCC) (type input))))
    (libpart (lib components) (part 7seg_4digit_cc)
      (fields
        (field (name Reference) D)
        (field (name Value) 7seg_4digit_cc))
      (pins
        (pin (num 1) (name E) (type input))
        (pin (num 2) (name D) (type input))
        (pin (num 3) (name DP) (type input))
        (pin (num 4) (name C) (type input))
        (pin (num 5) (name G) (type input))
        (pin (num 6) (name CC4) (type input))
        (pin (num 7) (name B) (type input))
        (pin (num 8) (name CC3) (type input))
        (pin (num 9) (name CC2) (type input))
        (pin (num 10) (name F) (type input))
        (pin (num 11) (name A) (type input))
        (pin (num 12) (name CC1) (type input))))
    (libpart (lib device) (part C)
      (description "Unpolarized capacitor")
      (footprints
        (fp C?)
        (fp C_????_*)
        (fp C_????)
        (fp SMD*_c)
        (fp Capacitor*))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib conn) (part CONN_01X01)
      (description "Connector, single row, 01x01")
      (footprints
        (fp Pin_Header_Straight_1X01)
        (fp Pin_Header_Angled_1X01)
        (fp Socket_Strip_Straight_1X01)
        (fp Socket_Strip_Angled_1X01))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X01))
      (pins
        (pin (num 1) (name P1) (type passive))))
    (libpart (lib conn) (part CONN_01X04)
      (description "Connector, single row, 01x04")
      (footprints
        (fp Pin_Header_Straight_1X04)
        (fp Pin_Header_Angled_1X04)
        (fp Socket_Strip_Straight_1X04)
        (fp Socket_Strip_Angled_1X04))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_01X04))
      (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 conn) (part CONN_02X05)
      (description "Connector, double row, 02x05")
      (footprints
        (fp Pin_Header_Straight_2X05)
        (fp Pin_Header_Angled_2X05)
        (fp Socket_Strip_Straight_2X05)
        (fp Socket_Strip_Angled_2X05))
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_02X05))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name P2) (type passive))
        (pin (num 3) (name P3) (type passive))
        (pin (num 4) (name P4) (type passive))
        (pin (num 5) (name P5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))
        (pin (num 9) (name P9) (type passive))
        (pin (num 10) (name P10) (type passive))))
    (libpart (lib device) (part CP)
      (description "Polarised capacitor")
      (footprints
        (fp CP*)
        (fp C_Axial*)
        (fp C_Radial*)
        (fp TantalC*)
        (fp C*elec)
        (fp c_elec*)
        (fp SMD*_Pol))
      (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 Crystal_Small)
      (description "Two pin crystal")
      (footprints
        (fp Crystal_))
      (fields
        (field (name Reference) Y)
        (field (name Value) Crystal_Small))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part D_Schottky_x2_KCom_AAK)
      (description "Double diode Schottky (Serie)")
      (fields
        (field (name Reference) D)
        (field (name Value) D_Schottky_x2_KCom_AAK))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name A) (type passive))
        (pin (num 3) (name K) (type passive))))
    (libpart (lib device) (part D_Small)
      (description Diode)
      (footprints
        (fp Diode_*)
        (fp D-Pak_TO252AA)
        (fp *SingleDiode)
        (fp *SingleDiode*)
        (fp *_Diode_*))
      (fields
        (field (name Reference) D)
        (field (name Value) D_Small))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part F_Small)
      (description Fuse)
      (footprints
        (fp CP*)
        (fp SM*))
      (fields
        (field (name Reference) F)
        (field (name Value) F_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib regul) (part LD1117S33TR)
      (aliases
        (alias LD1117S33CTR)
        (alias LD1117S12TR)
        (alias LD1117S12CTR)
        (alias LD1117S18TR)
        (alias LD1117S18CTR)
        (alias LD1117S25TR)
        (alias LD1117S25CTR)
        (alias LD1117S50TR)
        (alias LD1117S50CTR))
      (description "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 3.3V, SOT223")
      (docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf)
      (footprints
        (fp SOT223))
      (fields
        (field (name Reference) U)
        (field (name Value) LD1117S33TR)
        (field (name Footprint) SOT-223))
      (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 device) (part LED)
      (footprints
        (fp LED-*)
        (fp LED_*))
      (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 linear) (part LM2903)
      (aliases
        (alias LM293)
        (alias LM393)
        (alias LM193))
      (description "Dual Voltage Comparator")
      (docs ns/lm193.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) LM2903))
      (pins
        (pin (num 1) (name ~) (type openCol))
        (pin (num 2) (name _) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name _) (type input))
        (pin (num 7) (name ~) (type openCol))
        (pin (num 8) (name V+) (type power_in))))
    (libpart (lib linear) (part LM358)
      (aliases
        (alias LMC6062)
        (alias LMC6082)
        (alias LM358N)
        (alias TL072)
        (alias TL082)
        (alias NE5532)
        (alias 4558))
      (description "Dual Op amp (low power)")
      (docs ns/lm158.pdf)
      (footprints
        (fp SOIC*)
        (fp DIP*)
        (fp TSSOP*)
        (fp TO-99*)
        (fp DSBGA*))
      (fields
        (field (name Reference) U)
        (field (name Value) LM358))
      (pins
        (pin (num 1) (name ~) (type output))
        (pin (num 2) (name -) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name -) (type input))
        (pin (num 7) (name ~) (type output))
        (pin (num 8) (name V+) (type power_in))))
    (libpart (lib components) (part MBI5026)
      (fields
        (field (name Reference) U)
        (field (name Value) MBI5026))
      (pins
        (pin (num 1) (name GND) (type input))
        (pin (num 2) (name SDI) (type input))
        (pin (num 3) (name CLK) (type input))
        (pin (num 4) (name LE) (type input))
        (pin (num 5) (name OUT0) (type input))
        (pin (num 6) (name OUT1) (type input))
        (pin (num 7) (name OUT2) (type input))
        (pin (num 8) (name OUT3) (type input))
        (pin (num 9) (name OUT4) (type input))
        (pin (num 10) (name OUT5) (type input))
        (pin (num 11) (name OUT6) (type input))
        (pin (num 12) (name OUT7) (type input))
        (pin (num 13) (name OUT8) (type input))
        (pin (num 14) (name OUT9) (type input))
        (pin (num 15) (name OUT10) (type input))
        (pin (num 16) (name OUT11) (type input))
        (pin (num 17) (name OUT12) (type input))
        (pin (num 18) (name OUT13) (type input))
        (pin (num 19) (name OUT14) (type input))
        (pin (num 20) (name OUT15) (type input))
        (pin (num 21) (name ~OE) (type input))
        (pin (num 22) (name SDO) (type input))
        (pin (num 23) (name R_ext) (type input))
        (pin (num 24) (name VDD) (type input))))
    (libpart (lib device) (part Q_NPN_CBE)
      (description "Transistor NPN (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_NPN_CBE))
      (pins
        (pin (num 1) (name C) (type passive))
        (pin (num 2) (name B) (type input))
        (pin (num 3) (name E) (type passive))))
    (libpart (lib device) (part Q_PMOS_GSD)
      (description "Transistor P-MOSFET (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_PMOS_GSD))
      (pins
        (pin (num 1) (name G) (type input))
        (pin (num 2) (name S) (type passive))
        (pin (num 3) (name D) (type passive))))
    (libpart (lib device) (part Q_PNP_CBE)
      (description "Transistor PNP (general)")
      (fields
        (field (name Reference) Q)
        (field (name Value) Q_PNP_CBE))
      (pins
        (pin (num 1) (name C) (type passive))
        (pin (num 2) (name B) (type input))
        (pin (num 3) (name E) (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 interface) (part SP3481CN)
      (aliases
        (alias SP3481EN)
        (alias SP3485CN)
        (alias SP3485EN))
      (description "3.3V Low Power Half-Duplex RS-485 Transceiver 10Mbps, SO8")
      (docs http://www.icbase.com/pdf/SPX/SPX00480106.pdf)
      (footprints
        (fp SO8*))
      (fields
        (field (name Reference) U)
        (field (name Value) SP3481CN)
        (field (name Footprint) SO-8))
      (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 chibi_2024-cache) (part STM32F030F4Px)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F030F4Px)
        (field (name Footprint) TSSOP20))
      (pins
        (pin (num 1) (name BOOT0) (type input))
        (pin (num 2) (name PF0/RCC_OSC_IN) (type input))
        (pin (num 3) (name PF1/RCC_OSC_OUT) (type input))
        (pin (num 4) (name NRST) (type input))
        (pin (num 5) (name VDDA) (type power_in))
        (pin (num 6) (name ADC_IN0/RTC_TAMP2/SYS_WKUP1/USART1_CTS/PA0) (type BiDi))
        (pin (num 7) (name ADC_IN1/USART1_DE/USART1_RTS/PA1) (type BiDi))
        (pin (num 8) (name ADC_IN2/USART1_TX/PA2) (type BiDi))
        (pin (num 9) (name ADC_IN3/USART1_RX/PA3) (type BiDi))
        (pin (num 10) (name ADC_IN4/SPI1_NSS/TIM14_CH1/USART1_CK/PA4) (type BiDi))
        (pin (num 11) (name ADC_IN5/SPI1_SCK/PA5) (type BiDi))
        (pin (num 12) (name ADC_IN6/SPI1_MISO/TIM16_CH1/TIM1_BKIN/TIM3_CH1/PA6) (type BiDi))
        (pin (num 13) (name ADC_IN7/SPI1_MOSI/TIM14_CH1/TIM17_CH1/TIM1_CH1N/TIM3_CH2/PA7) (type BiDi))
        (pin (num 14) (name PB1/ADC_IN9/TIM14_CH1/TIM1_CH3N/TIM3_CH4) (type BiDi))
        (pin (num 15) (name VSS) (type power_in))
        (pin (num 16) (name VDD) (type power_in))
        (pin (num 17) (name I2C1_SCL/TIM1_CH2/USART1_TX/PA9) (type BiDi))
        (pin (num 18) (name I2C1_SDA/TIM17_BKIN/TIM1_CH3/USART1_RX/PA10) (type BiDi))
        (pin (num 19) (name IR_OUT/SYS_SWDIO/PA13) (type BiDi))
        (pin (num 20) (name SYS_SWCLK/USART1_TX/PA14) (type BiDi))))
    (libpart (lib device) (part SW_PUSH_SMALL_H)
      (description Button)
      (fields
        (field (name Reference) SW)
        (field (name Value) SW_PUSH_SMALL_H))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part ZENERsmall)
      (footprints
        (fp D?)
        (fp SO*)
        (fp SM*))
      (fields
        (field (name Reference) D)
        (field (name Value) ZENERsmall))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive)))))
  (libraries
    (library (logical interface)
      (uri /usr/share/kicad/library/interface.lib))
    (library (logical linear)
      (uri /usr/share/kicad/library/linear.lib))
    (library (logical regul)
      (uri /usr/share/kicad/library/regul.lib))
    (library (logical conn)
      (uri /usr/share/kicad/library/conn.lib))
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical components)
      (uri /home/user/toys/7seg/hw/chibi/components.lib))
    (library (logical chibi_2024-cache)
      (uri /home/user/toys/7seg/hw/chibi/chibi_2024/chibi_2024-cache.lib)))
  (nets
    (net (code 1) (name "Net-(C1-Pad1)")
      (node (ref SW1) (pin 1))
      (node (ref R2) (pin 1))
      (node (ref C1) (pin 1)))
    (net (code 2) (name "Net-(R10-Pad2)")
      (node (ref U4) (pin 3))
      (node (ref R10) (pin 2))
      (node (ref R12) (pin 1)))
    (net (code 3) (name "Net-(D7-Pad1)")
      (node (ref D7) (pin 1))
      (node (ref R35) (pin 1)))
    (net (code 4) (name "Net-(D8-Pad1)")
      (node (ref R36) (pin 1))
      (node (ref D8) (pin 1)))
    (net (code 5) (name "Net-(D9-Pad1)")
      (node (ref D9) (pin 1))
      (node (ref R37) (pin 1)))
    (net (code 6) (name "Net-(C15-Pad2)")
      (node (ref C15) (pin 2))
      (node (ref R7) (pin 2))
      (node (ref R8) (pin 2)))
    (net (code 7) (name "Net-(C14-Pad2)")
      (node (ref R7) (pin 1))
      (node (ref C14) (pin 2))
      (node (ref R6) (pin 2)))
    (net (code 8) (name /CM_STAGE1_FB)
      (node (ref C17) (pin 2))
      (node (ref U4) (pin 2))
      (node (ref R16) (pin 2))
      (node (ref R15) (pin 1)))
    (net (code 9) (name /CM_STAGE2_FB)
      (node (ref R11) (pin 2))
      (node (ref R14) (pin 1))
      (node (ref C16) (pin 2))
      (node (ref U4) (pin 6))
      (node (ref R8) (pin 1)))
    (net (code 10) (name "Net-(C16-Pad1)")
      (node (ref C16) (pin 1))
      (node (ref R9) (pin 1))
      (node (ref R11) (pin 1))
      (node (ref U4) (pin 7)))
    (net (code 11) (name /RS485_A)
      (node (ref P4) (pin 1))
      (node (ref P2) (pin 1))
      (node (ref U2) (pin 6)))
    (net (code 12) (name "Net-(C18-Pad2)")
      (node (ref U4) (pin 5))
      (node (ref R18) (pin 1))
      (node (ref R17) (pin 2))
      (node (ref C18) (pin 2)))
    (net (code 13) (name "Net-(U5-Pad14)")
      (node (ref U5) (pin 14)))
    (net (code 14) (name +3V3)
      (node (ref R3) (pin 1))
      (node (ref R17) (pin 1))
      (node (ref C8) (pin 2))
      (node (ref Q9) (pin 3))
      (node (ref C7) (pin 2))
      (node (ref C9) (pin 2))
      (node (ref C10) (pin 1))
      (node (ref U5) (pin 10))
      (node (ref U8) (pin 24))
      (node (ref U5) (pin 16))
      (node (ref R5) (pin 2))
      (node (ref C6) (pin 2))
      (node (ref U2) (pin 8))
      (node (ref C5) (pin 2))
      (node (ref U3) (pin 16))
      (node (ref U3) (pin 1))
      (node (ref U3) (pin 5))
      (node (ref P5) (pin 4))
      (node (ref U1) (pin 2))
      (node (ref U6) (pin 8))
      (node (ref R25) (pin 2))
      (node (ref R20) (pin 1)))
    (net (code 15) (name /MOSI_C3)
      (node (ref U7) (pin 9))
      (node (ref U5) (pin 9)))
    (net (code 16) (name "Net-(Q11-Pad2)")
      (node (ref R34) (pin 1))
      (node (ref Q11) (pin 2)))
    (net (code 17) (name /mux_mod_right/R_SET_0)
      (node (ref R38) (pin 1))
      (node (ref Q10) (pin 1)))
    (net (code 18) (name /mux_mod_right/R_SET_1)
      (node (ref Q11) (pin 1))
      (node (ref R39) (pin 1)))
    (net (code 19) (name GND)
      (node (ref P5) (pin 3))
      (node (ref U7) (pin 8))
      (node (ref P2) (pin 8))
      (node (ref U7) (pin 13))
      (node (ref P2) (pin 9))
      (node (ref P2) (pin 10))
      (node (ref U2) (pin 5))
      (node (ref C3) (pin 2))
      (node (ref C4) (pin 1))
      (node (ref C12) (pin 1))
      (node (ref C13) (pin 1))
      (node (ref P2) (pin 2))
      (node (ref P2) (pin 4))
      (node (ref C6) (pin 1))
      (node (ref P4) (pin 10))
      (node (ref P2) (pin 5))
      (node (ref P2) (pin 6))
      (node (ref U3) (pin 15))
      (node (ref P2) (pin 7))
      (node (ref Q11) (pin 3))
      (node (ref Q10) (pin 3))
      (node (ref P4) (pin 7))
      (node (ref U4) (pin 4))
      (node (ref P4) (pin 9))
      (node (ref P4) (pin 8))
      (node (ref P4) (pin 6))
      (node (ref P4) (pin 5))
      (node (ref P4) (pin 4))
      (node (ref P4) (pin 2))
      (node (ref C14) (pin 1))
      (node (ref P3) (pin 1))
      (node (ref C15) (pin 1))
      (node (ref R18) (pin 2))
      (node (ref R35) (pin 2))
      (node (ref SW2) (pin 2))
      (node (ref U8) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref C19) (pin 2))
      (node (ref C10) (pin 2))
      (node (ref C9) (pin 1))
      (node (ref C8) (pin 1))
      (node (ref C7) (pin 1))
      (node (ref R10) (pin 1))
      (node (ref C18) (pin 1))
      (node (ref U6) (pin 4))
      (node (ref C26) (pin 2))
      (node (ref C25) (pin 2))
      (node (ref C24) (pin 2))
      (node (ref R32) (pin 1))
      (node (ref R29) (pin 1))
      (node (ref C27) (pin 2))
      (node (ref U1) (pin 1))
      (node (ref C5) (pin 1))
      (node (ref C11) (pin 2))
      (node (ref R37) (pin 2))
      (node (ref R36) (pin 2))
      (node (ref C23) (pin 2))
      (node (ref C22) (pin 2))
      (node (ref C21) (pin 2))
      (node (ref C20) (pin 2))
      (node (ref R4) (pin 2))
      (node (ref U5) (pin 13))
      (node (ref D1) (pin 2))
      (node (ref U5) (pin 8)))
    (net (code 20) (name "Net-(Q10-Pad2)")
      (node (ref R33) (pin 1))
      (node (ref Q10) (pin 2)))
    (net (code 21) (name "Net-(U5-Pad2)")
      (node (ref U5) (pin 2)))
    (net (code 22) (name "Net-(U5-Pad3)")
      (node (ref U5) (pin 3)))
    (net (code 23) (name "Net-(U5-Pad4)")
      (node (ref U5) (pin 4)))
    (net (code 24) (name "Net-(F1-Pad1)")
      (node (ref P1) (pin 1))
      (node (ref F1) (pin 1)))
    (net (code 25) (name /LED_COMM)
      (node (ref D9) (pin 2))
      (node (ref U5) (pin 5)))
    (net (code 26) (name /AUX_STROBE)
      (node (ref U7) (pin 12))
      (node (ref U3) (pin 18))
      (node (ref U5) (pin 12)))
    (net (code 27) (name /LED_ID)
      (node (ref D7) (pin 2))
      (node (ref U5) (pin 7)))
    (net (code 28) (name /LED_ERROR)
      (node (ref D8) (pin 2))
      (node (ref U5) (pin 6)))
    (net (code 29) (name /R_SET_CTRL0)
      (node (ref U5) (pin 15))
      (node (ref R33) (pin 2)))
    (net (code 30) (name /R_SET_CTRL1)
      (node (ref R34) (pin 2))
      (node (ref U5) (pin 1)))
    (net (code 31) (name /WD_REF)
      (node (ref R25) (pin 1))
      (node (ref R29) (pin 2))
      (node (ref U6) (pin 3))
      (node (ref R23) (pin 1)))
    (net (code 32) (name /~WD_RST)
      (node (ref R19) (pin 2))
      (node (ref D2) (pin 1))
      (node (ref R20) (pin 2))
      (node (ref R23) (pin 2))
      (node (ref U6) (pin 1)))
    (net (code 33) (name /SEG_C_CTRL)
      (node (ref U7) (pin 2))
      (node (ref R24) (pin 2))
      (node (ref Q3) (pin 1)))
    (net (code 34) (name "Net-(Q9-Pad2)")
      (node (ref Q9) (pin 2))
      (node (ref R19) (pin 1)))
    (net (code 35) (name /SEG_E_CTRL)
      (node (ref U7) (pin 4))
      (node (ref R27) (pin 2))
      (node (ref Q5) (pin 1)))
    (net (code 36) (name /SEG_F_CTRL)
      (node (ref R28) (pin 2))
      (node (ref U7) (pin 5))
      (node (ref Q6) (pin 1)))
    (net (code 37) (name /SEG_G_CTLR)
      (node (ref Q7) (pin 1))
      (node (ref U7) (pin 6))
      (node (ref R30) (pin 2)))
    (net (code 38) (name /SEG_DP_CTRL)
      (node (ref Q8) (pin 1))
      (node (ref U7) (pin 7))
      (node (ref R31) (pin 2)))
    (net (code 39) (name /mux_mod_right/SEG_B)
      (node (ref D11) (pin 7))
      (node (ref D10) (pin 7))
      (node (ref D12) (pin 7))
      (node (ref D13) (pin 7)))
    (net (code 40) (name /WD_COMP)
      (node (ref D6) (pin 3))
      (node (ref U6) (pin 2))
      (node (ref D3) (pin 3))
      (node (ref D4) (pin 3))
      (node (ref D5) (pin 3))
      (node (ref R32) (pin 2)))
    (net (code 41) (name /WD_DC_A)
      (node (ref C20) (pin 1))
      (node (ref D3) (pin 2))
      (node (ref R21) (pin 1)))
    (net (code 42) (name /WD_DC_B)
      (node (ref R22) (pin 1))
      (node (ref D3) (pin 1))
      (node (ref C21) (pin 1)))
    (net (code 43) (name /WD_DC_C)
      (node (ref R24) (pin 1))
      (node (ref C22) (pin 1))
      (node (ref D4) (pin 2)))
    (net (code 44) (name /WD_DC_D)
      (node (ref R26) (pin 1))
      (node (ref C23) (pin 1))
      (node (ref D4) (pin 1)))
    (net (code 45) (name /WD_DC_E)
      (node (ref R27) (pin 1))
      (node (ref C24) (pin 1))
      (node (ref D5) (pin 2)))
    (net (code 46) (name /WD_DC_F)
      (node (ref D5) (pin 1))
      (node (ref R28) (pin 1))
      (node (ref C25) (pin 1)))
    (net (code 47) (name /WD_DC_G)
      (node (ref C26) (pin 1))
      (node (ref R30) (pin 1))
      (node (ref D6) (pin 2)))
    (net (code 48) (name /WD_DC_DP)
      (node (ref R31) (pin 1))
      (node (ref D6) (pin 1))
      (node (ref C27) (pin 1)))
    (net (code 49) (name /RS485_B)
      (node (ref P4) (pin 3))
      (node (ref P2) (pin 3))
      (node (ref U2) (pin 7)))
    (net (code 52) (name VDD)
      (node (ref U1) (pin 3))
      (node (ref U7) (pin 16))
      (node (ref C3) (pin 1))
      (node (ref U7) (pin 10))
      (node (ref U4) (pin 8))
      (node (ref R12) (pin 2))
      (node (ref C2) (pin 2))
      (node (ref C4) (pin 2))
      (node (ref F1) (pin 2))
      (node (ref D1) (pin 1))
      (node (ref R13) (pin 1)))
    (net (code 53) (name /SCK)
      (node (ref U3) (pin 11))
      (node (ref U7) (pin 11))
      (node (ref U5) (pin 11)))
    (net (code 54) (name /STROBE)
      (node (ref U8) (pin 4))
      (node (ref U3) (pin 17)))
    (net (code 55) (name /CMEAS_OUT)
      (node (ref U3) (pin 10))
      (node (ref R9) (pin 2)))
    (net (code 56) (name /mux_mod_left/CLK)
      (node (ref U9) (pin 3)))
    (net (code 57) (name /mux_mod_left/LE)
      (node (ref U9) (pin 4)))
    (net (code 58) (name /mux_mod_left/~OE)
      (node (ref U9) (pin 21)))
    (net (code 59) (name /mux_mod_left/R_SET_0)
      (node (ref R40) (pin 1)))
    (net (code 60) (name /mux_mod_left/R_SET_1)
      (node (ref R41) (pin 1)))
    (net (code 61) (name /mux_mod_left/VDD)
      (node (ref U9) (pin 24)))
    (net (code 62) (name /RS485_DE)
      (node (ref U3) (pin 7))
      (node (ref U2) (pin 3))
      (node (ref U2) (pin 2))
      (node (ref R4) (pin 1)))
    (net (code 63) (name /mux_mod_right/SEG_A)
      (node (ref D10) (pin 11))
      (node (ref D13) (pin 11))
      (node (ref D12) (pin 11))
      (node (ref D11) (pin 11)))
    (net (code 64) (name /mux_mod_right/SEG_C)
      (node (ref D13) (pin 4))
      (node (ref D11) (pin 4))
      (node (ref D10) (pin 4))
      (node (ref D12) (pin 4)))
    (net (code 65) (name /mux_mod_right/SEG_D)
      (node (ref D11) (pin 2))
      (node (ref D10) (pin 2))
      (node (ref D13) (pin 2))
      (node (ref D12) (pin 2)))
    (net (code 66) (name /mux_mod_right/SEG_E)
      (node (ref D12) (pin 1))
      (node (ref D13) (pin 1))
      (node (ref D11) (pin 1))
      (node (ref D10) (pin 1)))
    (net (code 67) (name /mux_mod_right/SEG_F)
      (node (ref D10) (pin 10))
      (node (ref D11) (pin 10))
      (node (ref D13) (pin 10))
      (node (ref D12) (pin 10)))
    (net (code 68) (name /mux_mod_right/SEG_G)
      (node (ref D11) (pin 5))
      (node (ref D12) (pin 5))
      (node (ref D10) (pin 5))
      (node (ref D13) (pin 5)))
    (net (code 69) (name /mux_mod_right/SEG_DP)
      (node (ref D10) (pin 3))
      (node (ref D13) (pin 3))
      (node (ref D12) (pin 3))
      (node (ref D11) (pin 3)))
    (net (code 70) (name /mux_mod_right/CLK)
      (node (ref U8) (pin 3)))
    (net (code 71) (name /~OE)
      (node (ref R5) (pin 1))
      (node (ref U8) (pin 21))
      (node (ref Q9) (pin 1))
      (node (ref U3) (pin 12)))
    (net (code 72) (name /mux_mod_left/GND)
      (node (ref U9) (pin 1)))
    (net (code 73) (name /XT2)
      (node (ref C13) (pin 2))
      (node (ref Y1) (pin 1))
      (node (ref U3) (pin 3)))
    (net (code 74) (name /XT1)
      (node (ref U3) (pin 2))
      (node (ref Y1) (pin 2))
      (node (ref C12) (pin 2)))
    (net (code 75) (name /RS485_RX)
      (node (ref U2) (pin 1))
      (node (ref U3) (pin 9)))
    (net (code 76) (name /RS485_TX)
      (node (ref U3) (pin 8))
      (node (ref U2) (pin 4)))
    (net (code 77) (name /SEG_D_CTRL)
      (node (ref R26) (pin 2))
      (node (ref Q4) (pin 1))
      (node (ref U7) (pin 3)))
    (net (code 78) (name /SEG_A_COM)
      (node (ref D17) (pin 11))
      (node (ref D16) (pin 11))
      (node (ref D14) (pin 11))
      (node (ref D15) (pin 11))
      (node (ref Q1) (pin 2)))
    (net (code 79) (name /SEG_B_COM)
      (node (ref Q2) (pin 2))
      (node (ref D16) (pin 7))
      (node (ref D15) (pin 7))
      (node (ref D17) (pin 7))
      (node (ref D14) (pin 7)))
    (net (code 80) (name /SEG_C_COM)
      (node (ref D17) (pin 4))
      (node (ref D15) (pin 4))
      (node (ref D14) (pin 4))
      (node (ref D16) (pin 4))
      (node (ref Q3) (pin 2)))
    (net (code 81) (name /SEG_D_COM)
      (node (ref D16) (pin 2))
      (node (ref Q4) (pin 2))
      (node (ref D15) (pin 2))
      (node (ref D14) (pin 2))
      (node (ref D17) (pin 2)))
    (net (code 82) (name /SEG_E_COM)
      (node (ref D16) (pin 1))
      (node (ref D15) (pin 1))
      (node (ref D17) (pin 1))
      (node (ref D14) (pin 1))
      (node (ref Q5) (pin 2)))
    (net (code 83) (name /SEG_F_COM)
      (node (ref D16) (pin 10))
      (node (ref D17) (pin 10))
      (node (ref Q6) (pin 2))
      (node (ref D14) (pin 10))
      (node (ref D15) (pin 10)))
    (net (code 84) (name /SEG_G_COM)
      (node (ref Q7) (pin 2))
      (node (ref D17) (pin 5))
      (node (ref D14) (pin 5))
      (node (ref D15) (pin 5))
      (node (ref D16) (pin 5)))
    (net (code 85) (name /SEG_DP_COM)
      (node (ref D14) (pin 3))
      (node (ref D16) (pin 3))
      (node (ref D15) (pin 3))
      (node (ref D17) (pin 3))
      (node (ref Q8) (pin 2)))
    (net (code 86) (name /SEG_A_CTRL)
      (node (ref Q1) (pin 1))
      (node (ref U7) (pin 15))
      (node (ref R21) (pin 2)))
    (net (code 87) (name /SEG_B_CTRL)
      (node (ref U7) (pin 1))
      (node (ref R22) (pin 2))
      (node (ref Q2) (pin 1)))
    (net (code 88) (name /MOSI_C1)
      (node (ref U8) (pin 2))
      (node (ref U9) (pin 22)))
    (net (code 89) (name /MOSI_C2)
      (node (ref U7) (pin 14))
      (node (ref U8) (pin 22)))
    (net (code 90) (name /MOSI_C0)
      (node (ref U3) (pin 13))
      (node (ref U9) (pin 2)))
    (net (code 91) (name /SEG_COM_MEAS)
      (node (ref Q7) (pin 3))
      (node (ref R13) (pin 2))
      (node (ref C19) (pin 1))
      (node (ref Q5) (pin 3))
      (node (ref Q1) (pin 3))
      (node (ref Q2) (pin 3))
      (node (ref Q3) (pin 3))
      (node (ref Q8) (pin 3))
      (node (ref Q4) (pin 3))
      (node (ref R15) (pin 2))
      (node (ref R1) (pin 2))
      (node (ref Q6) (pin 3)))
    (net (code 92) (name /CMEAS_OFFX_COMP)
      (node (ref U3) (pin 14))
      (node (ref R6) (pin 1)))
    (net (code 93) (name /SWDIO)
      (node (ref U3) (pin 19))
      (node (ref P5) (pin 1)))
    (net (code 94) (name /SWCLK)
      (node (ref U3) (pin 20))
      (node (ref P5) (pin 2)))
    (net (code 95) (name /CM_STAGE1)
      (node (ref R16) (pin 1))
      (node (ref R14) (pin 2))
      (node (ref U4) (pin 1))
      (node (ref C17) (pin 1)))
    (net (code 96) (name /RST)
      (node (ref D2) (pin 2))
      (node (ref U3) (pin 4))
      (node (ref R3) (pin 2))
      (node (ref C11) (pin 1))
      (node (ref SW2) (pin 1)))
    (net (code 97) (name /USER_BTN)
      (node (ref R1) (pin 1))
      (node (ref U3) (pin 6))
      (node (ref SW1) (pin 2))
      (node (ref R2) (pin 2))
      (node (ref C1) (pin 2)))
    (net (code 98) (name "Net-(D11-Pad8)")
      (node (ref U8) (pin 10))
      (node (ref D11) (pin 8)))
    (net (code 99) (name "Net-(D11-Pad9)")
      (node (ref U8) (pin 11))
      (node (ref D11) (pin 9)))
    (net (code 100) (name "Net-(D11-Pad12)")
      (node (ref U8) (pin 12))
      (node (ref D11) (pin 12)))
    (net (code 101) (name "Net-(D12-Pad12)")
      (node (ref U8) (pin 16))
      (node (ref D12) (pin 12)))
    (net (code 102) (name "Net-(D12-Pad9)")
      (node (ref U8) (pin 15))
      (node (ref D12) (pin 9)))
    (net (code 103) (name "Net-(D12-Pad8)")
      (node (ref U8) (pin 14))
      (node (ref D12) (pin 8)))
    (net (code 104) (name "Net-(D12-Pad6)")
      (node (ref U8) (pin 13))
      (node (ref D12) (pin 6)))
    (net (code 105) (name "Net-(D13-Pad6)")
      (node (ref U8) (pin 17))
      (node (ref D13) (pin 6)))
    (net (code 106) (name "Net-(D13-Pad8)")
      (node (ref D13) (pin 8))
      (node (ref U8) (pin 18)))
    (net (code 107) (name "Net-(D13-Pad9)")
      (node (ref U8) (pin 19))
      (node (ref D13) (pin 9)))
    (net (code 108) (name "Net-(D13-Pad12)")
      (node (ref U8) (pin 20))
      (node (ref D13) (pin 12)))
    (net (code 109) (name "Net-(R38-Pad2)")
      (node (ref U8) (pin 23))
      (node (ref R38) (pin 2))
      (node (ref R39) (pin 2)))
    (net (code 110) (name "Net-(D10-Pad9)")
      (node (ref D10) (pin 9))
      (node (ref U8) (pin 7)))
    (net (code 111) (name "Net-(D10-Pad12)")
      (node (ref D10) (pin 12))
      (node (ref U8) (pin 8)))
    (net (code 112) (name "Net-(D11-Pad6)")
      (node (ref U8) (pin 9))
      (node (ref D11) (pin 6)))
    (net (code 113) (name "Net-(D10-Pad6)")
      (node (ref D10) (pin 6))
      (node (ref U8) (pin 5)))
    (net (code 114) (name "Net-(D10-Pad8)")
      (node (ref D10) (pin 8))
      (node (ref U8) (pin 6)))
    (net (code 115) (name "Net-(D15-Pad8)")
      (node (ref D15) (pin 8))
      (node (ref U9) (pin 10)))
    (net (code 116) (name "Net-(D15-Pad9)")
      (node (ref U9) (pin 11))
      (node (ref D15) (pin 9)))
    (net (code 117) (name "Net-(D15-Pad12)")
      (node (ref U9) (pin 12))
      (node (ref D15) (pin 12)))
    (net (code 118) (name "Net-(D16-Pad12)")
      (node (ref D16) (pin 12))
      (node (ref U9) (pin 16)))
    (net (code 119) (name "Net-(D16-Pad9)")
      (node (ref D16) (pin 9))
      (node (ref U9) (pin 15)))
    (net (code 120) (name "Net-(D16-Pad8)")
      (node (ref D16) (pin 8))
      (node (ref U9) (pin 14)))
    (net (code 121) (name "Net-(D16-Pad6)")
      (node (ref D16) (pin 6))
      (node (ref U9) (pin 13)))
    (net (code 122) (name "Net-(D17-Pad6)")
      (node (ref D17) (pin 6))
      (node (ref U9) (pin 17)))
    (net (code 123) (name "Net-(D17-Pad8)")
      (node (ref U9) (pin 18))
      (node (ref D17) (pin 8)))
    (net (code 124) (name "Net-(D17-Pad9)")
      (node (ref D17) (pin 9))
      (node (ref U9) (pin 19)))
    (net (code 125) (name "Net-(D17-Pad12)")
      (node (ref U9) (pin 20))
      (node (ref D17) (pin 12)))
    (net (code 126) (name "Net-(R40-Pad2)")
      (node (ref R41) (pin 2))
      (node (ref R40) (pin 2))
      (node (ref U9) (pin 23)))
    (net (code 127) (name "Net-(D14-Pad9)")
      (node (ref D14) (pin 9))
      (node (ref U9) (pin 7)))
    (net (code 128) (name "Net-(D14-Pad12)")
      (node (ref U9) (pin 8))
      (node (ref D14) (pin 12)))
    (net (code 129) (name "Net-(D15-Pad6)")
      (node (ref U9) (pin 9))
      (node (ref D15) (pin 6)))
    (net (code 130) (name "Net-(D14-Pad6)")
      (node (ref U9) (pin 5))
      (node (ref D14) (pin 6)))
    (net (code 131) (name "Net-(D14-Pad8)")
      (node (ref U9) (pin 6))
      (node (ref D14) (pin 8)))))