-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard_10.net
1482 lines (1482 loc) · 50.1 KB
/
keyboard_10.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 /Users/August/Documents/electronics/keyboard/keyboard.sch)
(date "Saturday, May 27, 2017 'AMt' 09:08:19 AM")
(tool "Eeschema 4.0.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source keyboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /matrix/) (tstamps /591F3117/)
(title_block
(title)
(company)
(rev)
(date)
(source matrix.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref Y1)
(value 16mhz)
(footprint Crystals:Crystal_HC49-4H_Vertical)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 59165D84))
(comp (ref C1)
(value 22pF)
(footprint Capacitors_THT:C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 591661C2))
(comp (ref C2)
(value 22pF)
(footprint Capacitors_THT:C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 591662C1))
(comp (ref J2)
(value USB_A)
(footprint Connectors:USB_A)
(libsource (lib conn) (part USB_A))
(sheetpath (names /) (tstamps /))
(tstamp 59167C59))
(comp (ref U1)
(value ATMEGA32U4-AU)
(footprint Housings_QFP:TQFP-44_10x10mm_Pitch0.8mm)
(libsource (lib atmel) (part ATMEGA32U4-AU))
(sheetpath (names /) (tstamps /))
(tstamp 5922F33A))
(comp (ref R2)
(value 22)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 592319F3))
(comp (ref R3)
(value 22)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 59231CD3))
(comp (ref C3)
(value C)
(footprint Capacitors_THT:C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59232090))
(comp (ref R1)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 59234048))
(comp (ref J3)
(value CONN_02X03)
(footprint Pin_Headers:Pin_Header_Straight_2x03_Pitch2.54mm)
(libsource (lib conn) (part CONN_02X03))
(sheetpath (names /) (tstamps /))
(tstamp 5923A26D))
(comp (ref R4)
(value 10k)
(footprint Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 5923D330))
(comp (ref J1)
(value CONN_01X05)
(footprint Pin_Headers:Pin_Header_Straight_1x05_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /) (tstamps /))
(tstamp 5921F482))
(comp (ref SW1)
(value KEY_ESC)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 591F333D))
(comp (ref D1)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59206F6F))
(comp (ref SW2)
(value KEY_1)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207040))
(comp (ref D2)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207046))
(comp (ref SW3)
(value KEY_2)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592070FA))
(comp (ref D3)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207100))
(comp (ref SW4)
(value KEY_3)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592072EB))
(comp (ref D4)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592072F1))
(comp (ref SW5)
(value KEY_4)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207381))
(comp (ref D5)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207387))
(comp (ref SW6)
(value KEY_5)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207415))
(comp (ref D6)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920741B))
(comp (ref SW7)
(value KEY_6)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920754D))
(comp (ref D7)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207553))
(comp (ref SW8)
(value KEY_7)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920778A))
(comp (ref D8)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207790))
(comp (ref SW9)
(value KEY_8)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920790A))
(comp (ref D9)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207910))
(comp (ref SW10)
(value KEY_9)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592079E2))
(comp (ref D10)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592079E8))
(comp (ref SW11)
(value KEY_0)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207D3A))
(comp (ref D11)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59207D40))
(comp (ref SW12)
(value KEY_MINUS)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208460))
(comp (ref D12)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208466))
(comp (ref SW13)
(value KEY_EQUAL)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920856E))
(comp (ref D13)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208574))
(comp (ref SW14)
(value KEY_DELETE)
(footprint cherrymx:CHERRY_PCB_200H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208690))
(comp (ref D14)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208696))
(comp (ref SW15)
(value KEY_TAB)
(footprint cherrymx:CHERRY_PCB_150H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208FEC))
(comp (ref D15)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59208FF2))
(comp (ref SW16)
(value KEY_Q)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209228))
(comp (ref D16)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920922E))
(comp (ref SW17)
(value KEY_W)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209C1C))
(comp (ref D17)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209C22))
(comp (ref SW18)
(value KEY_E)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209DCC))
(comp (ref D18)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209DD2))
(comp (ref SW19)
(value KEY_R)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209F43))
(comp (ref D19)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59209F49))
(comp (ref SW20)
(value KEY_T)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A0CD))
(comp (ref D20)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A0D3))
(comp (ref SW21)
(value KEY_Y)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A268))
(comp (ref D21)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A26E))
(comp (ref SW22)
(value KEY_U)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A43A))
(comp (ref D22)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920A440))
(comp (ref SW23)
(value KEY_I)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920AA3F))
(comp (ref D23)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920AA45))
(comp (ref SW24)
(value KEY_O)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920AC09))
(comp (ref D24)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920AC0F))
(comp (ref SW25)
(value KEY_P)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920B084))
(comp (ref D25)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920B08A))
(comp (ref SW26)
(value KEY_LBRACK)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920B274))
(comp (ref D26)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920B27A))
(comp (ref SW27)
(value KEY_RBRACK)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920DC34))
(comp (ref D27)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920DC3A))
(comp (ref SW28)
(value KEY_BACKSLH)
(footprint cherrymx:CHERRY_PCB_150H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920DE48))
(comp (ref D28)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920DE4E))
(comp (ref SW29)
(value KEY_CAPS)
(footprint cherrymx:CHERRY_PCB_175H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920EE5E))
(comp (ref D29)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920EE64))
(comp (ref SW30)
(value KEY_A)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F093))
(comp (ref D30)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F099))
(comp (ref SW31)
(value KEY_S)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F2D5))
(comp (ref D31)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F2DB))
(comp (ref SW32)
(value KEY_D)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F528))
(comp (ref D32)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F52E))
(comp (ref SW33)
(value KEY_F)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F78C))
(comp (ref D33)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920F792))
(comp (ref SW34)
(value KEY_G)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920FA01))
(comp (ref D34)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5920FA07))
(comp (ref SW35)
(value KEY_H)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592100C7))
(comp (ref D35)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592100CD))
(comp (ref SW36)
(value KEY_J)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921035E))
(comp (ref D36)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59210364))
(comp (ref SW37)
(value KEY_K)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59210606))
(comp (ref D37)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921060C))
(comp (ref SW38)
(value KEY_L)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592108BF))
(comp (ref D38)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592108C5))
(comp (ref SW39)
(value KEY_SEMI)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592115A5))
(comp (ref D39)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592115AB))
(comp (ref SW40)
(value KEY_APOS)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592119BF))
(comp (ref D40)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592119C5))
(comp (ref SW41)
(value KEY_ENTER)
(footprint cherrymx:CHERRY_PCB_225H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59211CAF))
(comp (ref D41)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59211CB5))
(comp (ref SW42)
(value KEY_LSHIFT)
(footprint cherrymx:CHERRY_PCB_225H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59213522))
(comp (ref D42)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59213528))
(comp (ref SW43)
(value KEY_Z)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592139D9))
(comp (ref D43)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592139DF))
(comp (ref SW44)
(value KEY_X)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59213CFB))
(comp (ref D44)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59213D01))
(comp (ref SW45)
(value KEY_C)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921434C))
(comp (ref D45)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59214352))
(comp (ref SW46)
(value KEY_V)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921468E))
(comp (ref D46)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59214694))
(comp (ref SW47)
(value KEY_B)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592149E5))
(comp (ref D47)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592149EB))
(comp (ref SW48)
(value KEY_N)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59214D49))
(comp (ref D48)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59214D4F))
(comp (ref SW49)
(value KEY_M)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921553E))
(comp (ref D49)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59215544))
(comp (ref SW50)
(value KEY_COMMA)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592158C4))
(comp (ref D50)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592158CA))
(comp (ref SW51)
(value KEY_PERIOD)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59215FE3))
(comp (ref D51)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59215FE9))
(comp (ref SW52)
(value KEY_SLASH)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59216A53))
(comp (ref D52)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59216A59))
(comp (ref SW54)
(value KEY_RSHIFT)
(footprint cherrymx:CHERRY_PCB_175H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592177FB))
(comp (ref D54)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59217801))
(comp (ref SW55)
(value KEY_LCTRL)
(footprint cherrymx:CHERRY_PCB_125H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921B35B))
(comp (ref D55)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921B361))
(comp (ref SW56)
(value KEY_SPECIAL)
(footprint cherrymx:CHERRY_PCB_125H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921B819))
(comp (ref D56)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921B81F))
(comp (ref SW57)
(value KEY_LALT)
(footprint cherrymx:CHERRY_PCB_125H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921BC08))
(comp (ref D57)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921BC0E))
(comp (ref SW58)
(value KEY_SPACE)
(footprint cherrymx:CHERRY_PCB_625H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921C154))
(comp (ref D58)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921C15A))
(comp (ref SW59)
(value KEY_RALT)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921C645))
(comp (ref D59)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921C64B))
(comp (ref SW60)
(value KEY_FN)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921CD21))
(comp (ref D60)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921CD27))
(comp (ref SW61)
(value KEY_RCTRL)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921E900))
(comp (ref D61)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 5921E906))
(comp (ref SW53)
(value KEY_UP)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592486F6))
(comp (ref D53)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592486FC))
(comp (ref SW63)
(value KEY_DOWN)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59248D0F))
(comp (ref D63)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59248D15))
(comp (ref SW62)
(value KEY_LEFT)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592494BF))
(comp (ref D62)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 592494C5))
(comp (ref SW64)
(value KEY_RIGHT)
(footprint cherrymx:CHERRY_PCB_100H)
(libsource (lib switches) (part SW_DPST_x2))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59249A11))
(comp (ref D64)
(value D)
(footprint cherrymx:DIODE)
(libsource (lib device) (part D))
(sheetpath (names /matrix/) (tstamps /591F3117/))
(tstamp 59249A17)))
(libparts
(libpart (lib atmel) (part ATMEGA16U4-AU)
(aliases
(alias ATMEGA16U4RC-AU)
(alias ATMEGA32U4-AU)
(alias ATMEGA32U4RC-AU))
(description "TQFP44, 16K Flash, 1.25K SRAM, 512B EEPROM, USB2.0")
(docs http://www.atmel.com/images/atmel-7766-8-bit-avr-atmega16u4-32u4_%20datasheet.pdf)
(footprints
(fp TQFP44))
(fields
(field (name Reference) U)
(field (name Value) ATMEGA16U4-AU)
(field (name Footprint) TQFP44))
(pins
(pin (num 1) (name "(INT6/AIN0)PE6") (type BiDi))
(pin (num 2) (name UVCC) (type power_in))
(pin (num 3) (name D-) (type BiDi))
(pin (num 4) (name D+) (type BiDi))
(pin (num 5) (name UGND) (type passive))
(pin (num 6) (name UCAP) (type passive))
(pin (num 7) (name VBUS) (type passive))
(pin (num 8) (name "(SS/PCINT0)PB0") (type BiDi))
(pin (num 9) (name "(SCLK/PCINT1)PB1") (type BiDi))
(pin (num 10) (name "(PDI/MOSI/PCINT2)PB2") (type BiDi))
(pin (num 11) (name "(PDO/MISO/PCINT3)PB3") (type BiDi))
(pin (num 12) (name "(OC0A/OC1C/~RTS~/PCINT7)PB7") (type BiDi))
(pin (num 13) (name ~RESET~) (type input))
(pin (num 14) (name VCC) (type power_in))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name XTAL2) (type output))
(pin (num 17) (name XTAL1) (type input))
(pin (num 18) (name "(OC0B/SCL/INT0)PD0") (type BiDi))
(pin (num 19) (name "(SDA/INT1)PD1") (type BiDi))
(pin (num 20) (name "(RXD/INT2)PD2") (type BiDi))
(pin (num 21) (name "(TXD/INT3)PD3") (type BiDi))
(pin (num 22) (name "(XCK1/~CTS~)PD5") (type BiDi))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name AVCC) (type power_in))
(pin (num 25) (name "(ICP2/ADC8)PD4") (type BiDi))
(pin (num 26) (name "(T1/~OC4D~/ADC9)PD6") (type BiDi))
(pin (num 27) (name "(T0/OC4D/ADC10)PD7") (type BiDi))
(pin (num 28) (name "(ADC11/PCINT4)PB4") (type BiDi))
(pin (num 29) (name "(ADC12/OC1A/~OC4B~/PCINT12)PB5") (type BiDi))
(pin (num 30) (name "(ADC13/OC1B/OC4B/PCINT13)PB6") (type BiDi))
(pin (num 31) (name "(OC3A/~OC4A~)PC6") (type BiDi))
(pin (num 32) (name "(ICP3/CLK0/OC4A)PC7") (type BiDi))
(pin (num 33) (name "(~HWB~)PE2") (type BiDi))
(pin (num 34) (name VCC) (type power_in))
(pin (num 35) (name GND) (type power_in))
(pin (num 36) (name "(ADC7/TDI)PF7") (type BiDi))
(pin (num 37) (name "(ADC6/TDO)PF6") (type BiDi))
(pin (num 38) (name "(ADC5/TMS)PF5") (type BiDi))
(pin (num 39) (name "(ADC4/TCK)PF4") (type BiDi))
(pin (num 40) (name "(ADC1)PF1") (type BiDi))
(pin (num 41) (name "(ADC0)PF0") (type BiDi))
(pin (num 42) (name AREF) (type passive))
(pin (num 43) (name GND) (type power_in))
(pin (num 44) (name AVCC) (type power_in))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X05)
(description "Connector, single row, 01x05, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))))
(libpart (lib conn) (part CONN_02X03)
(description "Connector, double row, 02x03, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*)
(fp IDC_Header_Straight_*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part D)
(description Diode)
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp R_*))