-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMechboard16.net
More file actions
3234 lines (3234 loc) · 119 KB
/
Mechboard16.net
File metadata and controls
3234 lines (3234 loc) · 119 KB
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 /home/sukko/Documents/kicad/Mechboard16/Mechboard16.sch)
(date "Mon 08 Jan 2024 18:17:39 CET")
(tool "Eeschema 5.1.12")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title Mechboard16)
(company SukkoPera)
(rev 1git)
(date 2024-01-08)
(source Mechboard16.sch)
(comment (number 1) (value "Mechanical replacement keyboard for the Commodore 16"))
(comment (number 2) (value https://github.com/SukkoPera/MechBoard16))
(comment (number 3) (value "Heavily inspired by MechBoard64 by MtnBuffalo"))
(comment (number 4) (value https://www.breadbox64.com/blog/the-mechboard64/))))
(sheet (number 2) (name "/USB Controller/") (tstamps /656CF65E/)
(title_block
(title Mechboard16)
(company SukkoPera)
(rev 1git)
(date 2023-11-28)
(source usb.sch)
(comment (number 1) (value "Mechanical replacement keyboard for the Commodore 16"))
(comment (number 2) (value https://github.com/SukkoPera/MechBoard16))
(comment (number 3) (value "Heavily inspired by MechBoard64 by MtnBuffalo"))
(comment (number 4) (value https://www.breadbox64.com/blog/the-mechboard64/)))))
(components
(comp (ref SW0:0)
(value KEY_DEL)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6575B9ED))
(comp (ref SW1:0)
(value KEY_3)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657674C2))
(comp (ref D1:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6576753F))
(comp (ref SW2:0)
(value KEY_5)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65773AEE))
(comp (ref D2:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65773AF5))
(comp (ref SW3:0)
(value KEY_7)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6577596F))
(comp (ref D3:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65775976))
(comp (ref SW4:0)
(value KEY_9)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6577708B))
(comp (ref D4:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65777092))
(comp (ref D5:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6577887E))
(comp (ref SW6:0)
(value KEY_LF)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6577A210))
(comp (ref D6:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6577A217))
(comp (ref SW7:0)
(value KEY_1)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6577BAFD))
(comp (ref D7:0)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6577BB04))
(comp (ref SW5:0)
(value KEY_DN)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65778877))
(comp (ref SW0:1)
(value KEY_RET)
(footprint Mechboard16:SW_Cherry_MX_PCB_2.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B5925))
(comp (ref D0:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B592D))
(comp (ref SW1:1)
(value KEY_W)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B5937))
(comp (ref D1:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B593E))
(comp (ref SW2:1)
(value KEY_R)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B594E))
(comp (ref D2:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B5955))
(comp (ref SW3:1)
(value KEY_Y)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B595D))
(comp (ref D3:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B5964))
(comp (ref SW4:1)
(value KEY_I)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B596C))
(comp (ref D4:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B5973))
(comp (ref D5:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B597C))
(comp (ref SW6:1)
(value KEY_AST)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B5984))
(comp (ref D6:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B598B))
(comp (ref SW7:1)
(value KEY_CLR)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B5993))
(comp (ref D7:1)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657B599A))
(comp (ref SW5:1)
(value KEY_P)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657B59A2))
(comp (ref SW0:2)
(value KEY_PND)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F6879))
(comp (ref D0:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F6881))
(comp (ref SW1:2)
(value KEY_A)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F688B))
(comp (ref D1:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F6892))
(comp (ref SW2:2)
(value KEY_D)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68A2))
(comp (ref D2:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68A9))
(comp (ref SW3:2)
(value KEY_G)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68B1))
(comp (ref D3:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68B8))
(comp (ref SW4:2)
(value KEY_J)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68C0))
(comp (ref D4:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68C7))
(comp (ref D5:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68D0))
(comp (ref SW6:2)
(value KEY_SEM)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68D8))
(comp (ref D6:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68DF))
(comp (ref SW7:2)
(value KEY_CTL)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68E7))
(comp (ref D7:2)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 657F68EE))
(comp (ref SW5:2)
(value KEY_L)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 657F68F6))
(comp (ref SW0:3)
(value KEY_HLP)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6580578A))
(comp (ref D0:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65805792))
(comp (ref SW1:3)
(value KEY_4)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6580579C))
(comp (ref D1:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057A3))
(comp (ref SW2:3)
(value KEY_6)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 658057B3))
(comp (ref D2:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057BA))
(comp (ref SW3:3)
(value KEY_8)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 658057C2))
(comp (ref D3:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057C9))
(comp (ref SW4:3)
(value KEY_0)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 658057D1))
(comp (ref D4:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057D8))
(comp (ref D5:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057E1))
(comp (ref SW6:3)
(value KEY_RT)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 658057E9))
(comp (ref D6:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057F0))
(comp (ref SW7:3)
(value KEY_2)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 658057F8))
(comp (ref D7:3)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 658057FF))
(comp (ref SW5:3)
(value KEY_UP)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65805807))
(comp (ref SW0:4)
(value KEY_F1)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A489))
(comp (ref D0:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A491))
(comp (ref SW1:4)
(value KEY_Z)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A49B))
(comp (ref D1:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4A2))
(comp (ref SW2:4)
(value KEY_C)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4B2))
(comp (ref D2:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4B9))
(comp (ref SW3:4)
(value KEY_B)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4C1))
(comp (ref D3:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4C8))
(comp (ref SW4:4)
(value KEY_M)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4D0))
(comp (ref D4:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4D7))
(comp (ref D5:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4E0))
(comp (ref SW6:4)
(value KEY_ESC)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4E8))
(comp (ref D6:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4EF))
(comp (ref SW7:4)
(value KEY_SPC)
(footprint Mechboard16:SW_Cherry_MX_PCB_9.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4F7))
(comp (ref D7:4)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6581A4FE))
(comp (ref SW5:4)
(value KEY_DOT)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6581A506))
(comp (ref SW0:5)
(value KEY_F2)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F0C))
(comp (ref D0:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F14))
(comp (ref SW1:5)
(value KEY_S)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F1E))
(comp (ref D1:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F25))
(comp (ref SW2:5)
(value KEY_F)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F35))
(comp (ref D2:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F3C))
(comp (ref SW3:5)
(value KEY_H)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F44))
(comp (ref D3:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F4B))
(comp (ref SW4:5)
(value KEY_K)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F53))
(comp (ref D4:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F5A))
(comp (ref D5:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F63))
(comp (ref SW6:5)
(value KEY_EQ)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F6B))
(comp (ref D6:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F72))
(comp (ref SW7:5)
(value KEY_CMD)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F7A))
(comp (ref D7:5)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 65838F81))
(comp (ref SW5:5)
(value KEY_COL)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 65838F89))
(comp (ref SW0:6)
(value KEY_F3)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B7F1))
(comp (ref D0:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B7F9))
(comp (ref SW1:6)
(value KEY_E)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B803))
(comp (ref D1:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B80A))
(comp (ref SW2:6)
(value KEY_T)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B81A))
(comp (ref D2:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B821))
(comp (ref SW3:6)
(value KEY_U)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B829))
(comp (ref D3:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B830))
(comp (ref SW4:6)
(value KEY_O)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B838))
(comp (ref D4:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B83F))
(comp (ref D5:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B848))
(comp (ref SW6:6)
(value KEY_PLS)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B850))
(comp (ref D6:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B857))
(comp (ref SW7:6)
(value KEY_Q)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B85F))
(comp (ref D7:6)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6586B866))
(comp (ref SW5:6)
(value KEY_MIN)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6586B86E))
(comp (ref SW0:7)
(value KEY_AT)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6589AE9E))
(comp (ref D0:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEA6))
(comp (ref SW1:7)
(value KEY_LSH)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.50u_OffsetR)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEB0))
(comp (ref D1:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEB7))
(comp (ref SW2:7)
(value KEY_X)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEC7))
(comp (ref D2:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6589AECE))
(comp (ref SW3:7)
(value KEY_V)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6589AED6))
(comp (ref D3:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEDD))
(comp (ref SW4:7)
(value KEY_N)
(footprint Mechboard16:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push_45deg) (description "Push button switch, normally open, two pins, 45° tilted"))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEE5))
(comp (ref D4:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields
(field (name LCSC) C2128))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 6589AEEC))
(comp (ref D5:7)
(value 1n4148)
(footprint Diode_SMD:D_SOD-323_HandSoldering)
(datasheet ~)
(fields