-
Notifications
You must be signed in to change notification settings - Fork 0
/
Keeber.kicad_pcb 2.net
1497 lines (1497 loc) · 55 KB
/
Keeber.kicad_pcb 2.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source "C:\\Users\\Kagen\\OneDrive\\Documents\\Keeber\\Keeber.kicad_pcb 2.sch")
(date "1/23/2021 2:47:21 PM")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source "Keeber.kicad_pcb 2.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 5FDB91F2))
(comp (ref X1)
(value XTAL_GND)
(footprint Crystal:Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering)
(libsource (lib keyboard_parts) (part XTAL_GND) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDBA60A))
(comp (ref C1)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDBDBA0))
(comp (ref C2)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDBED13))
(comp (ref C3)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDC5375))
(comp (ref C4)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDC618F))
(comp (ref C5)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDC6C58))
(comp (ref C6)
(value 0.1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDC7181))
(comp (ref C7)
(value 4.7u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDC7880))
(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 5FDCB5D1))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(libsource (lib keyboard_parts) (part R) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDCC9AE))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(libsource (lib keyboard_parts) (part R) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDD3998))
(comp (ref R3)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(libsource (lib keyboard_parts) (part R) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDEC5D1))
(comp (ref R4)
(value 22)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder)
(libsource (lib keyboard_parts) (part R) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDED240))
(comp (ref C8)
(value 1u)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder)
(libsource (lib keyboard_parts) (part C) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FDF057B))
(comp (ref K1)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE01840))
(comp (ref D1)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE02F8B))
(comp (ref K2)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE03DD7))
(comp (ref D2)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE0602C))
(comp (ref K3)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE0E8CA))
(comp (ref D3)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE109BB))
(comp (ref K4)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1119D))
(comp (ref D4)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE121EE))
(comp (ref K5)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE128F1))
(comp (ref D5)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE13159))
(comp (ref K6)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE17186))
(comp (ref D6)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE17AA7))
(comp (ref K7)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1828A))
(comp (ref K8)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1A7D0))
(comp (ref K9)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1B222))
(comp (ref K10)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1C3BF))
(comp (ref K11)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1CB82))
(comp (ref K12)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1D24B))
(comp (ref K13)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1DD01))
(comp (ref K14)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_2.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1E4EC))
(comp (ref K15)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1EE1B))
(comp (ref D7)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE1FC7C))
(comp (ref D8)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE2083C))
(comp (ref D9)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE210C4))
(comp (ref D10)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE2194E))
(comp (ref D11)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE22576))
(comp (ref D12)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE22E5E))
(comp (ref D13)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE23590))
(comp (ref D14)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE241EC))
(comp (ref D15)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FE248A3))
(comp (ref K16)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.50u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE633D))
(comp (ref D16)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6357))
(comp (ref K17)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6361))
(comp (ref D17)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE636D))
(comp (ref K18)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6379))
(comp (ref D18)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6383))
(comp (ref K19)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE638D))
(comp (ref D19)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6397))
(comp (ref K20)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63A1))
(comp (ref D20)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63AB))
(comp (ref K21)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63BA))
(comp (ref D21)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63C4))
(comp (ref K22)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63CE))
(comp (ref K23)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63D8))
(comp (ref K24)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63E2))
(comp (ref K25)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63EC))
(comp (ref K26)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE63F6))
(comp (ref K27)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6400))
(comp (ref K28)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE640A))
(comp (ref K29)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.50u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6414))
(comp (ref K30)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE641E))
(comp (ref D22)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6428))
(comp (ref D23)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6432))
(comp (ref D24)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE643C))
(comp (ref D25)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6446))
(comp (ref D26)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6450))
(comp (ref D27)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE645A))
(comp (ref D28)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6464))
(comp (ref D29)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE646E))
(comp (ref D30)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEE6478))
(comp (ref K31)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.75u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7021))
(comp (ref D31)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF702B))
(comp (ref K32)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7035))
(comp (ref D32)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7041))
(comp (ref K34)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7061))
(comp (ref D34)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF706B))
(comp (ref K35)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7075))
(comp (ref D35)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF707F))
(comp (ref K36)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF708E))
(comp (ref D36)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7098))
(comp (ref K37)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70A2))
(comp (ref K38)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70AC))
(comp (ref K39)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70B6))
(comp (ref K40)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70C0))
(comp (ref K41)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70CA))
(comp (ref K42)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70D4))
(comp (ref K43)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_2.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70DE))
(comp (ref K44)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70E8))
(comp (ref D37)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF70FC))
(comp (ref D38)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7106))
(comp (ref D39)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7110))
(comp (ref D40)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF711A))
(comp (ref D41)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7124))
(comp (ref D42)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF712E))
(comp (ref D43)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7138))
(comp (ref D44)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FEF7142))
(comp (ref K45)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_2.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DAF1))
(comp (ref D45)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DAFB))
(comp (ref K46)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB05))
(comp (ref D46)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB11))
(comp (ref K47)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB1D))
(comp (ref D47)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB27))
(comp (ref K48)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB31))
(comp (ref D48)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB3B))
(comp (ref K49)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB45))
(comp (ref D49)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB4F))
(comp (ref K50)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB5E))
(comp (ref D50)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB68))
(comp (ref K51)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB72))
(comp (ref K52)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB7C))
(comp (ref K53)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB86))
(comp (ref K54)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB90))
(comp (ref K55)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DB9A))
(comp (ref K56)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.75u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBA4))
(comp (ref K57)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBAE))
(comp (ref K58)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBB8))
(comp (ref D51)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBCC))
(comp (ref D52)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBD6))
(comp (ref D53)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBE0))
(comp (ref D54)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBEA))
(comp (ref D55)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBF4))
(comp (ref D56)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DBFE))
(comp (ref D57)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DC08))
(comp (ref D58)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF0DC12))
(comp (ref K59)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F4A))
(comp (ref D59)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F54))
(comp (ref K60)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F5E))
(comp (ref D60)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F6A))
(comp (ref K61)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F76))
(comp (ref D61)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F80))
(comp (ref K62)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_6.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F8A))
(comp (ref D62)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F94))
(comp (ref K63)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29F9E))
(comp (ref D63)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FA8))
(comp (ref K64)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FB7))
(comp (ref D64)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FC1))
(comp (ref K65)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FCB))
(comp (ref K66)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FD5))
(comp (ref K67)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF29FDF))
(comp (ref D65)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF2A025))
(comp (ref D66)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF2A02F))
(comp (ref D67)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5FF2A039))
(comp (ref D33)
(value D)
(footprint keyboard_parts:D_SOD123_axial)
(libsource (lib keyboard_parts) (part D) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 600C805A))
(comp (ref K33)
(value KEYSW)
(footprint Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 603A2315))
(comp (ref J1)
(value "SM05B-SRSS-TB(LF)(SN)")
(footprint "JST_SM05B-SRSS-TB(LF)(SN)")
(fields
(field (name MANUFACTURER) JST)
(field (name STANDARD) "Manufacturer Recommendations"))
(libsource (lib SM05B-SRSS-TB_LF__SN_) (part "SM05B-SRSS-TB(LF)(SN)") (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 600EF3A4)))
(libparts
(libpart (lib SM05B-SRSS-TB_LF__SN_) (part "SM05B-SRSS-TB(LF)(SN)")
(fields
(field (name Reference) J)
(field (name Value) "SM05B-SRSS-TB(LF)(SN)")
(field (name Footprint) "JST_SM05B-SRSS-TB(LF)(SN)")
(field (name STANDARD) "Manufacturer Recommendations")
(field (name MANUFACTURER) JST))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num S1) (name SHIELD) (type passive))
(pin (num S2) (name SHIELD) (type passive))))
(libpart (lib keyboard_parts) (part ATMEGA32U4)
(fields
(field (name Reference) U)
(field (name Value) ATMEGA32U4))
(pins
(pin (num 1) (name PE6/AIN0) (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 power_in))
(pin (num 6) (name UCap) (type input))
(pin (num 7) (name VBus) (type input))
(pin (num 8) (name PB0/SS) (type BiDi))
(pin (num 9) (name PB1/SCK) (type BiDi))
(pin (num 10) (name PB2/MOSI) (type BiDi))
(pin (num 11) (name PB3/MISO) (type BiDi))
(pin (num 12) (name PB7/~RTS) (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 XTAL1) (type input))
(pin (num 17) (name XTAL2) (type output))
(pin (num 18) (name PD0/INT0) (type BiDi))
(pin (num 19) (name PD1/INT1) (type BiDi))
(pin (num 20) (name PD2/RXD1) (type BiDi))
(pin (num 21) (name PD3/TXD1) (type BiDi))
(pin (num 22) (name PD5/XCK1) (type BiDi))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name AVCC) (type power_in))
(pin (num 25) (name ICP1/PD4) (type BiDi))
(pin (num 26) (name T1/PD6) (type BiDi))
(pin (num 27) (name T0/PD7) (type BiDi))
(pin (num 28) (name PB4) (type BiDi))
(pin (num 29) (name PB5) (type BiDi))
(pin (num 30) (name PB6) (type BiDi))
(pin (num 31) (name PC6) (type BiDi))
(pin (num 32) (name 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 PF7) (type BiDi))
(pin (num 37) (name PF6) (type BiDi))
(pin (num 38) (name PF5) (type BiDi))
(pin (num 39) (name PF4) (type BiDi))
(pin (num 40) (name PF1) (type BiDi))
(pin (num 41) (name PF0) (type BiDi))
(pin (num 42) (name AREF) (type input))
(pin (num 43) (name GND) (type power_in))
(pin (num 44) (name AVCC) (type power_in))))
(libpart (lib keyboard_parts) (part C)
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib keyboard_parts) (part D)
(fields
(field (name Reference) D)
(field (name Value) D))