aboutsummaryrefslogtreecommitdiff
path: root/docs/hardware/hardware.kicad_sch
blob: 6d2b9d4040f871915f08bd51592776d8570c2e93 (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
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
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8)

  (paper "A4")

  (lib_symbols
    (symbol "Connector_Audio:AudioJack2" (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 0 8.89 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "AudioJack2" (at 0 6.35 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Audio Jack, 2 Poles (Mono / TS)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Jack*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "AudioJack2_0_1"
        (rectangle (start -3.81 0) (end -2.54 -2.54)
          (stroke (width 0.254) (type default))
          (fill (type outline))
        )
        (rectangle (start -2.54 3.81) (end 2.54 -2.54)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0.635 -0.635)
            (xy 1.27 0)
            (xy 2.54 0)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 2.54)
            (xy -0.635 2.54)
            (xy -0.635 0)
            (xy -1.27 -0.635)
            (xy -1.905 0)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "AudioJack2_1_1"
        (pin passive line (at 5.08 2.54 180) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "S" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 0 180) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "T" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_02x04_Top_Bottom" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J7" (at 1.27 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x04_Top_Bottom" (at 1.27 5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x04, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x04_Top_Bottom_1_1"
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 3.81) (end 3.81 -6.35)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (pin output line (at -5.08 2.54 0) (length 3.81)
          (name "UP" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at -5.08 0 0) (length 3.81)
          (name "DOWN" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at -5.08 -2.54 0) (length 3.81)
          (name "LEFT" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 -5.08 0) (length 3.81)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 2.54 180) (length 3.81)
          (name "RIGHT" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 0 180) (length 3.81)
          (name "PRIMARY" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 -2.54 180) (length 3.81)
          (name "SECONDARY" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_02x06_Top_Bottom" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 1.27 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x06_Top_Bottom" (at 1.27 -10.16 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x06, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x06_Top_Bottom_1_1"
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 6.35) (end 3.81 -8.89)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -2.54 180) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -7.62 180) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 5.08 180) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 2.54 180) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 0 180) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "MCU_Module:Arduino_UNO_R3" (in_bom yes) (on_board yes)
      (property "Reference" "A" (at -10.16 23.495 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Value" "Arduino_UNO_R3" (at 5.08 -26.67 0)
        (effects (font (size 1.27 1.27)) (justify left top))
      )
      (property "Footprint" "Module:Arduino_UNO_R3" (at 0 0 0)
        (effects (font (size 1.27 1.27) italic) hide)
      )
      (property "Datasheet" "https://www.arduino.cc/en/Main/arduinoBoardUno" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "Arduino UNO R3 Microcontroller Module Atmel AVR USB" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Arduino UNO Microcontroller Module, release 3" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Arduino*UNO*R3*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Arduino_UNO_R3_0_1"
        (rectangle (start -10.16 22.86) (end 10.16 -25.4)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
      )
      (symbol "Arduino_UNO_R3_1_1"
        (pin no_connect line (at -10.16 -20.32 0) (length 2.54) hide
          (name "NC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
          (name "A1" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
          (name "A2" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
          (name "A3" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
          (name "SDA/A4" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
          (name "SCL/A5" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 15.24 0) (length 2.54)
          (name "D0/RX" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 12.7 0) (length 2.54)
          (name "D1/TX" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 10.16 0) (length 2.54)
          (name "D2" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 7.62 0) (length 2.54)
          (name "D3" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 5.08 0) (length 2.54)
          (name "D4" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 10.16 180) (length 2.54)
          (name "IOREF" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 2.54 0) (length 2.54)
          (name "D5" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 0 0) (length 2.54)
          (name "D6" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
          (name "D7" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
          (name "D8" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
          (name "D9" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -10.16 0) (length 2.54)
          (name "D10" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -12.7 0) (length 2.54)
          (name "D11" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -15.24 0) (length 2.54)
          (name "D12" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -17.78 0) (length 2.54)
          (name "D13" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 -27.94 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 15.24 180) (length 2.54)
          (name "~{RESET}" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 5.08 180) (length 2.54)
          (name "AREF" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -17.78 180) (length 2.54)
          (name "SDA/A4" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -20.32 180) (length 2.54)
          (name "SCL/A5" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 2.54 25.4 270) (length 2.54)
          (name "3V3" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 5.08 25.4 270) (length 2.54)
          (name "+5V" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -27.94 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -27.94 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 25.4 270) (length 2.54)
          (name "VIN" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 0 180) (length 2.54)
          (name "A0" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Switch:SW_Push_SPDT" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "SW" (at 0 4.318 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "SW_Push_SPDT" (at 0 -5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "switch single-pole double-throw spdt ON-ON" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Momentary Switch, single pole double throw" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SW_Push_SPDT_0_0"
        (circle (center -2.032 0) (radius 0.508)
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.016)
            (xy 0 3.048)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (circle (center 2.032 -2.54) (radius 0.508)
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "SW_Push_SPDT_0_1"
        (polyline
          (pts
            (xy -1.524 0.254)
            (xy 2.54 2.032)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (circle (center 2.032 2.54) (radius 0.508)
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "SW_Push_SPDT_1_1"
        (pin passive line (at 5.08 2.54 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 -2.54 180) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "VCC" (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "VCC_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "VCC_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 226.06 40.64) (diameter 0) (color 0 0 0 0)
    (uuid 017fc757-77df-4b6c-8101-511dcdb97a28)
  )
  (junction (at 182.88 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 0c233170-6154-4f79-acdf-3beff8462c46)
  )
  (junction (at 107.95 57.15) (diameter 0) (color 0 0 0 0)
    (uuid 187f32a7-5614-462c-84d1-e820dde3c496)
  )
  (junction (at 138.43 57.15) (diameter 0) (color 0 0 0 0)
    (uuid 2174cb6b-c79f-4d1c-96d8-b1adb3b7338d)
  )
  (junction (at 43.18 72.39) (diameter 0) (color 0 0 0 0)
    (uuid 28058d45-2416-4bed-894d-3b8746e17ac3)
  )
  (junction (at 198.12 57.15) (diameter 0) (color 0 0 0 0)
    (uuid 6a1708f3-813e-401c-b56f-c8f3202ae3ee)
  )
  (junction (at 182.88 40.64) (diameter 0) (color 0 0 0 0)
    (uuid 85f57cc9-0615-4399-bcd6-7eddba943091)
  )
  (junction (at 138.43 46.99) (diameter 0) (color 0 0 0 0)
    (uuid 8e37b9b4-e2c5-440a-907e-32c8e287d602)
  )
  (junction (at 226.06 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 92660bf0-e238-491d-b145-d29ffae46cfb)
  )
  (junction (at 127 57.15) (diameter 0) (color 0 0 0 0)
    (uuid f9346bcf-bcee-4066-9d7e-5f218a6106bc)
  )

  (wire (pts (xy 195.58 35.56) (xy 198.12 35.56))
    (stroke (width 0) (type default))
    (uuid 16285005-f8b0-46e4-8909-077c4ab4000d)
  )
  (wire (pts (xy 138.43 57.15) (xy 138.43 55.88))
    (stroke (width 0) (type default))
    (uuid 18f87e4d-7d47-4be2-8b86-ac34c86eeddc)
  )
  (wire (pts (xy 195.58 26.67) (xy 195.58 35.56))
    (stroke (width 0) (type default))
    (uuid 2dd41dc3-6917-4de7-a1d0-4ca3bf5d20dd)
  )
  (wire (pts (xy 87.63 57.15) (xy 91.44 57.15))
    (stroke (width 0) (type default))
    (uuid 33605525-db96-4fc4-83db-762a9917be6a)
  )
  (wire (pts (xy 127 57.15) (xy 127 62.23))
    (stroke (width 0) (type default))
    (uuid 3635d179-f84b-4254-a3d9-74230330d7ca)
  )
  (wire (pts (xy 137.16 46.99) (xy 138.43 46.99))
    (stroke (width 0) (type default))
    (uuid 37b0f2c3-b47b-4fa0-91c8-f959a6123d1a)
  )
  (wire (pts (xy 182.88 57.15) (xy 198.12 57.15))
    (stroke (width 0) (type default))
    (uuid 3d78f865-b244-4467-85a5-f134a6fe7a8b)
  )
  (wire (pts (xy 107.95 57.15) (xy 107.95 63.5))
    (stroke (width 0) (type default))
    (uuid 441703d7-220a-4fd3-842e-3e872a353b0f)
  )
  (wire (pts (xy 226.06 29.21) (xy 226.06 40.64))
    (stroke (width 0) (type default))
    (uuid 46da50f0-86f5-4f8b-8cc1-b68830c8a1ff)
  )
  (wire (pts (xy 138.43 48.26) (xy 138.43 46.99))
    (stroke (width 0) (type default))
    (uuid 4b12ac7b-e0d9-45b4-940d-e5c4a5788c9f)
  )
  (wire (pts (xy 182.88 40.64) (xy 182.88 52.07))
    (stroke (width 0) (type default))
    (uuid 4b2f3238-b398-4e80-838a-331b52023870)
  )
  (wire (pts (xy 210.82 38.1) (xy 215.9 38.1))
    (stroke (width 0) (type default))
    (uuid 59e2d274-24b2-47fa-8f47-53e2ab0fda23)
  )
  (wire (pts (xy 226.06 52.07) (xy 226.06 57.15))
    (stroke (width 0) (type default))
    (uuid 5cf4aa55-4455-46f5-82c0-5db19b73e33e)
  )
  (wire (pts (xy 193.04 26.67) (xy 195.58 26.67))
    (stroke (width 0) (type default))
    (uuid 634224c9-593e-41b3-a370-f705023e5f8a)
  )
  (wire (pts (xy 193.04 49.53) (xy 195.58 49.53))
    (stroke (width 0) (type default))
    (uuid 66f07918-b60a-4d82-8420-6146f8b39e02)
  )
  (wire (pts (xy 43.18 72.39) (xy 45.72 72.39))
    (stroke (width 0) (type default))
    (uuid 67585fc4-1a0d-45fc-9249-65b53731debd)
  )
  (wire (pts (xy 195.58 49.53) (xy 195.58 40.64))
    (stroke (width 0) (type default))
    (uuid 6b60a3c2-f6e1-4ace-b7a4-4ccfedb6e858)
  )
  (wire (pts (xy 138.43 57.15) (xy 147.32 57.15))
    (stroke (width 0) (type default))
    (uuid 7002e2ec-74e0-4dab-931f-b453f446fdc0)
  )
  (wire (pts (xy 226.06 40.64) (xy 226.06 52.07))
    (stroke (width 0) (type default))
    (uuid 708add04-a0ad-477d-88ab-3d568f232188)
  )
  (wire (pts (xy 213.36 26.67) (xy 215.9 26.67))
    (stroke (width 0) (type default))
    (uuid 7474c9f5-01bd-4d96-9b62-a478f4ef2f1e)
  )
  (wire (pts (xy 147.32 46.99) (xy 138.43 46.99))
    (stroke (width 0) (type default))
    (uuid 7d445739-65e9-43b3-8322-97804387d87c)
  )
  (wire (pts (xy 198.12 57.15) (xy 198.12 43.18))
    (stroke (width 0) (type default))
    (uuid 838a072b-9433-4f63-8059-2081eb86fdb5)
  )
  (wire (pts (xy 226.06 57.15) (xy 198.12 57.15))
    (stroke (width 0) (type default))
    (uuid 8ffb4e9e-de79-4da4-a3f1-28ecd5e83532)
  )
  (wire (pts (xy 210.82 40.64) (xy 213.36 40.64))
    (stroke (width 0) (type default))
    (uuid 9332cd63-0939-4078-952d-dc42c307505c)
  )
  (wire (pts (xy 213.36 35.56) (xy 213.36 26.67))
    (stroke (width 0) (type default))
    (uuid a02b477d-fc3e-4971-8eb6-17b7f0747d27)
  )
  (wire (pts (xy 115.57 36.83) (xy 133.35 36.83))
    (stroke (width 0) (type default))
    (uuid a5a8d692-848a-403e-b59a-4ea817b451e5)
  )
  (wire (pts (xy 124.46 46.99) (xy 129.54 46.99))
    (stroke (width 0) (type default))
    (uuid b056940d-08b7-4eb9-8d4f-941533d27271)
  )
  (wire (pts (xy 210.82 35.56) (xy 213.36 35.56))
    (stroke (width 0) (type default))
    (uuid b3c991cf-7539-49ea-9ec6-d5aa942a4e2d)
  )
  (wire (pts (xy 40.64 72.39) (xy 43.18 72.39))
    (stroke (width 0) (type default))
    (uuid c0efcef6-b4d4-4f7d-bbfa-70da3e407b4f)
  )
  (wire (pts (xy 195.58 40.64) (xy 198.12 40.64))
    (stroke (width 0) (type default))
    (uuid c1ccb75d-fe3a-46ba-8728-27d04d458fa3)
  )
  (wire (pts (xy 127 57.15) (xy 138.43 57.15))
    (stroke (width 0) (type default))
    (uuid c34692e8-e9c5-4e2b-a88a-b5369411831d)
  )
  (wire (pts (xy 213.36 40.64) (xy 213.36 49.53))
    (stroke (width 0) (type default))
    (uuid c37f5489-40eb-4066-87d8-f6cf6394b826)
  )
  (wire (pts (xy 213.36 49.53) (xy 215.9 49.53))
    (stroke (width 0) (type default))
    (uuid ca7a208b-a3bd-40b8-bfc3-1729de7d952e)
  )
  (wire (pts (xy 107.95 57.15) (xy 111.76 57.15))
    (stroke (width 0) (type default))
    (uuid d064f681-efb4-4435-86f9-1f13b6b2bd3a)
  )
  (wire (pts (xy 182.88 29.21) (xy 182.88 40.64))
    (stroke (width 0) (type default))
    (uuid d279f584-fb21-473a-b4d3-4624732a578a)
  )
  (wire (pts (xy 182.88 52.07) (xy 182.88 57.15))
    (stroke (width 0) (type default))
    (uuid d42f40c0-02c2-4b83-a24f-eca4bf013e7f)
  )
  (wire (pts (xy 193.04 38.1) (xy 198.12 38.1))
    (stroke (width 0) (type default))
    (uuid d445f0f7-2aab-4e79-98e1-8360cf8d3a7b)
  )
  (wire (pts (xy 147.32 57.15) (xy 147.32 49.53))
    (stroke (width 0) (type default))
    (uuid d6fe7fd7-07cb-4b0e-b3fc-5762e8fbe616)
  )
  (wire (pts (xy 87.63 57.15) (xy 87.63 62.23))
    (stroke (width 0) (type default))
    (uuid e31c03ce-f409-4173-851d-158a3ce3f417)
  )
  (wire (pts (xy 104.14 57.15) (xy 107.95 57.15))
    (stroke (width 0) (type default))
    (uuid f8885bb5-7050-4b23-af4c-f7697c057416)
  )
  (wire (pts (xy 64.77 36.83) (xy 82.55 36.83))
    (stroke (width 0) (type default))
    (uuid f9db127e-de5f-40c0-83b0-43004a7b3d65)
  )
  (wire (pts (xy 124.46 57.15) (xy 127 57.15))
    (stroke (width 0) (type default))
    (uuid fc704422-e8f0-485b-a194-0746bf18debc)
  )

  (global_label "GP_P2_LEFT" (shape input) (at 133.35 29.21 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 07ee05cd-2cfe-4e95-894a-1d90597b1926)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 119.2562 29.21 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_LEFT" (shape input) (at 30.48 41.91 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 14e32e16-ceee-47a1-a847-d5e34570375c)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 16.3862 41.91 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_BUT_2" (shape input) (at 95.25 31.75 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 17cb1049-d8f8-4432-a5e3-536077b0511b)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 110.8557 31.75 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P1_RIGHT" (shape input) (at 30.48 46.99 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2850c16b-a7bc-4159-a2ba-39fc9ebc9588)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 15.1766 46.99 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_DOWN" (shape input) (at 30.48 34.29 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2e8dfc71-e19b-44b8-a5a0-3e7ac7e5bec9)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 15.2371 34.29 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "PPU_VRAM_WEN" (shape input) (at 30.48 49.53 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 30ce39a3-1074-4a0f-8f19-94098776eb97)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 12.939 49.53 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_BUT_1" (shape input) (at 30.48 39.37 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 328ece25-0a4f-4af5-a9a4-21595efa821c)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 14.8743 39.37 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_RIGHT" (shape input) (at 82.55 34.29 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 32bda99c-ae4d-4b9c-8179-066f3a3468f6)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 67.2466 34.29 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P2_DOWN" (shape input) (at 55.88 44.45 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 36395b6b-6247-42d6-abf7-276dbb7e5a3b)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 71.1229 44.45 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_RIGHT" (shape input) (at 55.88 57.15 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 4fd85424-32a9-4cc4-919e-98f9238ebe90)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 71.1834 57.15 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_LEFT" (shape input) (at 55.88 52.07 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 52c8ce92-fb46-4507-8357-4efdfaa29aa6)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 69.9738 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_UP" (shape input) (at 133.35 31.75 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 53fd3333-ae47-4955-abf3-c321bc82554b)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 120.889 31.75 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_LEFT" (shape input) (at 82.55 29.21 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5db46339-17ed-46d7-837a-c971db03a990)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 68.4562 29.21 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_UP" (shape input) (at 82.55 31.75 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6088b30b-cded-4934-a067-a0d96ef62981)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 70.089 31.75 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SPI_CLK" (shape input) (at 91.44 52.07 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8004fd75-c5f3-47c9-b252-91cf505302f3)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 80.9142 52.07 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_BUT_1" (shape input) (at 95.25 29.21 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 846511d3-01ef-46ec-9812-b1d57f483244)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 110.8557 29.21 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SPI_MOSI" (shape input) (at 30.48 57.15 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8509abfe-1aad-475b-b8cf-5c88d9b7fba0)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.9261 57.15 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P1_UP" (shape input) (at 30.48 44.45 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8844ef2e-5494-47e0-8069-e8b9f2e6ed93)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.019 44.45 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P2_DOWN" (shape input) (at 146.05 34.29 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 8c703da6-5cbe-482c-8520-3b3d06e4dd10)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 161.2929 34.29 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_UP" (shape input) (at 55.88 54.61 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a22c2b5f-cc4b-49ec-84de-38529bf46060)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 68.341 54.61 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P1_DOWN" (shape input) (at 95.25 34.29 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid aa8f6c1f-d1f2-46d8-b1cb-d151fe665499)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 110.4929 34.29 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_RIGHT" (shape input) (at 133.35 34.29 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid be612968-9ba8-45ae-9575-ee5e47f785c3)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 118.0466 34.29 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P2_BUT_1" (shape input) (at 55.88 49.53 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c024401d-0c7a-458a-8c04-65cfb587eb37)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 71.4857 49.53 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P1_BUT_2" (shape input) (at 30.48 36.83 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c36a2fe1-dfdd-4405-9f3a-e16ae182e656)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 14.8743 36.83 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SPI_MOSI" (shape input) (at 91.44 49.53 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c4f0a690-21fd-4d70-ba1b-8b23f6dcc364)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.8861 49.53 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "PPU_VRAM_WEN" (shape input) (at 91.44 46.99 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c786c23b-7648-4838-a747-4b793feda3f2)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.899 46.99 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SPI_CLK" (shape input) (at 30.48 62.23 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid cf66c093-1ca9-4057-8bbd-aeeb66852a40)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.9542 62.23 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "GP_P2_BUT_2" (shape input) (at 55.88 46.99 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid de31afbd-8c8e-4a68-9666-fb52c877d713)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 71.4857 46.99 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_BUT_2" (shape input) (at 146.05 31.75 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f05f290c-daf7-4c98-906e-7b236d4b8653)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 161.6557 31.75 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "GP_P2_BUT_1" (shape input) (at 146.05 29.21 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f99f4681-dfb1-423f-9e0b-3294db075677)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 161.6557 29.21 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )

  (symbol (lib_id "power:GND") (at 127 62.23 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 07a3f9f8-a4fe-4dc9-b155-663dc89e5351)
    (property "Reference" "#PWR06" (at 127 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 127 67.31 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 127 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 127 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 11696d94-3c2b-413f-b2b8-45f794bb0d41))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR06") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 220.98 29.21 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 1425e690-937f-4e6f-9aa7-93a468f68098)
    (property "Reference" "SW4" (at 227.33 27.94 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "PRIMARY" (at 227.33 30.48 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 220.98 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 220.98 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cbe0f2fd-50db-4cda-afe2-ec23b98d2e0e))
    (pin "2" (uuid 1a04a8e6-e186-446c-985c-9620503c3628))
    (pin "3" (uuid 658047e0-2e7b-4456-8680-b56f739dca33))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW4") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:VCC") (at 115.57 36.83 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 190ea082-a167-468b-be96-f00a070abef8)
    (property "Reference" "#PWR02" (at 115.57 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (at 115.57 33.02 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 115.57 36.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 115.57 36.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9cee4e76-5722-4422-b58a-bd840d5005e2))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR02") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:VCC") (at 45.72 19.05 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 2ab8ad00-5e03-4a40-8048-e1262a6f3554)
    (property "Reference" "#PWR04" (at 45.72 22.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (at 45.72 15.24 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 45.72 19.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 45.72 19.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 76c67077-020f-47c1-892e-bc1fbd6f51b7))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR04") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Audio:AudioJack2") (at 152.4 49.53 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 3e67b72a-3d20-484f-a9eb-aef187654a16)
    (property "Reference" "J2" (at 157.48 48.26 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "AudioJack2" (at 157.48 50.8 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Connector_Audio:Jack_3.5mm_CUI_SJ1-3523N_Horizontal" (at 152.4 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 152.4 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "S" (uuid 5f04d31a-cbcd-498b-825b-4ee78022c589))
    (pin "T" (uuid 4f82a548-61ab-412b-a5dd-82301eb87a5a))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 187.96 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 49058202-80c4-4b2d-9180-68c845d7c63f)
    (property "Reference" "SW2" (at 181.61 39.37 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "UP" (at 181.61 41.91 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 187.96 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 187.96 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 75c917b8-d48f-4299-887a-d44dec6a2791))
    (pin "2" (uuid f510a404-a5b5-4024-98a7-28ee1754fcb2))
    (pin "3" (uuid 60728475-27da-492d-9710-a7071e930ffd))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 187.96 29.21 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 4e8ff737-e950-459a-8bae-7fb76a943341)
    (property "Reference" "SW1" (at 181.61 27.94 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LEFT" (at 181.61 30.48 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 187.96 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 187.96 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1b45f9d0-4a0a-46bc-affb-b46eaed10ba7))
    (pin "2" (uuid e051424e-e575-4117-8159-4398a6176173))
    (pin "3" (uuid 5d1cffe8-fe49-484e-a063-2414a821dec0))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x04_Top_Bottom") (at 203.2 38.1 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 57478726-f67c-4db7-a7d2-98e0223f05cb)
    (property "Reference" "J3" (at 204.47 30.48 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "GAMEPAD" (at 204.47 33.02 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (at 203.2 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 203.2 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 14bc8b27-ac99-4e77-bf15-5dc5ed28a167))
    (pin "2" (uuid f9eae519-97ea-4891-8102-4efe8ec35287))
    (pin "3" (uuid dde0162a-123a-4448-a8a8-0764eb85e90f))
    (pin "4" (uuid f49c7a59-0607-4016-a413-b1ba67a02f9c))
    (pin "5" (uuid 414ec4c9-2e9d-4216-89e1-bcf4d8b3a6da))
    (pin "6" (uuid 79d181e5-b1f4-4c71-91b0-acc3d6fd4b6e))
    (pin "7" (uuid 589737b9-af36-4b0f-a581-743659f43448))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:VCC") (at 64.77 36.83 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 5b57ff66-3702-4e9e-a327-304b7fba0d00)
    (property "Reference" "#PWR01" (at 64.77 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (at 64.77 33.02 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 64.77 36.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 64.77 36.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 852b6b7b-0127-411a-8d1a-a1421396d011))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR01") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x06_Top_Bottom") (at 96.52 52.07 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 62426352-bbab-485a-87e4-f269b920c8e7)
    (property "Reference" "J1" (at 97.79 41.91 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "BASYS_JA" (at 97.79 44.45 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (at 96.52 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 96.52 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f5a57455-0c1f-49cf-88e8-c3b3fa62f8a9))
    (pin "10" (uuid 13b94941-3acf-4d1f-9043-2cc9aec33d3d))
    (pin "11" (uuid b20b1a1c-e01f-455f-82a9-b08353aa5959))
    (pin "12" (uuid e3f51584-2c56-49db-891a-b7e6ef6c7978))
    (pin "2" (uuid 158113c5-222e-4c19-adbb-e3dbc2e52c85))
    (pin "3" (uuid 222a4c3f-22a5-413e-a511-93a22d290ff4))
    (pin "4" (uuid 7b1897d1-6ae6-4d0a-848b-434672d3214f))
    (pin "5" (uuid 88131efd-bba1-4d8e-b367-5d2d71774e08))
    (pin "6" (uuid dd012096-4557-4a25-bc81-54d492e7506e))
    (pin "7" (uuid 2c9fabf5-464a-4e10-9556-d9339d87ef50))
    (pin "8" (uuid 1882b578-e1ba-4515-a3a9-916777ba95c6))
    (pin "9" (uuid c4a100c1-0b29-44c1-97a9-4f332b3962ca))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:R") (at 133.35 46.99 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 764d0f2f-e00d-4d6e-82b0-da17c8d83559)
    (property "Reference" "R1" (at 133.35 41.91 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "R" (at 133.35 44.45 90)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (at 133.35 48.768 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 133.35 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid efe7aa07-cc4f-4dd5-abcd-f0f48bd60b88))
    (pin "2" (uuid 2c5b5dcf-2ae9-4b0b-85f2-294ec807b91a))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "R1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 107.95 63.5 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 7d38a0b2-21d4-409f-9477-120c1087fb75)
    (property "Reference" "#PWR07" (at 107.95 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 107.95 68.58 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 107.95 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 107.95 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4b35c9a6-1fac-47b4-8558-16e87598963f))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR07") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:C") (at 138.43 52.07 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid 88616a98-32a9-45a4-ad80-7b1dbb105eda)
    (property "Reference" "C1" (at 142.24 51.435 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "C" (at 142.24 53.975 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_THT:C_Disc_D6.0mm_W2.5mm_P5.00mm" (at 139.3952 55.88 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 138.43 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2e4adc0b-f7e2-4883-97a8-f94df64dbd8a))
    (pin "2" (uuid 627a9eec-e532-40a5-8ac1-5cc6ea80a56c))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "C1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 220.98 40.64 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid b2bf2f45-3635-4293-9ae5-d24524b3b2e9)
    (property "Reference" "SW5" (at 227.33 39.37 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "SECONDARY" (at 227.33 41.91 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 220.98 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 220.98 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0eb9f4c7-a95f-459a-bdac-22269cd50d41))
    (pin "2" (uuid 8eb5f60d-366d-49dc-a82e-304f0da48a7d))
    (pin "3" (uuid 0a86fded-9e3b-43f6-9ab3-74f83c51d04a))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW5") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 43.18 72.39 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c74a3c7a-6884-4d0d-a270-d8883a9d1f72)
    (property "Reference" "#PWR03" (at 43.18 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 43.18 77.47 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 43.18 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 43.18 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0a6ec9fa-dd3a-4d66-8cd2-6d983f2a7f16))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR03") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 187.96 52.07 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid c89f7037-8f49-4d17-be56-039e9a29ee25)
    (property "Reference" "SW3" (at 181.61 50.8 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "RIGHT" (at 181.61 53.34 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 187.96 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 187.96 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b2d86877-acef-4117-bbcf-0e52d6de5f2b))
    (pin "2" (uuid 25e61574-83aa-4c77-9d8c-99d8798f60eb))
    (pin "3" (uuid 66357b22-b319-45eb-8c18-b1daf298be4f))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x04_Top_Bottom") (at 87.63 31.75 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid c8ada392-2138-4585-999b-9eb680392247)
    (property "Reference" "J7" (at 88.9 24.13 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "GAMEPAD_1" (at 88.9 26.67 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (at 87.63 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 87.63 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3b1950e8-3fd1-4c9b-b5cb-212e71e73ba4))
    (pin "2" (uuid 7636f1c6-dd72-4952-a97b-11f26e048819))
    (pin "3" (uuid b6c7c326-61d3-4e37-8e15-37e5fb38d4d4))
    (pin "4" (uuid 3b56cb8e-8010-4ce8-acbe-b41e677a13cf))
    (pin "5" (uuid b0ec6d61-0137-4c01-9799-bf51f63e17e6))
    (pin "6" (uuid 681f5aca-7e14-4ba7-a876-6abfb9c3dfaa))
    (pin "7" (uuid 27502e4e-648c-4e73-beec-c84a69bac873))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J7") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x04_Top_Bottom") (at 138.43 31.75 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid d5388d0e-7171-4da4-bd98-7bc38ff2fceb)
    (property "Reference" "J8" (at 139.7 24.13 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "GAMEPAD_2" (at 139.7 26.67 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (at 138.43 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 138.43 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 38862811-1999-4e87-b426-b962035829cb))
    (pin "2" (uuid a00eb1f9-cead-4284-aa09-6d9298cf98cd))
    (pin "3" (uuid 581d140d-3b95-4611-bae5-04a7562b3452))
    (pin "4" (uuid bd22137e-f042-491c-85c3-34603ebf3cd3))
    (pin "5" (uuid 534fe15f-d5eb-4678-9f91-79737e1e82e1))
    (pin "6" (uuid bf0e9788-81b4-42b9-91a6-b4066e72f2c7))
    (pin "7" (uuid d664459a-ba92-4872-821b-50af6d42974b))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J8") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Switch:SW_Push_SPDT") (at 220.98 52.07 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid dfc07b71-4ab0-4c2f-871c-5f3136d79d4b)
    (property "Reference" "SW6" (at 227.33 50.8 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "DOWN" (at 227.33 53.34 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_THT:SW_PUSH_6mm" (at 220.98 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 220.98 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3f7375af-6847-45cd-a69b-e761c350373d))
    (pin "2" (uuid 0f3874d6-a338-415c-a403-58d5e2319cf0))
    (pin "3" (uuid 8b59abd1-df30-4c9a-b19d-e60ae0ffc8f6))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "SW6") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "MCU_Module:Arduino_UNO_R3") (at 43.18 44.45 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid e037481e-1397-4cfd-9c3c-4a1e6476185d)
    (property "Reference" "A1" (at 50.2159 17.78 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "STM32F091RC" (at 50.2159 20.32 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Module:Arduino_UNO_R3" (at 43.18 44.45 0)
      (effects (font (size 1.27 1.27) italic) hide)
    )
    (property "Datasheet" "" (at 43.18 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Field4" "" (at 43.18 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c902e8ad-be50-4ecb-b6fc-1926e37722c8))
    (pin "10" (uuid bad55bf7-4110-4581-8f48-708557f4cb4e))
    (pin "11" (uuid c47a4fc3-f5d9-42c5-92c2-96a0abc96caf))
    (pin "12" (uuid 31ff4865-434f-4657-a1ef-9a28702b5332))
    (pin "13" (uuid 140275d5-df35-4e9e-9f69-758c3724e529))
    (pin "14" (uuid 58f36ab5-68cc-42fc-b690-9a654a46abcf))
    (pin "15" (uuid c1eba195-2201-49e5-a558-e2448cfca9d1))
    (pin "16" (uuid 96df3cc5-d748-40a1-9480-177028bc2060))
    (pin "17" (uuid 7633cddd-d51b-4737-979d-a2c859612d1d))
    (pin "18" (uuid 9767d4b7-03da-4d34-b0f8-340696207b88))
    (pin "19" (uuid e560d0cb-cf46-4614-96e9-e2dfaa7decce))
    (pin "2" (uuid 1b84c879-9630-49ce-8fd1-2b54290cba00))
    (pin "20" (uuid 8b5798c6-7b8b-412e-b694-69b75c2aa943))
    (pin "21" (uuid 3d341d32-ab7d-4181-887b-0ff69ffec05c))
    (pin "22" (uuid 1ba2dcf3-5732-43c4-9271-f561fe5d8343))
    (pin "23" (uuid 08464f98-bbba-4314-91cf-80786340558d))
    (pin "24" (uuid 08b039a5-606b-4567-8596-b888b4c7a36b))
    (pin "25" (uuid 63ac4b89-7d2a-4711-a415-e1705ee05c6b))
    (pin "26" (uuid a666bf30-3d2f-4c44-be8e-3136046369a4))
    (pin "27" (uuid a58c552f-1705-4dd0-be7e-00d4642283b5))
    (pin "28" (uuid 6ee36a35-eea6-405e-b0ae-c5a958ffbc23))
    (pin "29" (uuid d329a974-6a8b-4549-8858-d4f8e49886f4))
    (pin "3" (uuid b76aecba-f886-4d24-9b20-dd4fef6fed2d))
    (pin "30" (uuid a473b165-8fce-4389-b31c-d782d97a3322))
    (pin "31" (uuid 1471e8b4-c6fc-47ab-a296-7300fd0fbe8b))
    (pin "32" (uuid a256ec7f-9a23-4f6d-8f04-7d5ef741582b))
    (pin "4" (uuid e60a88e7-3e8f-49b9-89d8-93e8725db736))
    (pin "5" (uuid 4182be7b-5182-4681-bbc2-4c6469d34ba2))
    (pin "6" (uuid 2af15cc6-db4a-4c48-b1b6-e34afe957de0))
    (pin "7" (uuid 7209342b-236b-476c-b199-7d5581e7d7ce))
    (pin "8" (uuid 47375af5-74e6-4a5d-855e-897302e106af))
    (pin "9" (uuid 28c015f5-5022-445f-8de5-feec651a321f))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "A1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "power:GND") (at 87.63 62.23 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid fc17c221-25c0-4f40-b58b-a20f0652bf18)
    (property "Reference" "#PWR05" (at 87.63 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (at 87.63 67.31 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "" (at 87.63 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (at 87.63 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 00533e7a-0505-41b6-b5e2-f52df8bab4fb))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "#PWR05") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x06_Top_Bottom") (at 116.84 52.07 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
    (uuid fe7b1f01-3f0e-49f0-9674-7a7e79bae509)
    (property "Reference" "J6" (at 118.11 41.91 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "BASYS_JB" (at 118.11 44.45 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (at 116.84 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0321aaf6-2626-45de-b511-1c2c91087b99))
    (pin "10" (uuid 11e5ca94-bada-4a89-b2b6-d9765f5b5d55))
    (pin "11" (uuid ac5fa4f6-6010-4dcc-8462-358da5e50c25))
    (pin "12" (uuid 9d7dff7c-8aad-4a2c-931f-599c914e2daa))
    (pin "2" (uuid 8ce5bb99-9246-4fbe-9abf-8f171ba7f352))
    (pin "3" (uuid 57708bbd-d3ee-42ff-88bf-d06ec52afc61))
    (pin "4" (uuid 544ec910-dfdc-4194-8587-a43d3eba87cb))
    (pin "5" (uuid f533231c-f1b3-4480-a370-13b329007606))
    (pin "6" (uuid b2c0541c-11ca-4988-8ed6-1bb62a4bd970))
    (pin "7" (uuid c3fe2012-bace-4e0c-bc39-90f43c0dbfb0))
    (pin "8" (uuid f3ca51be-30ca-4489-854c-c1a5ab424533))
    (pin "9" (uuid a20764d1-5456-4ad9-8139-6029f1d9f35b))
    (instances
      (project "hardware"
        (path "/9c6bd711-93fb-4327-8ec4-bcfe43c3c3c8"
          (reference "J6") (unit 1)
        )
      )
    )
  )

  (sheet_instances
    (path "/" (page "1"))
  )
)