-
Notifications
You must be signed in to change notification settings - Fork 7
/
keyboard.net
3025 lines (3025 loc) · 95.5 KB
/
keyboard.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/drk/Documents/github/kbd_pcb/STM60/keyboard.sch)
(date "18.8.5 15:14:20")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "STM60 - schematic")
(company YANG)
(rev)
(date 2018.7.30)
(source keyboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref S1)
(value Esc)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0A88))
(comp (ref S2)
(value 1)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0B5C))
(comp (ref R1)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0B94))
(comp (ref D1)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0C2D))
(comp (ref D2)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0CF2))
(comp (ref R2)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A0D6B))
(comp (ref S3)
(value 2)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A101B))
(comp (ref S4)
(value 3)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1021))
(comp (ref R3)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1027))
(comp (ref D3)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1032))
(comp (ref D4)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A103B))
(comp (ref R4)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1044))
(comp (ref S5)
(value 4)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1297))
(comp (ref S6)
(value 5)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A129D))
(comp (ref R5)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12A3))
(comp (ref D5)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12AE))
(comp (ref D6)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12B7))
(comp (ref R6)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12C0))
(comp (ref S7)
(value 6)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12D3))
(comp (ref S8)
(value 7)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12D9))
(comp (ref R7)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12DF))
(comp (ref D7)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12EA))
(comp (ref D8)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12F3))
(comp (ref R8)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A12FC))
(comp (ref S9)
(value 8)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1867))
(comp (ref S10)
(value 9)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A186D))
(comp (ref R9)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1873))
(comp (ref D9)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A187E))
(comp (ref D10)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1887))
(comp (ref R10)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1890))
(comp (ref S11)
(value 0)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18A3))
(comp (ref S12)
(value -_)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18A9))
(comp (ref R11)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18AF))
(comp (ref D11)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18BA))
(comp (ref D12)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18C3))
(comp (ref R12)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18CC))
(comp (ref S13)
(value =+)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18DF))
(comp (ref S14)
(value -`)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18E5))
(comp (ref R13)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18EB))
(comp (ref D13)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18F6))
(comp (ref D14)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A18FF))
(comp (ref R14)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1908))
(comp (ref S15)
(value BS)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A191B))
(comp (ref R15)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1927))
(comp (ref D15)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A1932))
(comp (ref S16)
(value Tab)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2088))
(comp (ref S17)
(value Q)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A208E))
(comp (ref R16)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2094))
(comp (ref D16)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A209F))
(comp (ref D17)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20A8))
(comp (ref R17)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20B1))
(comp (ref S18)
(value W)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20C4))
(comp (ref S19)
(value E)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20CA))
(comp (ref R18)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20D0))
(comp (ref D18)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20DB))
(comp (ref D19)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20E4))
(comp (ref R19)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A20ED))
(comp (ref S20)
(value R)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2100))
(comp (ref S21)
(value T)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2106))
(comp (ref R20)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A210C))
(comp (ref D20)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2117))
(comp (ref D21)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2120))
(comp (ref R21)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2129))
(comp (ref S22)
(value Y)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A213C))
(comp (ref S23)
(value U)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2142))
(comp (ref R22)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2148))
(comp (ref D22)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2153))
(comp (ref D23)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A215C))
(comp (ref R23)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2165))
(comp (ref S24)
(value I)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2178))
(comp (ref S25)
(value O)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A217E))
(comp (ref R24)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2184))
(comp (ref D24)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A218F))
(comp (ref D25)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2198))
(comp (ref R25)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21A1))
(comp (ref S26)
(value P)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21B4))
(comp (ref S27)
(value [{)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21BA))
(comp (ref R26)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21C0))
(comp (ref D26)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21CB))
(comp (ref D27)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21D4))
(comp (ref R27)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21DD))
(comp (ref S28)
(value ]})
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21F0))
(comp (ref S29)
(value \|)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21F6))
(comp (ref R28)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A21FC))
(comp (ref D28)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2207))
(comp (ref D29)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2210))
(comp (ref R29)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A2219))
(comp (ref S30)
(value Caps)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32D0))
(comp (ref S31)
(value A)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32D6))
(comp (ref R30)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32DC))
(comp (ref D30)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32E7))
(comp (ref D31)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32F0))
(comp (ref R31)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A32F9))
(comp (ref S32)
(value S)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A330C))
(comp (ref S33)
(value D)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3312))
(comp (ref R32)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3318))
(comp (ref D32)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3323))
(comp (ref D33)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A332C))
(comp (ref R33)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3335))
(comp (ref S34)
(value F)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3348))
(comp (ref S35)
(value G)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A334E))
(comp (ref R34)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3354))
(comp (ref D34)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A335F))
(comp (ref D35)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3368))
(comp (ref R35)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3371))
(comp (ref S36)
(value H)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3384))
(comp (ref S37)
(value J)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A338A))
(comp (ref R36)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3390))
(comp (ref D36)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A339B))
(comp (ref D37)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33A4))
(comp (ref R37)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33AD))
(comp (ref S38)
(value K)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33C0))
(comp (ref S39)
(value L)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33C6))
(comp (ref R38)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33CC))
(comp (ref D38)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33D7))
(comp (ref D39)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33E0))
(comp (ref R39)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33E9))
(comp (ref S40)
(value ;:)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A33FC))
(comp (ref S41)
(value '")
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3402))
(comp (ref R40)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3408))
(comp (ref D40)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3413))
(comp (ref D41)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A341C))
(comp (ref R41)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3425))
(comp (ref S42)
(value ISO#)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3438))
(comp (ref S43)
(value Enter)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A343E))
(comp (ref R42)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3444))
(comp (ref D42)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A344F))
(comp (ref D43)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3458))
(comp (ref R43)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3461))
(comp (ref S44)
(value Shift)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3492))
(comp (ref S46)
(value Z)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3498))
(comp (ref R44)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A349E))
(comp (ref D44)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34A9))
(comp (ref D46)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34B2))
(comp (ref R46)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34BB))
(comp (ref S47)
(value X)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34CE))
(comp (ref S48)
(value C)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34D4))
(comp (ref R47)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34DA))
(comp (ref D47)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34E5))
(comp (ref D48)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34EE))
(comp (ref R48)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A34F7))
(comp (ref S49)
(value V)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A350A))
(comp (ref S50)
(value B)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3510))
(comp (ref R49)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3516))
(comp (ref D49)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3521))
(comp (ref D50)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A352A))
(comp (ref R50)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3533))
(comp (ref S51)
(value N)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3546))
(comp (ref S52)
(value M)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A354C))
(comp (ref R51)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3552))
(comp (ref D51)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A355D))
(comp (ref D52)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3566))
(comp (ref R52)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A356F))
(comp (ref S53)
(value ,<)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3582))
(comp (ref S54)
(value .>)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3588))
(comp (ref R53)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A358E))
(comp (ref D53)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A3599))
(comp (ref D54)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35A2))
(comp (ref R54)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35AB))
(comp (ref S55)
(value /?)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35BE))
(comp (ref S56)
(value RShift)
(footprint YD_modules:MX1A_LED)
(libsource (lib Keyboard) (part MX1A_LED))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35C4))
(comp (ref R55)
(value 300)
(footprint YD_modules:R_0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35CA))
(comp (ref D55)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A5A35D5))
(comp (ref D56)
(value 1n4148)
(footprint YD_modules:D_0805)
(libsource (lib Keyboard) (part DIODE))
(sheetpath (names /) (tstamps /))