-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeybored.net
More file actions
1806 lines (1806 loc) · 63.9 KB
/
keybored.net
File metadata and controls
1806 lines (1806 loc) · 63.9 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 C:\Users\yopgu\Desktop\Stuff\Projects\Keyboards\keybored65\keybored.sch)
(date "8/12/2020 12:08:49 AM")
(tool "Eeschema (5.1.6)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source keybored.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ATMEGA32U4)
(footprint Package_QFP:TQFP-44_10x10mm_P0.8mm)
(libsource (lib keyboard_parts) (part ATMEGA32U4) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F1FA654))
(comp (ref J1)
(value USB_C_Receptacle_USB2.0)
(footprint Type-C:USB_C_GCT_USB4085)
(datasheet https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(libsource (lib Connector) (part USB_C_Receptacle_USB2.0) (description "USB 2.0-only Type-C Receptacle connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5F1FB4C4))
(comp (ref R1)
(value 5.1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F230CB1))
(comp (ref R2)
(value 5.1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F232D2C))
(comp (ref R3)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F23399C))
(comp (ref R4)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F235553))
(comp (ref C3)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F24EAF4))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F2641BC))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F273E04))
(comp (ref SW1)
(value SW_PUSH)
(footprint Button_Switch_SMD:SW_SPST_TL3342)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F276287))
(comp (ref K8)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F270352))
(comp (ref K1)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F2709BD))
(comp (ref K22)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F29E0F5))
(comp (ref K15)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F29E0FB))
(comp (ref K29)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F29EEA8))
(comp (ref D1)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F378B4A))
(comp (ref K43)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3818E4))
(comp (ref K36)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3818EA))
(comp (ref K57)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3818F0))
(comp (ref K50)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3818F6))
(comp (ref K64)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3818FC))
(comp (ref K9)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A4090))
(comp (ref K2)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A4096))
(comp (ref K23)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A409C))
(comp (ref K16)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40A2))
(comp (ref K30)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40A8))
(comp (ref K44)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40B4))
(comp (ref K37)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40BA))
(comp (ref K58)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40C0))
(comp (ref K51)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40C6))
(comp (ref K65)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A40CC))
(comp (ref K10)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C00))
(comp (ref K3)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C06))
(comp (ref K24)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C0C))
(comp (ref K17)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C12))
(comp (ref K31)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C18))
(comp (ref K45)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C24))
(comp (ref K38)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C2A))
(comp (ref K59)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C30))
(comp (ref K52)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C36))
(comp (ref K66)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3A7C3C))
(comp (ref K11)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB90E))
(comp (ref K4)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB914))
(comp (ref K25)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB91A))
(comp (ref K18)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB920))
(comp (ref K32)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB926))
(comp (ref K46)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB932))
(comp (ref K39)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB938))
(comp (ref K60)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB93E))
(comp (ref K53)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB944))
(comp (ref K67)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AB94A))
(comp (ref D8)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3AFA00))
(comp (ref D15)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B0449))
(comp (ref D22)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B098D))
(comp (ref D29)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B0DD2))
(comp (ref D36)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B11AE))
(comp (ref D43)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B172E))
(comp (ref D50)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3B1EC0))
(comp (ref D57)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D9889))
(comp (ref D64)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D988F))
(comp (ref D2)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9647))
(comp (ref D9)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F964D))
(comp (ref D16)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9653))
(comp (ref D23)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9659))
(comp (ref D30)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F965F))
(comp (ref D37)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9665))
(comp (ref D44)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F966B))
(comp (ref D51)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9671))
(comp (ref D58)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F9677))
(comp (ref D65)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3F967D))
(comp (ref D3)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6D8))
(comp (ref D10)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6DE))
(comp (ref D17)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6E4))
(comp (ref D24)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6EA))
(comp (ref D31)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6F0))
(comp (ref D38)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6F6))
(comp (ref D45)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC6FC))
(comp (ref D52)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC702))
(comp (ref D59)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC708))
(comp (ref D66)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3FC70E))
(comp (ref Y1)
(value Crystal)
(footprint Crystal:Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7D6C36))
(comp (ref C2)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8497F5))
(comp (ref C1)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F84B7CB))
(comp (ref K12)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237C8))
(comp (ref K5)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237CE))
(comp (ref K26)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237D4))
(comp (ref K19)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237DA))
(comp (ref K33)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237E0))
(comp (ref K47)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237E6))
(comp (ref K40)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237EC))
(comp (ref K61)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237F2))
(comp (ref K54)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237F8))
(comp (ref K68)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC237FE))
(comp (ref D4)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23810))
(comp (ref D11)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23816))
(comp (ref D18)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC2381C))
(comp (ref D25)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23822))
(comp (ref D32)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23828))
(comp (ref D39)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC2382E))
(comp (ref D46)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23834))
(comp (ref D53)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC2383A))
(comp (ref D60)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23840))
(comp (ref D67)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC23846))
(comp (ref K34)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36376))
(comp (ref D68)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363DC))
(comp (ref D61)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363D6))
(comp (ref D54)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363D0))
(comp (ref D47)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363CA))
(comp (ref D40)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363C4))
(comp (ref D33)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363BE))
(comp (ref D26)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363B8))
(comp (ref D19)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363B2))
(comp (ref D12)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363AC))
(comp (ref D5)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5FC363A6))
(comp (ref K69)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36394))
(comp (ref K55)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC3638E))
(comp (ref K62)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36388))
(comp (ref K41)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36382))
(comp (ref K48)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC3637C))
(comp (ref K20)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36370))
(comp (ref K27)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC3636A))
(comp (ref K6)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC36364))
(comp (ref K13)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FC3635E))
(comp (ref D69)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D61E2))
(comp (ref D62)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D61E8))
(comp (ref D55)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D61EE))
(comp (ref D48)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D61F7))
(comp (ref D41)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D61FD))
(comp (ref D34)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D6203))
(comp (ref D27)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D620C))
(comp (ref D20)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D6212))
(comp (ref D13)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D6218))
(comp (ref D6)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F3D621E))
(comp (ref SW2)
(value Rot_Enc_Sw)
(footprint Rotary_Encoder:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm)
(datasheet ~)
(libsource (lib Device) (part Rotary_Encoder_Switch) (description "Rotary encoder, dual channel, incremental quadrate outputs, with switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5F8160F9))
(comp (ref R7)
(value 27k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F99A885))
(comp (ref R8)
(value 27k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F99BE38))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9FC18D))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F9FE236))
(comp (ref K35)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EC4))
(comp (ref K56)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586ED6))
(comp (ref K63)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EDC))
(comp (ref K42)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EE2))
(comp (ref K49)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EE8))
(comp (ref K21)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EEE))
(comp (ref K28)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EF4))
(comp (ref K7)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586EFA))
(comp (ref K14)
(value KEYSW)
(footprint keyswitches:Kailh_socket_MX)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5F586F00))
(comp (ref D70)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F586F1A))
(comp (ref D63)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F586F20))
(comp (ref D56)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5F586F26))
(comp (ref D49)
(value D)
(footprint keybored:DO-35_SOD27_5.08mm)
(datasheet ~)