-
Notifications
You must be signed in to change notification settings - Fork 0
/
spacemouse_macropad.kicad_sch
1542 lines (1499 loc) · 59.3 KB
/
spacemouse_macropad.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 20211123) (generator eeschema)
(uuid a198351e-cf9a-469a-96b1-f0744b8263e6)
(paper "A4")
(lib_symbols
(symbol "1N4148:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D" (id 1) (at 0 -2.54 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" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_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_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(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" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(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 "component:LED" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "LED_0_1"
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.27)
(xy 1.27 0)
(xy -1.27 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 1.651 -1.016)
(xy 2.794 -2.032)
(xy 2.667 -1.397)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.032 -0.635)
(xy 3.175 -1.651)
(xy 3.048 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -5.08 0 0) (length 3.81)
(name "A" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "K" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "kbd:ProMicro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 19.05 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro" (id 1) (at 0 -19.05 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 2.54 -26.67 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 2.54 -26.67 0)
(effects (font (size 1.524 1.524)))
)
(symbol "ProMicro_0_1"
(rectangle (start -12.7 16.51) (end 12.7 -16.51)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ProMicro_1_1"
(pin bidirectional line (at -17.78 13.97 0) (length 5.08)
(name "TX0/D3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -8.89 0) (length 5.08)
(name "7/E6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -11.43 0) (length 5.08)
(name "8/B4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -13.97 0) (length 5.08)
(name "9/B5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -13.97 180) (length 5.08)
(name "B6/10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -11.43 180) (length 5.08)
(name "B2/16" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -8.89 180) (length 5.08)
(name "B3/14" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -6.35 180) (length 5.08)
(name "B1/15" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -3.81 180) (length 5.08)
(name "F7/A0" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -1.27 180) (length 5.08)
(name "F6/A1" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 1.27 180) (length 5.08)
(name "F5/A2" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 11.43 0) (length 5.08)
(name "RX1/D2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 3.81 180) (length 5.08)
(name "F4/A3" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 17.78 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 3.81 0) (length 5.08)
(name "2/D1/SDA" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 1.27 0) (length 5.08)
(name "3/D0/SCL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -1.27 0) (length 5.08)
(name "4/D4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -3.81 0) (length 5.08)
(name "5/C6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 -6.35 0) (length 5.08)
(name "6/D7" (effects (font (size 1.27 1.27))))
(number "9" (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:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(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 87.63 38.1) (diameter 0) (color 0 0 0 0)
(uuid 09679213-bc41-4701-bf41-7df0a432778f)
)
(junction (at 101.6 82.55) (diameter 0) (color 0 0 0 0)
(uuid 18268831-1b93-4550-b1cb-8ee7c33a6197)
)
(junction (at 101.6 73.66) (diameter 0) (color 0 0 0 0)
(uuid 210075d2-7500-4dc0-a278-be9f29c1bbcf)
)
(junction (at 66.04 74.93) (diameter 0) (color 0 0 0 0)
(uuid 3e5361c6-1705-43c4-a53d-2d49b03002c0)
)
(junction (at 76.2 73.66) (diameter 0) (color 0 0 0 0)
(uuid 531a8aa7-2812-4bad-9867-38abbe25929b)
)
(junction (at 91.44 74.93) (diameter 0) (color 0 0 0 0)
(uuid 53db8dc5-a57c-44d0-ae68-289444fec952)
)
(junction (at 76.2 48.26) (diameter 0) (color 0 0 0 0)
(uuid 84d7e30c-14c4-442a-b312-32b7199f9f29)
)
(junction (at 101.6 57.15) (diameter 0) (color 0 0 0 0)
(uuid 891d4499-cfa3-4c51-8041-f03e2143a012)
)
(junction (at 40.64 74.93) (diameter 0) (color 0 0 0 0)
(uuid 8c9fd91f-ebfc-408b-8c67-5e53575d8327)
)
(junction (at 36.83 38.1) (diameter 0) (color 0 0 0 0)
(uuid 9ff30120-cfe0-4ef8-add7-8fedb4b43f89)
)
(junction (at 66.04 49.53) (diameter 0) (color 0 0 0 0)
(uuid ac4b7442-175d-47bc-b4b8-40f2b1a07d24)
)
(junction (at 127 82.55) (diameter 0) (color 0 0 0 0)
(uuid b847fce3-19a5-47da-8cfc-1f9042d66615)
)
(junction (at 35.56 49.53) (diameter 0) (color 0 0 0 0)
(uuid c2298462-08e6-46f8-8ad8-2098012750aa)
)
(junction (at 50.8 48.26) (diameter 0) (color 0 0 0 0)
(uuid cb1843ab-2d0a-431f-aa24-c1ccfa6b6f8f)
)
(junction (at 50.8 73.66) (diameter 0) (color 0 0 0 0)
(uuid e3253345-dd6e-4e75-99ec-3465eb811fb6)
)
(junction (at 76.2 57.15) (diameter 0) (color 0 0 0 0)
(uuid e80833d9-a56e-4633-9eaf-a426ebd24ad8)
)
(junction (at 76.2 82.55) (diameter 0) (color 0 0 0 0)
(uuid f0427176-cfa5-4087-85ac-6353ec11255f)
)
(junction (at 40.64 49.53) (diameter 0) (color 0 0 0 0)
(uuid f54eee6a-618a-42d6-9a7a-602c6549457c)
)
(junction (at 62.23 38.1) (diameter 0) (color 0 0 0 0)
(uuid f5c4dc78-0ce7-4332-81d5-ae7811c52716)
)
(wire (pts (xy 76.2 73.66) (xy 50.8 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09f3b96d-b2cc-443a-a4a6-5c082117174d)
)
(wire (pts (xy 46.99 38.1) (xy 50.8 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 102bf30f-28db-47fe-9023-8d4cc9e77590)
)
(wire (pts (xy 113.03 50.8) (xy 113.03 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1820e01d-0551-4b62-9a10-7b13945b7573)
)
(wire (pts (xy 101.6 55.88) (xy 101.6 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18734cb6-b697-4362-9d94-a841c7b13ce1)
)
(wire (pts (xy 116.84 74.93) (xy 91.44 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23598a29-a0f9-44e9-8af2-990b4125a8c3)
)
(wire (pts (xy 101.6 71.12) (xy 101.6 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25265fea-1446-49ee-b5ab-42bc682141f7)
)
(wire (pts (xy 101.6 81.28) (xy 101.6 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2803c41b-fe08-4829-b38b-bb0b8b220cf9)
)
(wire (pts (xy 50.8 57.15) (xy 76.2 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28e14b4c-5691-4402-bb01-b22bf5cd2bbb)
)
(wire (pts (xy 40.64 74.93) (xy 40.64 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2975112e-b3c7-4daf-b6e5-3a7b05a01fd0)
)
(wire (pts (xy 62.23 38.1) (xy 62.23 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29d5c0b9-9ad9-48ca-a4eb-e0f3653c978d)
)
(wire (pts (xy 34.29 49.53) (xy 35.56 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 319307e2-2bcc-4413-91a2-76b103c38d3a)
)
(wire (pts (xy 127 71.12) (xy 127 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37d0354f-8399-4a58-a430-ff34871bbb4c)
)
(wire (pts (xy 66.04 49.53) (xy 91.44 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d490c15-256e-4264-a05c-3256571b9d3f)
)
(wire (pts (xy 25.4 48.26) (xy 50.8 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41a3d666-1cd1-4aab-b825-71c0725b1dda)
)
(wire (pts (xy 101.6 57.15) (xy 101.6 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4658d60a-3ce1-4300-8912-0bb970f55b04)
)
(wire (pts (xy 101.6 45.72) (xy 101.6 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46c43d6d-5f7a-4cfb-946f-86cfe31adf98)
)
(wire (pts (xy 50.8 48.26) (xy 50.8 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a5c3503-af28-4c11-90c7-33b0de1921fe)
)
(wire (pts (xy 66.04 74.93) (xy 66.04 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c371e99-fc3c-46e0-b85d-f990fcb74e27)
)
(wire (pts (xy 40.64 49.53) (xy 66.04 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55b64db7-3aed-420c-980b-42ca4d354cac)
)
(wire (pts (xy 40.64 49.53) (xy 40.64 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57b9f59a-e75f-4f61-8b03-3207c9dfff57)
)
(wire (pts (xy 76.2 48.26) (xy 50.8 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6465a9f6-e841-4a16-a1a2-8eb8c1f8d51e)
)
(wire (pts (xy 123.19 63.5) (xy 127 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69989bc9-96b4-4fc9-87af-5c1937fa9033)
)
(wire (pts (xy 50.8 82.55) (xy 76.2 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bea25b8-40f6-4d50-b160-dd6dc29bc976)
)
(wire (pts (xy 50.8 71.12) (xy 50.8 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 722a337f-967b-4a4a-a998-eace2802f855)
)
(wire (pts (xy 87.63 25.4) (xy 87.63 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77c651c4-3efc-4bd0-ac55-0203970a6700)
)
(wire (pts (xy 76.2 45.72) (xy 76.2 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f4212f0-7f29-4b9b-8829-d78da4396459)
)
(wire (pts (xy 76.2 55.88) (xy 76.2 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81709761-b1b5-45d9-86d0-d1110395a287)
)
(wire (pts (xy 97.79 38.1) (xy 101.6 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 823e5270-bc58-49ad-b10c-12805a6da3ef)
)
(wire (pts (xy 40.64 74.93) (xy 35.56 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 875c90b3-4ebe-490b-96a6-e15e4de4130d)
)
(wire (pts (xy 50.8 73.66) (xy 25.4 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c1f7d2e-ea33-4d78-b82e-7bd91fdce02e)
)
(wire (pts (xy 66.04 49.53) (xy 66.04 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e90b189-a9ac-4796-ac7a-5bc5eb6f607c)
)
(wire (pts (xy 116.84 76.2) (xy 116.84 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ffa4450-e679-417e-a361-1faff7b1b492)
)
(wire (pts (xy 101.6 48.26) (xy 76.2 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93c3bbf6-4219-4b1c-92aa-2e33ae2dfa8a)
)
(wire (pts (xy 62.23 25.4) (xy 62.23 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93c7daa7-f379-495c-b2af-26e9b8333252)
)
(wire (pts (xy 97.79 63.5) (xy 101.6 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94f8edcf-4532-4b01-b2e6-1871f4b255fd)
)
(wire (pts (xy 91.44 74.93) (xy 91.44 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b165299-29b7-49c4-9bcc-1c661056df38)
)
(wire (pts (xy 91.44 49.53) (xy 91.44 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c1945a9-50ed-490c-8396-27e3cf7b5e88)
)
(wire (pts (xy 35.56 49.53) (xy 40.64 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9da93a52-43b0-46f5-ae2a-fd07de8f5002)
)
(wire (pts (xy 127 81.28) (xy 127 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a16fc356-0610-448a-8eb6-fed7e84dd32d)
)
(wire (pts (xy 72.39 38.1) (xy 76.2 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac0d2f44-6beb-4021-af5f-80e704f8280f)
)
(wire (pts (xy 91.44 74.93) (xy 66.04 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b185f8ab-3c1a-4272-9091-51c8f3b33538)
)
(wire (pts (xy 76.2 81.28) (xy 76.2 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb2ed120-7fe6-45cc-b3b2-6df24189f706)
)
(wire (pts (xy 101.6 82.55) (xy 127 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfeac67f-450a-4b2f-9eb6-2763a71111bb)
)
(wire (pts (xy 36.83 25.4) (xy 36.83 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5bcc6fc-2f20-42b7-a955-bb1050818383)
)
(wire (pts (xy 50.8 55.88) (xy 50.8 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6284f55-8d57-4d13-a0a7-4856920c1b4a)
)
(wire (pts (xy 72.39 63.5) (xy 76.2 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dae29cad-497c-4b83-9b3a-b5c50c2b3ee2)
)
(wire (pts (xy 87.63 38.1) (xy 87.63 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db46fad9-02a8-46ed-87f8-38470c70bbea)
)
(wire (pts (xy 127 82.55) (xy 127 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0e98afa-7b97-432e-a387-a791ca3e3d0d)
)
(wire (pts (xy 76.2 57.15) (xy 101.6 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e405911f-d0a5-4182-864a-0d5fd506407d)
)
(wire (pts (xy 50.8 81.28) (xy 50.8 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e47759d2-5e32-40bf-abf1-8c3dcb2521bd)
)
(wire (pts (xy 76.2 71.12) (xy 76.2 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e96baa5f-c313-4729-a81f-f64e10ce6f3e)
)
(wire (pts (xy 36.83 38.1) (xy 36.83 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea20b6cc-89d4-44bc-a1ba-759e60eba6b0)
)
(wire (pts (xy 35.56 74.93) (xy 35.56 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea75c34a-4fe6-4824-89b5-594d11587875)
)
(wire (pts (xy 66.04 74.93) (xy 40.64 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea826a85-b709-4230-86a2-85b77e19e18d)
)
(wire (pts (xy 76.2 82.55) (xy 101.6 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f19d0b37-7bed-467e-97f8-c52198983f5b)
)
(wire (pts (xy 127 73.66) (xy 101.6 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fab6fa4f-f602-4500-839f-09e46690437e)
)
(wire (pts (xy 46.99 63.5) (xy 50.8 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe21b079-e54f-4e56-9242-7068c103ae36)
)
(wire (pts (xy 101.6 73.66) (xy 76.2 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe5ed67a-ae96-408a-93a8-5763e699f658)
)
(global_label "col0" (shape input) (at 36.83 25.4 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 248c91b7-9199-4d33-bf0b-c365f8c2e99a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.7506 18.8745 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "row1" (shape input) (at 25.4 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 36476bc6-9181-49dd-b393-54415f400e80)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.5117 73.5806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col2" (shape input) (at 87.63 25.4 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 67c385ec-8b32-4716-91da-a8bd11123d95)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 87.5506 18.8745 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col1" (shape input) (at 62.23 25.4 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7fe20cb9-fecf-4b86-b835-097ad98cf73d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 62.1506 18.8745 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "led_pin" (shape input) (at 34.29 49.53 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ad488d1f-71eb-4906-800d-b7ee8e15f8bc)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 25.1036 49.4506 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "row0" (shape input) (at 25.4 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eee5658e-9983-4e4c-bfb4-0b30deb95391)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.5117 48.1806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col3" (shape input) (at 113.03 50.8 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ff9f1236-db99-4ef8-b7e2-678ca8c55432)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.9506 44.2745 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Device:R_Small") (at 101.6 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 000ad2cf-5c52-4973-b598-2e7dd299ca4d)
(property "Reference" "R6" (id 0) (at 104.14 77.4699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 104.14 80.0099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Keebio-Parts:Resistor-Hybrid-Back" (id 2) (at 101.6 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 101.6 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 827107c8-65d7-4dc7-a650-3cf8090a9c5f))
(pin "2" (uuid cbd44ee1-ade1-43a1-8e0e-8dfe2925dfeb))
)
(symbol (lib_id "1N4148:D") (at 127 67.31 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 03cc4e36-911a-42be-82db-d7571837c02a)
(property "Reference" "D7" (id 0) (at 129.54 66.0399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "D" (id 1) (at 129.54 68.5799 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Keebio-Parts:Diode-Hybrid-Back" (id 2) (at 127 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 127 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5d049d2a-ade2-4aca-aa08-3e99e61f3bb6))
(pin "2" (uuid 4d5abe65-f1cc-4c2c-9d9a-be222d6d27dd))
)
(symbol (lib_id "Switch:SW_Push") (at 118.11 63.5 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0726db45-c624-45f7-b616-3bd691e1ba28)
(property "Reference" "SW7" (id 0) (at 118.11 55.88 0))
(property "Value" "SW_Push" (id 1) (at 118.11 58.42 0))
(property "Footprint" "Keebio-Parts:MX-Alps-Choc-1U" (id 2) (at 118.11 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 118.11 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2bc5bbee-ebd3-4b08-9408-e4989c0d9fe1))
(pin "2" (uuid 0e82eaa4-531e-430e-98d0-e70d2b0072ac))
)
(symbol (lib_id "Switch:SW_Push") (at 67.31 63.5 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 114005f6-6bb5-4593-b419-0b17095fa2c4)
(property "Reference" "SW4" (id 0) (at 67.31 54.61 0))
(property "Value" "SW_Push" (id 1) (at 67.31 57.15 0))
(property "Footprint" "Keebio-Parts:MX-Alps-Choc-1U" (id 2) (at 67.31 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 67.31 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a0924fce-5ab0-4c86-adc3-8c010c023685))
(pin "2" (uuid 299927eb-d606-49d2-833b-a0d00f292141))
)
(symbol (lib_id "Device:R_Small") (at 50.8 53.34 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 14789c66-a443-4334-b056-37b8cd2e30b8)
(property "Reference" "R1" (id 0) (at 53.34 52.0699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 53.34 54.6099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Keebio-Parts:Resistor-Hybrid-Back" (id 2) (at 50.8 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 50.8 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a9467377-7b07-40f5-aafb-d0d37773971b))
(pin "2" (uuid 8d27e520-c85b-47b9-b54c-ca651254ffb9))
)
(symbol (lib_id "kbd:ProMicro") (at 234.95 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 189167ba-6db7-4e51-9b29-9d7c73c794bb)
(property "Reference" "U1" (id 0) (at 234.95 38.1 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro" (id 1) (at 234.95 41.91 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "kbd:ProMicro_v2" (id 2) (at 237.49 86.36 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 237.49 86.36 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid 547739ef-edf2-4752-94bf-49a08c9cc5f4))
(pin "10" (uuid 76750822-13c2-4fce-bb92-0b8106a02b5d))
(pin "11" (uuid 6f7c9593-7959-472b-953c-006432a363c6))
(pin "12" (uuid 77de4a79-ae28-4f5c-915f-11c2950e75a5))
(pin "13" (uuid 77787585-c5d1-4a63-8f8e-9416c031e90f))
(pin "14" (uuid f82deeb5-d0e5-49c1-bf4a-bfbac8584075))
(pin "15" (uuid 1b56c335-fcd9-4adf-9019-0ce8ca34a306))
(pin "16" (uuid cc4a8ea0-475c-4189-9528-a0351722a441))
(pin "17" (uuid 8c06f867-c17a-472f-8270-9f8f92107b09))
(pin "18" (uuid d513461e-e030-43ea-a708-09cfaf3a1dc9))
(pin "19" (uuid ce58fd46-27c6-4d3a-ad24-aada28806ee1))
(pin "2" (uuid 32843f60-2f60-4524-83a7-85441aff5f5f))
(pin "20" (uuid ec4e1e96-c489-40b9-9f5f-07a9cfbaa07d))
(pin "21" (uuid b110d57d-d10a-416f-ab74-cabd1e89685e))
(pin "22" (uuid 43e3c617-2dd0-4b02-8099-513bf82f9a56))
(pin "23" (uuid 61e6d373-b359-4370-a7f6-cfec9939209b))
(pin "24" (uuid 14bb1e82-63f4-446c-8ea1-15353652bc9e))
(pin "3" (uuid 99e1d202-d2a8-4256-bbfe-5c80411a9ee1))
(pin "4" (uuid 0dd59854-ca93-426c-8f15-a8c2a1f881c6))
(pin "5" (uuid e6c6dd8f-e383-4c06-a407-53676f82e41d))
(pin "6" (uuid d486b434-319d-474d-a0a1-5790d5b38bdf))
(pin "7" (uuid 71f9b617-caf9-4b00-ac66-1160fa59eea8))
(pin "8" (uuid 73666fdb-a251-4359-9b31-3fee79a8b2ae))
(pin "9" (uuid 918206bc-9806-4193-a25a-f76389f69e4e))
)
(symbol (lib_id "1N4148:D") (at 101.6 67.31 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 19fe0a53-e607-4210-ac6b-9bbf7846209c)
(property "Reference" "D6" (id 0) (at 104.14 66.0399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "D" (id 1) (at 104.14 68.5799 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Keebio-Parts:Diode-Hybrid-Back" (id 2) (at 101.6 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 101.6 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid daf38a6c-ad42-4ec3-8bbf-7097aaca4294))
(pin "2" (uuid ece2a0eb-aea4-4284-82f9-240a70b9eb98))
)
(symbol (lib_id "component:LED") (at 45.72 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2a657128-889c-4488-8bd3-b686b2ef4177)
(property "Reference" "D8" (id 0) (at 46.6725 44.45 0))
(property "Value" "LED" (id 1) (at 46.6725 46.99 0))
(property "Footprint" "Keebio-Parts:LED_3mm" (id 2) (at 45.72 50.8 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 45.72 50.8 0)
(effects (font (size 1.524 1.524)))
)
(pin "1" (uuid b692ba42-5168-49e4-a677-96769c6396f8))
(pin "2" (uuid ce595426-2763-4ec8-b535-17fe9e27b911))
)
(symbol (lib_id "1N4148:D") (at 50.8 67.31 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 309a25bb-81cb-4eeb-abd6-f130ec9c8750)
(property "Reference" "D4" (id 0) (at 53.34 66.0399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "D" (id 1) (at 53.34 68.5799 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Keebio-Parts:Diode-Hybrid-Back" (id 2) (at 50.8 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 50.8 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4e1a72bf-6a74-4444-97ea-b92d514f5525))
(pin "2" (uuid 26262c8e-5372-43a2-b05c-616768d81ccc))
)
(symbol (lib_id "power:GND") (at 101.6 58.42 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 353b3c78-bd2d-4d35-9f3d-f1b58efbfe9e)
(property "Reference" "#PWR03" (id 0) (at 101.6 64.77 0)