-
Notifications
You must be signed in to change notification settings - Fork 0
/
BalthazarKeyboard.net
2518 lines (2518 loc) · 92.1 KB
/
BalthazarKeyboard.net
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
(export (version D)
(design
(source C:\Users\turbo\Desktop\github\Balthazar\BalthazarKeyboard\BalthazarKeyboard.sch)
(date "5/22/2020 9:09:44 PM")
(tool "Eeschema (5.1.5)-3")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source BalthazarKeyboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value "Pro Micro")
(footprint Module:Arduino_ProMicro)
(datasheet https://www.arduino.cc/en/uploads/Main/ArduinoNanoManual23.pdf)
(libsource (lib MCU_Module) (part Arduino_ProMicro) (description "Arduino Nano v2.x"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5F53C1))
(comp (ref SW1)
(value ESC)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5F8049))
(comp (ref SW2)
(value F1)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FCB75))
(comp (ref SW3)
(value F2)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FD4FC))
(comp (ref SW4)
(value F3)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FDD10))
(comp (ref SW5)
(value F4)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FED3A))
(comp (ref SW6)
(value F5)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FF824))
(comp (ref D2)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E600E44))
(comp (ref D3)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6014F0))
(comp (ref D4)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E601A22))
(comp (ref D5)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6021AA))
(comp (ref D6)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6026E3))
(comp (ref D1)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E5FA5E0))
(comp (ref SW8)
(value ¸¨)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DC4))
(comp (ref SW9)
(value 1!)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DD1))
(comp (ref SW10)
(value 2")
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DDB))
(comp (ref SW11)
(value 3#)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DE5))
(comp (ref SW12)
(value 4$)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DEF))
(comp (ref SW13)
(value 5%)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E604DF9))
(comp (ref D9)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E0D))
(comp (ref D10)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E17))
(comp (ref D11)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E21))
(comp (ref D12)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E2B))
(comp (ref D13)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E35))
(comp (ref D8)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E604E46))
(comp (ref SW15)
(value TAB)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6157FB))
(comp (ref SW16)
(value Q)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E615807))
(comp (ref SW17)
(value W)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E615811))
(comp (ref SW18)
(value E)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E61581B))
(comp (ref SW19)
(value R)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E615825))
(comp (ref SW20)
(value T)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E61582F))
(comp (ref D16)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E61583E))
(comp (ref D17)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E615848))
(comp (ref D18)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E615852))
(comp (ref D19)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E61585C))
(comp (ref D20)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E615866))
(comp (ref D15)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E615877))
(comp (ref SW22)
(value CAPS)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D59C))
(comp (ref SW23)
(value A)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5A8))
(comp (ref SW24)
(value S)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5B2))
(comp (ref SW25)
(value D)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5BC))
(comp (ref SW26)
(value F)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5C6))
(comp (ref SW27)
(value G)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5D0))
(comp (ref D23)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5DF))
(comp (ref D24)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5E9))
(comp (ref D25)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5F3))
(comp (ref D26)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D5FD))
(comp (ref D27)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D607))
(comp (ref D22)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E63D618))
(comp (ref SW29)
(value SHIFT)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E657198))
(comp (ref SW30)
(value <>)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571A4))
(comp (ref SW31)
(value Y/Z)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571AE))
(comp (ref SW32)
(value X)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571B8))
(comp (ref SW33)
(value C)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571C2))
(comp (ref SW34)
(value V)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571CC))
(comp (ref D30)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571DB))
(comp (ref D31)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571E5))
(comp (ref D32)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571EF))
(comp (ref D33)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6571F9))
(comp (ref D34)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E657203))
(comp (ref D29)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E657214))
(comp (ref SW36)
(value CTRL)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BA6))
(comp (ref SW37)
(value ALT)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BB2))
(comp (ref SW38)
(value Win/Apple)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BBC))
(comp (ref SW39)
(value SPACE)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BC6))
(comp (ref SW40)
(value LEFT)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BD0))
(comp (ref SW41)
(value DOWN)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BDA))
(comp (ref D37)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BE9))
(comp (ref D38)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BF3))
(comp (ref D39)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671BFD))
(comp (ref D40)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671C07))
(comp (ref D41)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671C11))
(comp (ref D36)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E671C22))
(comp (ref SW43)
(value F7)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F58C))
(comp (ref SW44)
(value F8)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F598))
(comp (ref SW45)
(value F9)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5A2))
(comp (ref SW46)
(value F10)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5AC))
(comp (ref SW47)
(value F11)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5B6))
(comp (ref SW48)
(value F12)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5C0))
(comp (ref D44)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5CF))
(comp (ref D45)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5D9))
(comp (ref D46)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5E3))
(comp (ref D47)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5ED))
(comp (ref D48)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F5F7))
(comp (ref D43)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E67F608))
(comp (ref SW50)
(value 7/)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBEDB))
(comp (ref SW51)
(value "8(")
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBEE7))
(comp (ref SW52)
(value "9)")
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBEF1))
(comp (ref SW53)
(value 0=)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBEFB))
(comp (ref SW54)
(value /?)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF05))
(comp (ref SW55)
(value +*)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF0F))
(comp (ref D51)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF1E))
(comp (ref D52)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF28))
(comp (ref D53)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF32))
(comp (ref D54)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF3C))
(comp (ref D55)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF46))
(comp (ref D50)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6BBF57))
(comp (ref SW57)
(value U)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9ADE))
(comp (ref SW58)
(value I)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9AEA))
(comp (ref SW59)
(value O)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9AF4))
(comp (ref SW60)
(value P)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9AFE))
(comp (ref SW61)
(value Š)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B08))
(comp (ref SW62)
(value Đ)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B12))
(comp (ref D58)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B21))
(comp (ref D59)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B2B))
(comp (ref D60)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B35))
(comp (ref D61)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B3F))
(comp (ref D62)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B49))
(comp (ref D57)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6C9B5A))
(comp (ref SW64)
(value J)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA23))
(comp (ref SW65)
(value K)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA2F))
(comp (ref SW66)
(value L)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA39))
(comp (ref SW67)
(value Č)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA43))
(comp (ref SW68)
(value Ć)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA4D))
(comp (ref SW69)
(value Ž)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA57))
(comp (ref D65)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA66))
(comp (ref D66)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA70))
(comp (ref D67)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA7A))
(comp (ref D68)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA84))
(comp (ref D69)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA8E))
(comp (ref D64)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6DFA9F))
(comp (ref SW71)
(value N)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F5270))
(comp (ref SW72)
(value M)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F527C))
(comp (ref SW73)
(value ,;)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F5286))
(comp (ref SW74)
(value .:)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F5290))
(comp (ref SW75)
(value -_)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F529A))
(comp (ref SW76)
(value UP)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52A4))
(comp (ref D72)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52B3))
(comp (ref D73)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52BD))
(comp (ref D74)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52C7))
(comp (ref D75)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52D1))
(comp (ref D76)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52DB))
(comp (ref D71)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E6F52EC))
(comp (ref SW7)
(value F6)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD31))
(comp (ref D7)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD3D))
(comp (ref SW14)
(value 6&)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD48))
(comp (ref D14)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD52))
(comp (ref SW21)
(value Y/Z)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD61))
(comp (ref D21)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD6B))
(comp (ref SW28)
(value H)
(footprint Button_Switch_THT:SW_PUSH_6mm_8mm)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5E70FD78))
(comp (ref D28)
(value D)
(footprint Diode_SMD:D_0805_2012Metric)