-
Notifications
You must be signed in to change notification settings - Fork 0
/
Feedback.kicad_sch
1561 lines (1505 loc) · 52.3 KB
/
Feedback.kicad_sch
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
(kicad_sch (version 20221206) (generator eeschema)
(uuid 55836b33-684c-4b27-b4d5-8adcfb4b0ccb)
(paper "A4")
(title_block
(date "2022-11-20")
(rev "v1.0")
)
(lib_symbols
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 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" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 2.54)
(name "A" (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 "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (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" "+3V3" (at 0 3.556 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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (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" "power-flag" (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))))
)
)
)
)
(junction (at 57.15 78.74) (diameter 0) (color 0 0 0 0)
(uuid 228a586f-93ff-4666-9c1b-92c9aabc904a)
)
(junction (at 40.64 24.13) (diameter 0) (color 0 0 0 0)
(uuid 500044f7-898c-4d07-b63d-f1c43de8ae82)
)
(junction (at 57.15 93.98) (diameter 0) (color 0 0 0 0)
(uuid 75436b6e-f78d-4ca8-9c90-f50baaf0f412)
)
(junction (at 57.15 135.89) (diameter 0) (color 0 0 0 0)
(uuid 925778b2-1f39-4995-966a-06010f244327)
)
(junction (at 57.15 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9ba0feb4-2f15-40af-817b-835e709f8ced)
)
(junction (at 39.37 54.61) (diameter 0) (color 0 0 0 0)
(uuid a2b53a95-3b31-44cb-9c2e-097e2fbfe535)
)
(junction (at 39.37 39.37) (diameter 0) (color 0 0 0 0)
(uuid c16041a7-0fe3-49ed-a4c1-b1d61eeacaaf)
)
(junction (at 57.15 86.36) (diameter 0) (color 0 0 0 0)
(uuid c256d541-bf6f-4ae3-98bf-827e44acb048)
)
(junction (at 57.15 128.27) (diameter 0) (color 0 0 0 0)
(uuid d5073c98-0bd2-4507-bae0-d8acc58bf4cc)
)
(wire (pts (xy 57.15 120.65) (xy 57.15 128.27))
(stroke (width 0) (type default))
(uuid 03f65e70-2a7a-4409-86d2-08ead6ddf29a)
)
(polyline (pts (xy 13.97 106.68) (xy 67.31 106.68))
(stroke (width 0) (type default))
(uuid 05d0b7da-529a-46c6-a80b-8d2fab88bf51)
)
(wire (pts (xy 52.07 54.61) (xy 39.37 54.61))
(stroke (width 0) (type default))
(uuid 07001b0c-3d86-4ed1-96ed-4c59c818d253)
)
(polyline (pts (xy 67.31 163.83) (xy 13.97 163.83))
(stroke (width 0) (type default))
(uuid 09b05202-b684-4476-8072-14a9f5c0a02d)
)
(wire (pts (xy 58.42 128.27) (xy 57.15 128.27))
(stroke (width 0) (type default))
(uuid 0c16e90d-89e8-49c6-bf49-5b0eb87d38d9)
)
(wire (pts (xy 52.07 128.27) (xy 57.15 128.27))
(stroke (width 0) (type default))
(uuid 113cc6e8-bb93-4293-be69-6c4ff272b096)
)
(wire (pts (xy 52.07 78.74) (xy 57.15 78.74))
(stroke (width 0) (type default))
(uuid 14e58321-7d4c-45f1-8b1a-53f63f6ebe33)
)
(wire (pts (xy 58.42 86.36) (xy 57.15 86.36))
(stroke (width 0) (type default))
(uuid 1d8220e1-cd91-4924-afae-41ee0e0b45df)
)
(wire (pts (xy 57.15 71.12) (xy 57.15 78.74))
(stroke (width 0) (type default))
(uuid 1f5c0c75-49a8-425e-9efd-05aab31d8c18)
)
(polyline (pts (xy 13.97 64.77) (xy 13.97 105.41))
(stroke (width 0) (type default))
(uuid 20d5e232-609c-4f20-9381-a28cdf313670)
)
(wire (pts (xy 43.18 29.21) (xy 40.64 29.21))
(stroke (width 0) (type default))
(uuid 239eb007-1f29-4cbb-b7cc-361e17f6ad63)
)
(wire (pts (xy 30.48 120.65) (xy 36.83 120.65))
(stroke (width 0) (type default))
(uuid 25288336-927c-47b0-a9bf-495187314449)
)
(wire (pts (xy 43.18 44.45) (xy 39.37 44.45))
(stroke (width 0) (type default))
(uuid 31073aaa-823d-401e-9c55-5a1f17a6beb2)
)
(polyline (pts (xy 67.31 64.77) (xy 67.31 105.41))
(stroke (width 0) (type default))
(uuid 34926338-c9ac-4b25-bd8f-d0d3556950b8)
)
(wire (pts (xy 43.18 59.69) (xy 39.37 59.69))
(stroke (width 0) (type default))
(uuid 3d6a4829-9ae6-43e4-86b0-78923b6f0652)
)
(polyline (pts (xy 13.97 148.59) (xy 67.31 148.59))
(stroke (width 0) (type default))
(uuid 3d9f01e5-ae00-4797-87c2-e8b0aa2b4257)
)
(wire (pts (xy 57.15 135.89) (xy 57.15 143.51))
(stroke (width 0) (type default))
(uuid 498a13d5-06ec-41ec-9760-d8fe3ab8c7fe)
)
(polyline (pts (xy 67.31 13.97) (xy 67.31 63.5))
(stroke (width 0) (type default))
(uuid 5162f622-0e4b-4d37-a4fb-dc0f3147d540)
)
(polyline (pts (xy 67.31 105.41) (xy 13.97 105.41))
(stroke (width 0) (type default))
(uuid 54a187f2-a5fe-4f43-9120-79ca3a3e8564)
)
(wire (pts (xy 57.15 143.51) (xy 52.07 143.51))
(stroke (width 0) (type default))
(uuid 5c4306c7-5b9c-4d49-9d69-393a0147cbef)
)
(wire (pts (xy 30.48 78.74) (xy 36.83 78.74))
(stroke (width 0) (type default))
(uuid 5f3f6309-e973-40c4-91a5-53ca28a9b8b2)
)
(wire (pts (xy 30.48 135.89) (xy 36.83 135.89))
(stroke (width 0) (type default))
(uuid 6fc0e0bb-fbc1-4c36-baac-bf129683dbff)
)
(wire (pts (xy 40.64 24.13) (xy 52.07 24.13))
(stroke (width 0) (type default))
(uuid 71d87aa9-4986-4abb-875d-3d5386e2be64)
)
(wire (pts (xy 30.48 71.12) (xy 36.83 71.12))
(stroke (width 0) (type default))
(uuid 76b21db8-2d6f-45e4-b648-ceee6cc73361)
)
(polyline (pts (xy 13.97 13.97) (xy 13.97 63.5))
(stroke (width 0) (type default))
(uuid 80f2a122-77fa-42d9-b3b2-889575c52960)
)
(polyline (pts (xy 13.97 148.59) (xy 13.97 163.83))
(stroke (width 0) (type default))
(uuid 81958fb4-9a6f-41e9-9ad1-a7d8e3479e41)
)
(wire (pts (xy 55.88 157.48) (xy 52.07 157.48))
(stroke (width 0) (type default))
(uuid 82991744-beae-4cc8-8889-db1277f5660c)
)
(polyline (pts (xy 13.97 64.77) (xy 67.31 64.77))
(stroke (width 0) (type default))
(uuid 877d9f98-c586-4f37-974d-a04f442f12c6)
)
(polyline (pts (xy 13.97 106.68) (xy 13.97 147.32))
(stroke (width 0) (type default))
(uuid 92c7ec60-9969-4621-b6db-0ddb2f557093)
)
(wire (pts (xy 30.48 101.6) (xy 36.83 101.6))
(stroke (width 0) (type default))
(uuid 9553fbbb-aea4-44c4-bdc5-b69f2cf22030)
)
(wire (pts (xy 57.15 128.27) (xy 57.15 135.89))
(stroke (width 0) (type default))
(uuid 9654c1c0-c5d5-4963-9777-0f33dc752d90)
)
(wire (pts (xy 52.07 39.37) (xy 39.37 39.37))
(stroke (width 0) (type default))
(uuid 995aa2cf-c6c8-4017-ace1-3fd0abfe82ce)
)
(wire (pts (xy 57.15 86.36) (xy 57.15 93.98))
(stroke (width 0) (type default))
(uuid 9aa33b80-2f85-488a-9dbd-47dfae70e16d)
)
(polyline (pts (xy 67.31 148.59) (xy 67.31 163.83))
(stroke (width 0) (type default))
(uuid a0cf7fee-4dbb-4e89-b43e-8bdaa534128c)
)
(wire (pts (xy 39.37 59.69) (xy 39.37 54.61))
(stroke (width 0) (type default))
(uuid a1552a08-13ea-4fd6-aa1b-6549363bdc14)
)
(wire (pts (xy 52.07 120.65) (xy 57.15 120.65))
(stroke (width 0) (type default))
(uuid a33d6cd4-d936-491c-b788-01317c0fe92f)
)
(wire (pts (xy 52.07 71.12) (xy 57.15 71.12))
(stroke (width 0) (type default))
(uuid a63bea43-da30-438a-af03-8940492bf958)
)
(wire (pts (xy 57.15 113.03) (xy 57.15 120.65))
(stroke (width 0) (type default))
(uuid aa046b1e-48b8-473c-b91b-57ddf4aee3aa)
)
(wire (pts (xy 52.07 135.89) (xy 57.15 135.89))
(stroke (width 0) (type default))
(uuid aab5509b-23b6-43be-9073-547a885340f8)
)
(wire (pts (xy 29.21 157.48) (xy 36.83 157.48))
(stroke (width 0) (type default))
(uuid acd2e9c1-dfe3-400d-9729-4977553f52d7)
)
(polyline (pts (xy 13.97 13.97) (xy 67.31 13.97))
(stroke (width 0) (type default))
(uuid b0a1d0e6-d7d6-4a68-9b96-31a0efdccd2d)
)
(wire (pts (xy 57.15 93.98) (xy 57.15 101.6))
(stroke (width 0) (type default))
(uuid b3327e2b-ae36-4c0f-a18a-f51332c58156)
)
(wire (pts (xy 30.48 113.03) (xy 36.83 113.03))
(stroke (width 0) (type default))
(uuid b5fb1cd6-abbb-448b-b1d0-5801d6fe5a2e)
)
(wire (pts (xy 39.37 44.45) (xy 39.37 39.37))
(stroke (width 0) (type default))
(uuid b86ae61c-7459-4826-bcda-2c04eb6cd600)
)
(wire (pts (xy 30.48 86.36) (xy 36.83 86.36))
(stroke (width 0) (type default))
(uuid ca403b7e-de96-4a40-8f6d-e7354507dcb5)
)
(wire (pts (xy 40.64 29.21) (xy 40.64 24.13))
(stroke (width 0) (type default))
(uuid cbe4e4e0-4910-4e82-98ff-4d14047ec4d0)
)
(polyline (pts (xy 67.31 147.32) (xy 13.97 147.32))
(stroke (width 0) (type default))
(uuid cc6b4362-2c43-45ae-805e-3e80b6f095f5)
)
(wire (pts (xy 52.07 113.03) (xy 57.15 113.03))
(stroke (width 0) (type default))
(uuid cd6f6646-1950-4288-828a-2c48ee5a1dbd)
)
(wire (pts (xy 30.48 128.27) (xy 36.83 128.27))
(stroke (width 0) (type default))
(uuid d0e7253b-9d2b-47d1-b9ec-83f52fbaf1b7)
)
(polyline (pts (xy 67.31 63.5) (xy 13.97 63.5))
(stroke (width 0) (type default))
(uuid dbe4be91-419c-4933-a0da-9cd99f4fb34a)
)
(wire (pts (xy 30.48 93.98) (xy 36.83 93.98))
(stroke (width 0) (type default))
(uuid dfdae385-0cd1-4b75-8bf3-800529022a23)
)
(wire (pts (xy 57.15 101.6) (xy 52.07 101.6))
(stroke (width 0) (type default))
(uuid e1349ca8-490a-42ce-877a-572aaf938620)
)
(wire (pts (xy 52.07 86.36) (xy 57.15 86.36))
(stroke (width 0) (type default))
(uuid e462d413-9884-4617-a764-23ed8ce24c2c)
)
(wire (pts (xy 57.15 78.74) (xy 57.15 86.36))
(stroke (width 0) (type default))
(uuid e835e838-501a-494a-8870-1265356a040d)
)
(wire (pts (xy 30.48 143.51) (xy 36.83 143.51))
(stroke (width 0) (type default))
(uuid e8466718-e5da-4f80-80aa-cdd69abc21a4)
)
(wire (pts (xy 52.07 93.98) (xy 57.15 93.98))
(stroke (width 0) (type default))
(uuid f87a2c97-add4-47d7-bfc6-78792121fa8e)
)
(polyline (pts (xy 67.31 106.68) (xy 67.31 147.32))
(stroke (width 0) (type default))
(uuid fc0dbe49-fe09-4eee-bf37-e2bf9bead77f)
)
(hierarchical_label "LED_GREEN_2" (shape input) (at 30.48 113.03 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0f63b613-a2c6-41c4-9d09-24ea281a301e)
)
(hierarchical_label "LED_RED_2" (shape input) (at 30.48 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 30e790c4-d8de-4f8e-9b0b-4984421ff8d0)
)
(hierarchical_label "LED_WHITE_2" (shape input) (at 30.48 143.51 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 386f090b-dc74-4df9-8f06-77b044dd1525)
)
(hierarchical_label "SWITCH_1" (shape output) (at 52.07 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4eca94b3-bb16-4d29-b965-21ee5acfe16d)
)
(hierarchical_label "LED_BLUE_2" (shape input) (at 30.48 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 507d62c7-9005-45d1-b824-553765a78c47)
)
(hierarchical_label "LED_ORANGE_1" (shape input) (at 30.48 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5e4beb1c-8efe-4ddf-9160-65db09621e20)
)
(hierarchical_label "SWITCH_2" (shape output) (at 52.07 39.37 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6ad68f96-fbbb-49f9-a257-40004d3a4671)
)
(hierarchical_label "LED_WHITE_3" (shape input) (at 29.21 157.48 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 93c279e9-f7bd-48b5-976d-b0522bec7792)
)
(hierarchical_label "LED_ORANGE_2" (shape input) (at 30.48 128.27 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 96e375f2-0d53-4cec-8fd7-c11a371b1a06)
)
(hierarchical_label "SWITCH_3" (shape output) (at 52.07 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 99483950-fd69-4028-b5f7-ea11f472a05e)
)
(hierarchical_label "LED_GREEN_1" (shape input) (at 30.48 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aa989103-1231-43e1-90e2-05d91bf5e3c5)
)
(hierarchical_label "LED_RED_1" (shape input) (at 30.48 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aaf43cf0-df39-42c8-bae9-f19983c1dc0f)
)
(hierarchical_label "LED_WHITE_1" (shape input) (at 30.48 101.6 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d27e2647-b338-4dae-abb9-55dcecfc0ae0)
)
(hierarchical_label "LED_BLUE_1" (shape input) (at 30.48 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e52a6e31-3718-48ea-abe5-7cb27421b24f)
)
(symbol (lib_id "Device:LED") (at 48.26 157.48 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 05baab89-0100-4ce4-badd-2f7a05dc6a96)
(property "Reference" "D17" (at 49.53 154.94 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED_WHITE_3" (at 49.53 160.02 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 48.26 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 56c4f9f6-1725-40ee-a37c-2f6d3cb7ad80))
(pin "2" (uuid 82db3c4d-3d80-4478-be7e-b229659387aa))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "D17") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 30.48 24.13 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0dc37e53-1877-4203-a66f-a42e53d182ba)
(property "Reference" "#PWR0188" (at 34.29 24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 26.67 24.765 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 30.48 24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 30.48 24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 69b06891-9224-44cf-8ee5-add51246eb92))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "#PWR0188") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 55.88 157.48 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 15419467-ceef-4c67-9fb2-9b9b97f9d237)
(property "Reference" "#PWR0113" (at 62.23 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 59.69 158.115 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 55.88 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 55.88 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5dc4d7e-b09e-4b2c-aa11-d2c68869b06e))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "#PWR0113") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 48.26 78.74 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2073de83-9f65-42ce-8235-99509f04b3dd)
(property "Reference" "D9" (at 49.53 76.2 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED_RED_1" (at 49.53 81.28 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 48.26 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a42d1bb0-7c77-402e-a25a-a87a07b8b231))
(pin "2" (uuid d17f3f76-df07-41b3-a316-a5e70ab615c8))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "D9") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 40.64 157.48 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2403afd1-ac83-4f72-8519-479799591544)
(property "Reference" "R24" (at 40.64 154.94 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 40.64 157.48 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 40.64 159.258 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 40.64 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8d1945b0-55b9-445c-b74c-b3010d746420))
(pin "2" (uuid b9664a0d-5a04-418a-867f-67150f35876d))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R24") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 50.8 44.45 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2702486e-b0d7-48e1-9b65-2e257accff89)
(property "Reference" "#PWR0114" (at 57.15 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 54.61 45.085 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 50.8 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 50.8 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 48daa6e9-de78-42b8-87d4-b1a2c1dd8fe6))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "#PWR0114") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 40.64 135.89 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 28178c14-4edb-4aaa-94cc-a1dd2edc726b)
(property "Reference" "R21" (at 40.64 133.35 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 40.64 135.89 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 40.64 137.668 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 40.64 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 30c9d76e-88e7-46b8-9e8a-1216ca9101a6))
(pin "2" (uuid faccfbeb-bc87-41b2-9c46-6596f8e03b64))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R21") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 40.64 71.12 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3cf65d21-1b20-40db-910a-13f6f2e28c12)
(property "Reference" "R12" (at 40.64 68.58 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 40.64 71.12 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 40.64 72.898 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 40.64 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5ee8155a-e8bd-45f6-a9a6-7ab5d37a16ee))
(pin "2" (uuid 553fdfbe-38f6-4615-88e8-a30b7914d721))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R12") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 40.64 113.03 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3f355547-46c9-4fb5-b450-af6cec12c8c5)
(property "Reference" "R13" (at 40.64 110.49 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 40.64 113.03 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 40.64 114.808 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 40.64 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e7368471-302c-4ba1-a6b6-6d0e28a3f2a8))
(pin "2" (uuid 4b0cbd9f-1e23-4928-8180-92dac867e1bd))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R13") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 40.64 78.74 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 451a6ba2-02e8-4beb-8ef6-dc46ed024f16)
(property "Reference" "R15" (at 40.64 76.2 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 40.64 78.74 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 40.64 80.518 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 40.64 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 73c84371-bfae-416f-8a95-9b35315e0e75))
(pin "2" (uuid d95dc618-7ddc-4296-befc-a0b31fe8e30a))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R15") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 29.21 39.37 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 474e0fc1-a424-41f1-9d6b-da89b7e67b03)
(property "Reference" "#PWR0187" (at 33.02 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 25.4 40.005 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 29.21 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 29.21 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9467fc7d-94cc-44cb-a526-6fe7601d119f))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "#PWR0187") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 48.26 86.36 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5cfcca29-4606-4c84-bbfa-2dc10062a26e)
(property "Reference" "D11" (at 49.53 83.82 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED_ORANGE_1" (at 49.53 88.9 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 48.26 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a6fc0501-1028-4b7c-aab5-17c5607e7bc0))
(pin "2" (uuid c5e31e03-7082-4e89-b5ae-19653e44edaa))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "D11") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 46.99 59.69 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 67d27363-4879-49b3-8004-86286a3e619c)
(property "Reference" "R25" (at 46.99 62.23 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 46.99 59.69 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 46.99 57.912 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 46.99 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 172c8195-1a22-428c-b868-0c4c60d5aae0))
(pin "2" (uuid fe7f75f7-7eda-49a1-a28c-3e2405ac353c))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R25") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 48.26 143.51 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 682af149-6fea-4708-8d41-d2358492fcb1)
(property "Reference" "D16" (at 49.53 140.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED_WHITE_2" (at 49.53 146.05 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 48.26 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 48.26 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0ef16906-f44b-4379-a4e6-6df59af0799e))
(pin "2" (uuid e244d923-8343-48d4-af47-aa718ef94fd1))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "D16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 46.99 44.45 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 69226c6b-766c-4ea6-9f3c-60cae117ec1f)
(property "Reference" "R19" (at 46.99 46.99 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10k" (at 46.99 44.45 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (at 46.99 42.672 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 46.99 44.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ea90b707-1a1d-42de-8292-10423631da2e))
(pin "2" (uuid 24a1759c-1a7e-45ad-bcf0-9d5aeba89cb3))
(instances
(project "Robot"
(path "/b3b35851-a34c-4132-8612-acc6c3c13c54/194f295d-6d85-4f1e-90b1-af01e03f02a4"
(reference "R19") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 58.42 86.36 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6ddb4d71-d600-4d0e-bd9c-4119ac2aed5e)
(property "Reference" "#PWR0185" (at 64.77 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)