aboutsummaryrefslogtreecommitdiff
path: root/hardware/hardware.kicad_sch
blob: ed8ba3ad6fa3447097b8f2c7a7b9aebbd7c2d56c (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
(kicad_sch (version 20211123) (generator eeschema)

  (uuid a1545928-1195-40b9-b3c4-78f837012afb)

  (paper "A4")

  (lib_symbols
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (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" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (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) (color 0 0 0 0))
          (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 "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "RV" (id 0) (at -4.445 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "resistor variable" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Potentiometer" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_Potentiometer_0_1"
        (polyline
          (pts
            (xy 2.54 0)
            (xy 1.524 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.143 0)
            (xy 2.286 0.508)
            (xy 2.286 -0.508)
            (xy 1.143 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start 1.016 2.54) (end -1.016 -2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_Potentiometer_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R_Variable" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.54 -2.54 90)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "R_Variable" (id 1) (at -2.54 -1.27 90)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor variable potentiometer rheostat" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Variable resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_Variable_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 1.524)
            (xy 2.54 2.54)
            (xy 1.524 2.54)
            (xy 2.54 2.54)
            (xy -2.032 -2.032)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_Variable_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" (id 0) (at -10.16 23.495 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Value" "Arduino_UNO_R3" (id 1) (at 5.08 -26.67 0)
        (effects (font (size 1.27 1.27)) (justify left top))
      )
      (property "Footprint" "Module:Arduino_UNO_R3" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27) italic) hide)
      )
      (property "Datasheet" "https://www.arduino.cc/en/Main/arduinoBoardUno" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "Arduino UNO R3 Microcontroller Module Atmel AVR USB" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Arduino UNO Microcontroller Module, release 3" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Arduino*UNO*R3*" (id 6) (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) (color 0 0 0 0))
          (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 "Timer:NE555P" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -10.16 8.89 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "NE555P" (id 1) (at 2.54 8.89 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 16.51 -10.16 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "http://www.ti.com/lit/ds/symlink/ne555.pdf" (id 3) (at 21.59 -10.16 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "single timer 555" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Precision Timers, 555 compatible,  PDIP-8" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "DIP*W7.62mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "NE555P_0_0"
        (pin power_in line (at 0 -10.16 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 10.16 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "NE555P_0_1"
        (rectangle (start -8.89 -7.62) (end 8.89 7.62)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (rectangle (start -8.89 -7.62) (end 8.89 7.62)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "NE555P_1_1"
        (pin input line (at -12.7 5.08 0) (length 3.81)
          (name "TR" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 5.08 180) (length 3.81)
          (name "Q" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input inverted (at -12.7 -5.08 0) (length 3.81)
          (name "R" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 0 0) (length 3.81)
          (name "CV" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 -5.08 180) (length 3.81)
          (name "THR" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 0 180) (length 3.81)
          (name "DIS" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (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" (id 5) (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) (color 0 0 0 0))
          (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" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "VCC" (id 1) (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (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) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (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 129.54 76.2) (diameter 0) (color 0 0 0 0)
    (uuid 08453a14-9013-40ae-866b-e24a893a4970)
  )
  (junction (at 40.64 81.915) (diameter 0) (color 0 0 0 0)
    (uuid 37b27594-c35f-4f26-9829-b63bd345830f)
  )
  (junction (at 217.17 42.545) (diameter 0) (color 0 0 0 0)
    (uuid 5fcc8dc6-a6f5-4eec-b464-e40f587fbd86)
  )
  (junction (at 196.85 36.195) (diameter 0) (color 0 0 0 0)
    (uuid 89f44b29-d740-401e-a7c0-6b89bc09075e)
  )
  (junction (at 90.17 71.12) (diameter 0) (color 0 0 0 0)
    (uuid b6efb954-d7ea-4db4-8640-99a872beb328)
  )
  (junction (at 217.17 52.705) (diameter 0) (color 0 0 0 0)
    (uuid beedad85-57b3-48d4-a5b8-762bf1ae0bb8)
  )
  (junction (at 129.54 66.04) (diameter 0) (color 0 0 0 0)
    (uuid d16f8fb2-9d1f-410a-86cd-c0b76012c497)
  )

  (no_connect (at 209.55 47.625) (uuid 6d246163-ffcf-4dd4-87aa-1be8d3d72297))
  (no_connect (at 124.46 71.12) (uuid 8f669bf3-e82b-44ff-b6c4-e2a90e1acb3e))
  (no_connect (at 184.15 47.625) (uuid b25bf3fc-4b8c-470d-8309-aa0eec2b9625))
  (no_connect (at 55.88 62.23) (uuid cc4f0b33-ccfd-419b-9659-a88488fda9d5))

  (wire (pts (xy 87.63 71.12) (xy 90.17 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 062449b5-17eb-40bf-8fd8-c3da6187d593)
  )
  (wire (pts (xy 209.55 52.705) (xy 217.17 52.705))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 129546ed-2b85-41a5-b497-a28b9903df10)
  )
  (wire (pts (xy 43.18 81.915) (xy 40.64 81.915))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1d63ba5a-671a-4ee7-a188-83c2a30d489f)
  )
  (wire (pts (xy 181.61 27.305) (xy 217.17 27.305))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1eba3d89-5a1f-4d8c-8008-afdc84081042)
  )
  (wire (pts (xy 129.54 66.04) (xy 138.43 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2035b038-626c-4463-b822-6ed6b0e3e1ab)
  )
  (wire (pts (xy 55.88 64.77) (xy 53.34 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 203f4ce3-c884-42de-9cdb-aced29342910)
  )
  (wire (pts (xy 40.64 81.915) (xy 40.64 83.185))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24d2a6ff-0d9d-4e45-b537-9c50307c11dc)
  )
  (wire (pts (xy 112.395 40.005) (xy 112.395 38.735))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2ddd2b51-c056-4169-b6a6-23340e4fe354)
  )
  (wire (pts (xy 129.54 74.93) (xy 129.54 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37e24b65-62c8-4030-bef4-b6f152e26d77)
  )
  (wire (pts (xy 217.17 52.705) (xy 217.17 42.545))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37ed5b2e-016e-454c-8def-07acda9e0018)
  )
  (wire (pts (xy 97.79 38.735) (xy 97.79 40.005))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3d0c09c7-e38a-4a00-b942-2fdbe1f6dbf2)
  )
  (wire (pts (xy 184.15 42.545) (xy 181.61 42.545))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3fa169e9-81d1-4326-8df0-4b0813f29a1d)
  )
  (wire (pts (xy 127 38.735) (xy 127 40.005))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 49c1c4f0-cf9a-4997-982f-1293c7f8c3d1)
  )
  (wire (pts (xy 129.54 76.2) (xy 124.46 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5c0709c6-fa7b-425f-83dc-985f6292cac0)
  )
  (wire (pts (xy 38.1 81.915) (xy 38.1 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 647c6174-7deb-4ad8-96e7-deb972c4e5c3)
  )
  (wire (pts (xy 90.17 71.12) (xy 90.17 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 67a546fb-10ad-45e7-a821-0eefc36c2539)
  )
  (wire (pts (xy 40.64 81.915) (xy 38.1 81.915))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 68ae6a90-da1d-4a78-b312-7227cb5695d9)
  )
  (wire (pts (xy 124.46 66.04) (xy 129.54 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7689cb57-58ce-4d82-9c52-227210256081)
  )
  (wire (pts (xy 55.88 57.15) (xy 53.34 57.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 777373b6-39b2-4574-afde-52150cdad405)
  )
  (wire (pts (xy 84.455 66.04) (xy 99.06 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 79420b29-3760-4f9d-800d-9461e70576db)
  )
  (wire (pts (xy 55.88 54.61) (xy 53.34 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e895bde-8d5a-40b7-9647-75bc017e128c)
  )
  (wire (pts (xy 96.52 38.735) (xy 97.79 38.735))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8962e7ad-2cf5-4b48-92f6-f7dc23843804)
  )
  (wire (pts (xy 125.73 38.735) (xy 127 38.735))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9fcefa51-bdc7-4659-a05d-e58513b2152d)
  )
  (wire (pts (xy 150.495 40.005) (xy 153.035 40.005))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid aa531aa9-a77a-49b0-b1dc-f96d3eec3bc5)
  )
  (wire (pts (xy 55.88 59.69) (xy 53.34 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid acf81f41-e953-4bf3-a109-1c59a82f6fa5)
  )
  (wire (pts (xy 196.85 36.195) (xy 196.85 37.465))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b10b05f3-37bb-498e-b31d-3854529577a9)
  )
  (wire (pts (xy 112.395 38.735) (xy 111.125 38.735))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b17c6209-2716-496e-a85f-8216d02fb115)
  )
  (wire (pts (xy 217.17 27.305) (xy 217.17 42.545))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b403ab6d-dc62-41b5-82f0-457fb3de1c23)
  )
  (wire (pts (xy 90.17 71.12) (xy 99.06 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ba6066f7-4c6e-404b-a0ec-f21f92be13d9)
  )
  (wire (pts (xy 43.18 80.01) (xy 43.18 81.915))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bc963c53-639d-4010-b5f2-240b3ece2447)
  )
  (wire (pts (xy 53.34 62.23) (xy 55.88 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce4ba6fd-3071-4764-967a-ee436749fde0)
  )
  (wire (pts (xy 181.61 42.545) (xy 181.61 27.305))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d76e44ec-fd0b-417b-bb79-3b25ddc4241b)
  )
  (wire (pts (xy 129.54 66.04) (xy 129.54 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd5a7337-837a-41d9-8bdf-af2462189290)
  )
  (wire (pts (xy 40.64 80.01) (xy 40.64 81.915))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ef0e1423-0384-45bb-a4c4-a0a734e42a5f)
  )
  (wire (pts (xy 196.85 34.925) (xy 196.85 36.195))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f651eb1d-6032-4461-a4c6-b3851a4abb2c)
  )
  (wire (pts (xy 55.88 52.07) (xy 53.34 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ff86d4a9-3ed1-49ff-b332-47f615b32b3a)
  )

  (text "555 RCO\n" (at 179.705 60.325 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 1641185a-e805-403b-b872-eb3450148cc8)
  )
  (text "Keyboard simulator" (at 151.13 46.355 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 93afe5b9-ac56-4aea-8798-699080b634cf)
  )
  (text "555 VCO\n" (at 74.93 86.995 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a57a044f-1e0a-4f57-b98f-7a871f824575)
  )
  (text "Arduino Inputs" (at 85.09 26.035 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid e681df62-d41e-4f17-b2e9-7b3665eb7d10)
  )

  (global_label "POT_REL" (shape input) (at 55.88 54.61 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1dce7b9d-4f2a-4eaf-92bf-fbc13310290c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 66.276 54.5306 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "KB_IN" (shape input) (at 87.63 71.12 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 32bd6656-1052-42ab-8a0a-6d97cd8ec8d4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 79.774 71.0406 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "POT_WAV" (shape output) (at 127 40.005 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4131e493-fd85-4780-9149-7044c901e974)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.9206 50.5824 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "POT_ATK" (shape output) (at 97.79 40.005 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 451ab36f-6caa-4aec-8bf6-8cd617dfe2bc)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 97.7106 50.28 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "KB_IN" (shape output) (at 153.035 40.005 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 52bb253e-2fc8-4be9-a67a-eb039f698bc3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 160.891 39.9256 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "POT_ATK" (shape input) (at 55.88 52.07 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 585819ae-ea97-462d-b721-ee07b43ece32)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 66.155 51.9906 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "POT_REL" (shape output) (at 112.395 40.005 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9d5d6304-dc42-4a50-a223-78675b49bb36)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.3156 50.401 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "KB_IN" (shape input) (at 55.88 59.69 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a23c704e-cf1d-4079-ad48-e433a8ff6f02)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.736 59.6106 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "POT_WAV" (shape input) (at 55.88 57.15 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid abcba4f1-6f59-48a1-8ae5-91c9b3b973a4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 66.4574 57.0706 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "AUDIO_OUT" (shape output) (at 55.88 64.77 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b817450e-6b27-4189-817d-6368469ba5d9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 68.5136 64.6906 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "555_OUT" (shape output) (at 138.43 66.04 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c15ac94f-af7d-493c-bcaa-94149ccacdc5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 149.0679 65.9606 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 146.685 40.005 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 030ef28a-29d4-4f58-92e8-740bf14ab01d)
    (property "Reference" "RV4" (id 0) (at 144.145 38.7349 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" ">10k" (id 1) (at 144.145 41.2749 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 146.685 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 146.685 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bca4b51f-7877-4161-8997-7e44cb244d10))
    (pin "2" (uuid 80554289-e012-44b6-9f20-e48a343f410d))
    (pin "3" (uuid d0d3dbd9-f95b-4a8c-b651-c68c3d7898e1))
  )

  (symbol (lib_id "power:GND") (at 92.71 42.545 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 091e562c-65c9-4ad8-93f4-5ada3d9f87e0)
    (property "Reference" "#PWR?" (id 0) (at 92.71 48.895 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 92.71 46.99 0))
    (property "Footprint" "" (id 2) (at 92.71 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 92.71 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fc91b85c-1b29-4a6f-93ab-92c71ab43c46))
  )

  (symbol (lib_id "Device:C") (at 80.645 66.04 90) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 09a447ea-a474-464d-93b1-2e75823d2422)
    (property "Reference" "C2" (id 0) (at 80.645 58.7375 90))
    (property "Value" "10" (id 1) (at 80.645 61.2775 90))
    (property "Footprint" "" (id 2) (at 84.455 67.0052 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 80.645 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 701cc400-8da0-41a1-8eaa-d014d4b13f12))
    (pin "2" (uuid 16120871-e072-47f7-bc6e-6f3851d08cce))
  )

  (symbol (lib_id "MCU_Module:Arduino_UNO_R3") (at 40.64 52.07 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
    (property "Reference" "A1" (id 0) (at 47.7394 24.13 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Arduino_UNO_R3" (id 1) (at 47.7394 26.67 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Module:Arduino_UNO_R3" (id 2) (at 40.64 52.07 0)
      (effects (font (size 1.27 1.27) italic) hide)
    )
    (property "Datasheet" "https://www.arduino.cc/en/Main/arduinoBoardUno" (id 3) (at 40.64 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2b25e886-ded1-450a-ada1-ece4208052e4))
    (pin "10" (uuid ffa442c7-cbef-461f-8613-c211201cec06))
    (pin "11" (uuid 456c5e47-d71e-4708-b061-1e61634d8648))
    (pin "12" (uuid 162e5bdd-61a8-46a3-8485-826b5d58e1a1))
    (pin "13" (uuid 319c683d-aed6-4e7d-aee2-ff9871746d52))
    (pin "14" (uuid 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
    (pin "15" (uuid cb1a49ef-0a06-4f40-9008-61d1d1c36198))
    (pin "16" (uuid 0f0f7bb5-ade7-4a81-82b4-43be6a8ad05c))
    (pin "17" (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861))
    (pin "18" (uuid 4346fe55-f906-453a-b81a-1c013104a598))
    (pin "19" (uuid c512fed3-9770-476b-b048-e781b4f3cd72))
    (pin "2" (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa))
    (pin "20" (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
    (pin "21" (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a))
    (pin "22" (uuid 0fb27e11-fde6-4a25-adbb-e9684771b369))
    (pin "23" (uuid 08ec951f-e7eb-41cf-9589-697107a98e88))
    (pin "24" (uuid 2eea20e6-112c-411a-b615-885ae773135a))
    (pin "25" (uuid 49fec31e-3712-4229-8142-b191d90a97d0))
    (pin "26" (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76))
    (pin "27" (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd))
    (pin "28" (uuid 9f969b13-1795-4747-8326-93bdc304ed56))
    (pin "29" (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6))
    (pin "3" (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec))
    (pin "30" (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be))
    (pin "31" (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b))
    (pin "32" (uuid 0e32af77-726b-4e11-9f99-2e2484ba9e9b))
    (pin "4" (uuid 8a427111-6480-4b0c-b097-d8b6a0ee1819))
    (pin "5" (uuid 152cd84e-bbed-4df5-a866-d1ab977b0966))
    (pin "6" (uuid 560d05a7-84e4-403a-80d1-f287a4032b8a))
    (pin "7" (uuid 2a4111b7-8149-4814-9344-3b8119cd75e4))
    (pin "8" (uuid a686ed7c-c2d1-4d29-9d54-727faf9fd6bf))
    (pin "9" (uuid 15189cef-9045-423b-b4f6-a763d4e75704))
  )

  (symbol (lib_id "power:GND") (at 196.85 57.785 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2415f537-fa6d-4c04-bd97-00b9f7ab939d)
    (property "Reference" "#PWR?" (id 0) (at 196.85 64.135 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 196.85 62.865 0))
    (property "Footprint" "" (id 2) (at 196.85 57.785 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 196.85 57.785 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b75ad8c5-9f55-49ef-9af8-7ab1b11ab9d4))
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 92.71 38.735 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2d38429c-e76f-4ac3-a609-eca610b831a6)
    (property "Reference" "RV1" (id 0) (at 90.17 38.7349 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "R_Potentiometer" (id 1) (at 90.17 40.0049 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
    (property "Footprint" "" (id 2) (at 92.71 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 92.71 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e0ffc4a5-acee-444d-9091-cb09a2fd596a))
    (pin "2" (uuid f134941f-402d-4f04-97df-414bfbe64c0c))
    (pin "3" (uuid fdf155ae-2657-450d-a1b7-efa45b1ac51f))
  )

  (symbol (lib_id "power:GND") (at 76.835 66.04 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2dce8d50-eb60-4788-92c6-d523a3ac6411)
    (property "Reference" "#PWR?" (id 0) (at 76.835 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 76.835 71.12 0))
    (property "Footprint" "" (id 2) (at 76.835 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.835 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid beb118ab-2056-488a-a254-e5c063d48b06))
  )

  (symbol (lib_id "power:GND") (at 40.64 83.185 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 365e72a4-b4a8-42c1-ba94-eb0f9c9fd3ff)
    (property "Reference" "#PWR?" (id 0) (at 40.64 89.535 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 40.64 87.63 0))
    (property "Footprint" "" (id 2) (at 40.64 83.185 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 83.185 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1ed213bd-d7e6-42a0-972d-023cb692f939))
  )

  (symbol (lib_id "power:VCC") (at 196.85 34.925 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 3ae98a70-72b8-4d72-8f0c-ecef7b1ca6d6)
    (property "Reference" "#PWR?" (id 0) (at 196.85 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 200.025 30.48 0))
    (property "Footprint" "" (id 2) (at 196.85 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 196.85 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f930fa91-6adf-4e04-b42b-e0932fc06543))
  )

  (symbol (lib_id "power:GND") (at 121.92 42.545 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3cf194f2-65e6-44c9-90d0-3a06c4a81680)
    (property "Reference" "#PWR?" (id 0) (at 121.92 48.895 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 121.92 46.99 0))
    (property "Footprint" "" (id 2) (at 121.92 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 121.92 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8296ab87-8f5c-4326-a555-b6ed2ae98dfe))
  )

  (symbol (lib_id "power:VCC") (at 45.72 26.67 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 41568218-681a-410c-9bd0-ca60fb10f910)
    (property "Reference" "#PWR?" (id 0) (at 45.72 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 45.72 21.59 0))
    (property "Footprint" "" (id 2) (at 45.72 26.67 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 45.72 26.67 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 358c55a4-0ab8-494f-8b49-bc122f113c13))
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 121.92 38.735 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 47cc4dde-2b2e-4186-b492-c224faa45da5)
    (property "Reference" "RV3" (id 0) (at 119.38 38.7349 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "R_Potentiometer" (id 1) (at 119.38 40.0049 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
    (property "Footprint" "" (id 2) (at 121.92 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 121.92 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a94f1626-d578-4317-9d74-cb6864cfef66))
    (pin "2" (uuid 43b90ba3-91c3-487f-9b9a-28351c8aee5c))
    (pin "3" (uuid 25c3bcaf-5355-44c6-80f6-5a39fc38e90b))
  )

  (symbol (lib_id "power:VCC") (at 107.315 34.925 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 506d5371-8ba2-4388-8598-92d3138cf1b4)
    (property "Reference" "#PWR?" (id 0) (at 107.315 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 107.315 29.845 0))
    (property "Footprint" "" (id 2) (at 107.315 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 107.315 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 124d9163-603b-4839-ace6-3fd5affd9dd4))
  )

  (symbol (lib_id "Timer:NE555P") (at 196.85 47.625 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 582bf52d-f931-4c83-b941-f1087e1fcfee)
    (property "Reference" "U2" (id 0) (at 198.8694 34.29 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "NE555P" (id 1) (at 198.8694 36.83 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 213.36 57.785 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.ti.com/lit/ds/symlink/ne555.pdf" (id 3) (at 218.44 57.785 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f7aa75c5-0bfb-4814-b8eb-5f8a9a128aa9))
    (pin "8" (uuid 66cddf54-c141-4b9d-b300-069491227c2d))
    (pin "2" (uuid 9dffc0da-762b-42b7-80b1-72a451bb294f))
    (pin "3" (uuid a8e78b6b-5175-49a4-b7f2-c08b88186745))
    (pin "4" (uuid 5f10ab2e-0baa-42eb-b877-7c3c9e704ef3))
    (pin "5" (uuid 65fd9534-1b91-42a6-8ecd-7a42d8ae4ade))
    (pin "6" (uuid 775b50f1-c021-45e5-b4f4-3da4bfa305be))
    (pin "7" (uuid 2e7f3dd4-50ff-427a-80eb-8563e69a085c))
  )

  (symbol (lib_id "power:VCC") (at 111.76 60.96 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6e2bde36-3557-450e-b921-7aec7811cf84)
    (property "Reference" "#PWR?" (id 0) (at 111.76 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 111.76 55.88 0))
    (property "Footprint" "" (id 2) (at 111.76 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1b3cc04c-8f88-4e39-b15d-e0c4efafc2d5))
  )

  (symbol (lib_id "power:GND") (at 90.17 81.28 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6f532666-cee9-4bae-b892-46c8ec2931b2)
    (property "Reference" "#PWR?" (id 0) (at 90.17 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 90.17 86.36 0))
    (property "Footprint" "" (id 2) (at 90.17 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 90.17 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bcbd0c92-9e02-4689-b73d-64dd65e74f39))
  )

  (symbol (lib_id "power:GND") (at 189.23 36.195 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 727bb838-f866-4679-abf4-a9571f8f8978)
    (property "Reference" "#PWR?" (id 0) (at 189.23 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 186.055 36.195 0))
    (property "Footprint" "" (id 2) (at 189.23 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 189.23 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 62a648e6-0238-4535-a793-8caa6da5255d))
  )

  (symbol (lib_id "Device:C") (at 129.54 80.01 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7b59e377-eaf2-4bc6-9868-4ac0387776ca)
    (property "Reference" "C3" (id 0) (at 133.35 78.7399 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10" (id 1) (at 133.35 81.2799 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 130.5052 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 129.54 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5431e6a0-fcfc-47bc-8f0c-c74febd4c741))
    (pin "2" (uuid ca297264-cd67-4824-adb2-b3c2f94882f5))
  )

  (symbol (lib_id "power:VCC") (at 99.06 76.2 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 89247482-8b3e-43aa-9bf8-11044232e827)
    (property "Reference" "#PWR?" (id 0) (at 99.06 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 96.52 76.2 0))
    (property "Footprint" "" (id 2) (at 99.06 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 99.06 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8427d1ff-9bd5-468e-8ba1-371c45e5ea66))
  )

  (symbol (lib_id "power:VCC") (at 184.15 52.705 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 8bb2ea49-8b54-4a72-9f61-f9dccb873903)
    (property "Reference" "#PWR?" (id 0) (at 184.15 56.515 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 181.61 52.705 0))
    (property "Footprint" "" (id 2) (at 184.15 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 184.15 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3097fea7-46a7-47a9-9cae-e148c8b5c995))
  )

  (symbol (lib_id "Device:R") (at 129.54 71.12 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8bc7a607-d9e6-499f-b80c-da544e1f37a7)
    (property "Reference" "R1" (id 0) (at 132.08 69.8499 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "33k" (id 1) (at 132.08 72.3899 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 131.318 71.12 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 129.54 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 53fa107d-a47c-4f88-aa41-fee5ce99a007))
    (pin "2" (uuid 4a77cedf-081b-45a4-909e-a36b6c1a5b85))
  )

  (symbol (lib_id "power:GND") (at 129.54 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8bd66290-3e69-4a6a-8852-4b72e4f1a29a)
    (property "Reference" "#PWR?" (id 0) (at 129.54 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 129.54 88.9 0))
    (property "Footprint" "" (id 2) (at 129.54 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 129.54 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2acfbcc6-50ec-46ac-b807-ebccf0e1e964))
  )

  (symbol (lib_id "power:GND") (at 217.17 60.325 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b744e36e-566b-4224-b18a-41cbe8401bfc)
    (property "Reference" "#PWR?" (id 0) (at 217.17 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 217.17 65.405 0))
    (property "Footprint" "" (id 2) (at 217.17 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 217.17 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9f2be57b-f2b6-4741-9e66-657ce79a4cef))
  )

  (symbol (lib_id "power:VCC") (at 146.685 36.195 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bb12025c-5159-48fa-8bae-9e384d5661d4)
    (property "Reference" "#PWR?" (id 0) (at 146.685 40.005 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 146.685 30.48 0))
    (property "Footprint" "" (id 2) (at 146.685 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 146.685 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cf5fc289-f648-4b87-b433-3a697e042445))
  )

  (symbol (lib_id "power:VCC") (at 92.71 34.925 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bb70f3ba-90e5-45ab-b9f3-469277a94ba1)
    (property "Reference" "#PWR?" (id 0) (at 92.71 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 92.71 29.845 0))
    (property "Footprint" "" (id 2) (at 92.71 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 92.71 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3b6ef670-4302-41d4-8379-e213696d052f))
  )

  (symbol (lib_id "Device:C") (at 217.17 56.515 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bcc209c9-cbec-42e5-9ca5-52122fa9f318)
    (property "Reference" "C5" (id 0) (at 220.98 55.2449 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10u" (id 1) (at 220.98 57.7849 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 218.1352 60.325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 217.17 56.515 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 87945009-417b-44bf-aa50-f351d8b17c83))
    (pin "2" (uuid e35b2cda-de7c-4d93-8682-8f1518325096))
  )

  (symbol (lib_id "power:VCC") (at 121.92 34.925 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c383d752-fc09-42c1-a9f9-58fbd128a266)
    (property "Reference" "#PWR?" (id 0) (at 121.92 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 121.92 29.845 0))
    (property "Footprint" "" (id 2) (at 121.92 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 121.92 34.925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cbc2a785-4dcd-406d-9979-194ab063d94e))
  )

  (symbol (lib_id "Timer:NE555P") (at 111.76 71.12 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c8a3bad8-b631-46f3-ad1c-65cbb9e97856)
    (property "Reference" "U1" (id 0) (at 113.7794 58.42 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "NE555P" (id 1) (at 113.7794 60.96 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 128.27 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.ti.com/lit/ds/symlink/ne555.pdf" (id 3) (at 133.35 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 179b931a-ee6e-4f42-a650-8fcc15be33cf))
    (pin "8" (uuid ce1926e7-aefc-4410-8ad7-0050d6aebd28))
    (pin "2" (uuid 543a1648-5784-4e1c-9576-bc01c6ff98bf))
    (pin "3" (uuid 1c72f17e-d445-4a58-842c-0dfdfce350d3))
    (pin "4" (uuid 7bafe9bc-eba9-4810-a855-8b4f34bb53ef))
    (pin "5" (uuid 594eb499-401a-4092-9a2b-1cc8f8989e5b))
    (pin "6" (uuid 466f8d1c-c448-4a97-87ec-4e94847952fc))
    (pin "7" (uuid e8a5d0de-f294-42b4-a32d-95b01f36190d))
  )

  (symbol (lib_id "Device:R_Variable") (at 213.36 42.545 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid cea549f3-4908-4806-b11c-6b7ed73d9417)
    (property "Reference" "R9" (id 0) (at 213.36 34.925 90))
    (property "Value" "KB_R" (id 1) (at 213.36 37.465 90))
    (property "Footprint" "" (id 2) (at 213.36 40.767 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 213.36 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0990a76c-5c66-4848-854c-27bebb45191f))
    (pin "2" (uuid 7b27df6c-eff9-473d-abf5-585d52c2f296))
  )

  (symbol (lib_id "power:GND") (at 111.76 81.28 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d1df943f-6112-4f25-89ec-0b0227297131)
    (property "Reference" "#PWR?" (id 0) (at 111.76 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 111.76 86.36 0))
    (property "Footprint" "" (id 2) (at 111.76 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4937ca3a-7a04-40fa-a3fa-ce7da6a1c4a8))
  )

  (symbol (lib_id "Device:C") (at 193.04 36.195 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d9ecd9ae-ef0a-439f-b17a-557e46b82925)
    (property "Reference" "C4" (id 0) (at 193.04 29.21 90))
    (property "Value" "0.1u" (id 1) (at 193.04 31.75 90))
    (property "Footprint" "" (id 2) (at 196.85 35.2298 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 193.04 36.195 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c7c0e390-c203-4145-83d2-d45b2a38bf27))
    (pin "2" (uuid 482345a1-5db6-4976-998d-99689809f8b9))
  )

  (symbol (lib_id "power:GND") (at 107.315 42.545 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ea27d51e-f893-40b7-af48-880886ef6dad)
    (property "Reference" "#PWR?" (id 0) (at 107.315 48.895 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 107.315 46.99 0))
    (property "Footprint" "" (id 2) (at 107.315 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 107.315 42.545 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2d74f125-410d-4914-bfcd-9a74c99979df))
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 107.315 38.735 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid eaf21c07-5bbc-4870-8c01-7dc928c90978)
    (property "Reference" "RV2" (id 0) (at 104.775 38.7349 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "R_Potentiometer" (id 1) (at 104.775 40.0049 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
    (property "Footprint" "" (id 2) (at 107.315 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 107.315 38.735 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ced21847-3ae4-4fad-97d9-fb5faa9a4aa5))
    (pin "2" (uuid fbda4446-065c-4475-a831-fcd6bf6cd6cc))
    (pin "3" (uuid 7e08510d-508d-4ab4-a6b5-ea92875268f4))
  )

  (symbol (lib_id "Device:C") (at 90.17 77.47 0) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f00adab3-fe8f-4b25-bbf5-382fb14138a4)
    (property "Reference" "C1" (id 0) (at 86.36 76.1999 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100" (id 1) (at 86.36 78.7399 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 91.1352 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 90.17 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 21634401-f873-4204-9bcd-5c46acdd7645))
    (pin "2" (uuid 963547e7-ad6a-4819-b4bf-65e5dca35964))
  )

  (symbol (lib_id "power:GND") (at 146.685 43.815 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fb9ac281-071b-46bd-b8e9-da54888ef022)
    (property "Reference" "#PWR?" (id 0) (at 146.685 50.165 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 146.685 48.895 0))
    (property "Footprint" "" (id 2) (at 146.685 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 146.685 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 077bc3c1-07aa-479a-a033-5a379c795ce6))
  )

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

  (symbol_instances
    (path "/091e562c-65c9-4ad8-93f4-5ada3d9f87e0"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/2415f537-fa6d-4c04-bd97-00b9f7ab939d"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/2dce8d50-eb60-4788-92c6-d523a3ac6411"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/365e72a4-b4a8-42c1-ba94-eb0f9c9fd3ff"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/3ae98a70-72b8-4d72-8f0c-ecef7b1ca6d6"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/3cf194f2-65e6-44c9-90d0-3a06c4a81680"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/41568218-681a-410c-9bd0-ca60fb10f910"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/506d5371-8ba2-4388-8598-92d3138cf1b4"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/6e2bde36-3557-450e-b921-7aec7811cf84"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/6f532666-cee9-4bae-b892-46c8ec2931b2"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/727bb838-f866-4679-abf4-a9571f8f8978"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/89247482-8b3e-43aa-9bf8-11044232e827"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/8bb2ea49-8b54-4a72-9f61-f9dccb873903"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/8bd66290-3e69-4a6a-8852-4b72e4f1a29a"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/b744e36e-566b-4224-b18a-41cbe8401bfc"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/bb12025c-5159-48fa-8bae-9e384d5661d4"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/bb70f3ba-90e5-45ab-b9f3-469277a94ba1"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/c383d752-fc09-42c1-a9f9-58fbd128a266"
      (reference "#PWR?") (unit 1) (value "VCC") (footprint "")
    )
    (path "/d1df943f-6112-4f25-89ec-0b0227297131"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/ea27d51e-f893-40b7-af48-880886ef6dad"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/fb9ac281-071b-46bd-b8e9-da54888ef022"
      (reference "#PWR?") (unit 1) (value "GND") (footprint "")
    )
    (path "/2102c637-9f11-48f1-aae6-b4139dc22be2"
      (reference "A1") (unit 1) (value "Arduino_UNO_R3") (footprint "Module:Arduino_UNO_R3")
    )
    (path "/f00adab3-fe8f-4b25-bbf5-382fb14138a4"
      (reference "C1") (unit 1) (value "100") (footprint "")
    )
    (path "/09a447ea-a474-464d-93b1-2e75823d2422"
      (reference "C2") (unit 1) (value "10") (footprint "")
    )
    (path "/7b59e377-eaf2-4bc6-9868-4ac0387776ca"
      (reference "C3") (unit 1) (value "10") (footprint "")
    )
    (path "/d9ecd9ae-ef0a-439f-b17a-557e46b82925"
      (reference "C4") (unit 1) (value "0.1u") (footprint "")
    )
    (path "/bcc209c9-cbec-42e5-9ca5-52122fa9f318"
      (reference "C5") (unit 1) (value "10u") (footprint "")
    )
    (path "/8bc7a607-d9e6-499f-b80c-da544e1f37a7"
      (reference "R1") (unit 1) (value "33k") (footprint "")
    )
    (path "/cea549f3-4908-4806-b11c-6b7ed73d9417"
      (reference "R9") (unit 1) (value "KB_R") (footprint "")
    )
    (path "/2d38429c-e76f-4ac3-a609-eca610b831a6"
      (reference "RV1") (unit 1) (value "R_Potentiometer") (footprint "")
    )
    (path "/eaf21c07-5bbc-4870-8c01-7dc928c90978"
      (reference "RV2") (unit 1) (value "R_Potentiometer") (footprint "")
    )
    (path "/47cc4dde-2b2e-4186-b492-c224faa45da5"
      (reference "RV3") (unit 1) (value "R_Potentiometer") (footprint "")
    )
    (path "/030ef28a-29d4-4f58-92e8-740bf14ab01d"
      (reference "RV4") (unit 1) (value ">10k") (footprint "")
    )
    (path "/c8a3bad8-b631-46f3-ad1c-65cbb9e97856"
      (reference "U1") (unit 1) (value "NE555P") (footprint "Package_DIP:DIP-8_W7.62mm")
    )
    (path "/582bf52d-f931-4c83-b941-f1087e1fcfee"
      (reference "U2") (unit 1) (value "NE555P") (footprint "Package_DIP:DIP-8_W7.62mm")
    )
  )
)