-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyKeeb.net
914 lines (914 loc) · 36.5 KB
/
MyKeeb.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
(export (version D)
(design
(source C:\Users\drako\Documents\KiCAD\MyKeeb\MyKeeb\MyKeeb.sch)
(date "2021-03-22 10:42:56 PM")
(tool "Eeschema (5.1.9)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title MyKeeb)
(company)
(rev A)
(date 2021-03-18)
(source MyKeeb.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U101)
(value ATmega32U4-AU)
(footprint Package_QFP:TQFP-44_10x10mm_P0.8mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-7766-8-bit-AVR-ATmega16U4-32U4_Datasheet.pdf)
(libsource (lib MCU_Microchip_ATmega) (part ATmega32U4-AU) (description "16MHz, 32kB Flash, 2.5kB SRAM, 1kB EEPROM, USB 2.0, TQFP-44"))
(sheetpath (names /) (tstamps /))
(tstamp 605614B2))
(comp (ref R104)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605680CD))
(comp (ref C103)
(value 0.1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6056E63A))
(comp (ref C104)
(value 0.1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6056EC7B))
(comp (ref C105)
(value 0.1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 6056F3B1))
(comp (ref C106)
(value 0.1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60570A74))
(comp (ref J102)
(value USB_C_Receptacle_USB2.0)
(footprint Connector_USB:USB_C_Receptacle_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 6057349B))
(comp (ref R105)
(value 22)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60579FD5))
(comp (ref R106)
(value 22)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 6057B380))
(comp (ref C108)
(value 22p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60584F4E))
(comp (ref C107)
(value 22p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60586185))
(comp (ref R101)
(value 5.1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605A1D15))
(comp (ref R102)
(value 5.1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605A41D3))
(comp (ref C101)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 605BE356))
(comp (ref R103)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605C49A4))
(comp (ref F101)
(value Polyfuse_Small)
(footprint Fuse:Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 605584C2))
(comp (ref D105)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60599372))
(comp (ref C102)
(value 4.7u)
(footprint Capacitor_SMD:C_Elec_4x5.4)
(datasheet ~)
(libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 605A238A))
(comp (ref Y101)
(value Crystal_GND24)
(footprint Crystal:Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 605B0631))
(comp (ref SW105)
(value R1_C0_KPNLCK)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605C52BD))
(comp (ref D106)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605D5CDD))
(comp (ref SW106)
(value R1_C1_KPSLASH)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605D5CE3))
(comp (ref D107)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605D78AF))
(comp (ref SW107)
(value R1_C2_KPASTRK)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605D7BB7))
(comp (ref D109)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605DACD0))
(comp (ref SW109)
(value R2_C0_KP7)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605DB006))
(comp (ref D110)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605DB012))
(comp (ref SW110)
(value R2_C1_KP8)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605DB01C))
(comp (ref D111)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605DB028))
(comp (ref SW111)
(value R2_C2_KP9)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605DB032))
(comp (ref D113)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601992))
(comp (ref SW113)
(value R3_C0_KP4)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D52))
(comp (ref D114)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D5E))
(comp (ref SW114)
(value R3_C1_KP5)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D68))
(comp (ref D115)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D74))
(comp (ref SW115)
(value R3_C2_KP6)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D7E))
(comp (ref D116)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D8A))
(comp (ref SW116)
(value R4_C0_KP1)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601D94))
(comp (ref D117)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601DA0))
(comp (ref SW117)
(value R4_C1_KP2)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601DAA))
(comp (ref D118)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60601DB6))
(comp (ref SW118)
(value R4_C2_KP3)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60601DC0))
(comp (ref SW122)
(value RESET_SW)
(footprint Button_Switch_SMD:SW_SPST_SKQG_WithoutStem)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 60584437))
(comp (ref R108)
(value 18k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605BBE74))
(comp (ref R107)
(value 18k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 605BDBB7))
(comp (ref J101)
(value I2C_DISP_CONN)
(footprint Connector_PinSocket_2.54mm:PinSocket_1x04_P2.54mm_Horizontal)
(datasheet ~)
(libsource (lib Connector_Generic_MountingPin) (part Conn_01x04_MountingPin) (description "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 605D63D2))
(comp (ref D119)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605B9617))
(comp (ref SW119)
(value R5_C0_KP0)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_2.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605B961D))
(comp (ref D120)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605C31AB))
(comp (ref SW120)
(value R5_C0_PERIOD)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605C31B1))
(comp (ref D121)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605CE03B))
(comp (ref SW121)
(value R5_C0_ENTER)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_2.00u_Rotated)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605CE041))
(comp (ref D101)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605E963B))
(comp (ref SW101)
(value R0_C0_ESC)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605E9C27))
(comp (ref D102)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605E9C33))
(comp (ref SW102)
(value R0_C1_TAB)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605E9C3D))
(comp (ref D103)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 605E9C49))
(comp (ref SW103)
(value R0_C2_DEL)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 605E9C53))
(comp (ref D104)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 6060DABD))
(comp (ref SW104)
(value R0_C0_KPFN)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 6060E133))
(comp (ref D108)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 60627A10))
(comp (ref SW108)
(value R1_C0_KPMINUS)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_1.00u)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 606280B4))
(comp (ref D112)
(value 1N4148WS)
(footprint Diode_SMD:D_SOD-323)
(datasheet https://www.vishay.com/docs/85751/1n4148ws.pdf)
(libsource (lib Diode) (part 1N4148WS) (description "75V 0.15A Fast switching Diode, SOD-323"))
(sheetpath (names /) (tstamps /))
(tstamp 6071E13C))
(comp (ref SW112)
(value R2_C3_KPPLUS)
(footprint Switch_Keyboard_Cherry_MX:SW_Cherry_MX_PCB_2.00u_Rotated)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 6071E142)))
(libparts
(libpart (lib Connector) (part USB_C_Receptacle_USB2.0)
(description "USB 2.0-only Type-C Receptacle connector")
(docs https://www.usb.org/sites/default/files/documents/usb_type-c.zip)
(footprints
(fp USB*C*Receptacle*))
(fields
(field (name Reference) J)
(field (name Value) USB_C_Receptacle_USB2.0))
(pins
(pin (num A1) (name GND) (type passive))
(pin (num A4) (name VBUS) (type passive))
(pin (num A5) (name CC1) (type BiDi))
(pin (num A6) (name D+) (type BiDi))
(pin (num A7) (name D-) (type BiDi))
(pin (num A8) (name SBU1) (type BiDi))
(pin (num A9) (name VBUS) (type passive))
(pin (num A12) (name GND) (type passive))
(pin (num B1) (name GND) (type passive))
(pin (num B4) (name VBUS) (type passive))
(pin (num B5) (name CC2) (type BiDi))
(pin (num B6) (name D+) (type BiDi))
(pin (num B7) (name D-) (type BiDi))
(pin (num B8) (name SBU2) (type BiDi))
(pin (num B9) (name VBUS) (type passive))
(pin (num B12) (name GND) (type passive))
(pin (num S1) (name SHIELD) (type passive))))
(libpart (lib Connector_Generic_MountingPin) (part Conn_01x04_MountingPin)
(description "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??-1MP*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_MountingPin))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num MP) (name MountPin) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(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 Device) (part CP1)
(description "Polarized capacitor, US symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_GND24)
(description "Four pin crystal, GND on pins 2 and 4")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_GND24))
(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))))
(libpart (lib Device) (part Polyfuse_Small)
(description "Resettable fuse, polymeric positive temperature coefficient, small symbol")
(docs ~)
(footprints
(fp *polyfuse*)
(fp *PTC*))
(fields
(field (name Reference) F)
(field (name Value) Polyfuse_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Diode) (part 1N4148WS)
(aliases
(alias 1N4448WS)
(alias BAS316))
(description "75V 0.15A Fast switching Diode, SOD-323")
(docs https://www.vishay.com/docs/85751/1n4148ws.pdf)
(footprints
(fp D*SOD?323*))
(fields
(field (name Reference) D)
(field (name Value) 1N4148WS)
(field (name Footprint) Diode_SMD:D_SOD-323))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib MCU_Microchip_ATmega) (part ATmega16U4-AU)
(aliases
(alias ATmega16U4RC-AU)
(alias ATmega32U4-AU)
(alias ATmega32U4RC-AU))
(description "16MHz, 16kB Flash, 1.25kB SRAM, 512B EEPROM, USB 2.0, TQFP-44")
(docs http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-7766-8-bit-AVR-ATmega16U4-32U4_Datasheet.pdf)
(footprints
(fp TQFP*10x10mm*P0.8mm*))
(fields
(field (name Reference) U)
(field (name Value) ATmega16U4-AU)
(field (name Footprint) Package_QFP:TQFP-44_10x10mm_P0.8mm))
(pins
(pin (num 1) (name 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 input))
(pin (num 8) (name PB0) (type BiDi))
(pin (num 9) (name PB1) (type BiDi))
(pin (num 10) (name PB2) (type BiDi))
(pin (num 11) (name PB3) (type BiDi))
(pin (num 12) (name 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 PD0) (type BiDi))
(pin (num 19) (name PD1) (type BiDi))
(pin (num 20) (name PD2) (type BiDi))
(pin (num 21) (name PD3) (type BiDi))
(pin (num 22) (name PD5) (type BiDi))
(pin (num 23) (name GND) (type passive))
(pin (num 24) (name AVCC) (type power_in))
(pin (num 25) (name PD4) (type BiDi))
(pin (num 26) (name PD6) (type BiDi))
(pin (num 27) (name 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 passive))
(pin (num 35) (name GND) (type passive))
(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 passive))
(pin (num 43) (name GND) (type passive))
(pin (num 44) (name AVCC) (type passive))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive)))))
(libraries
(library (logical Connector)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector.lib"))
(library (logical Connector_Generic_MountingPin)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Connector_Generic_MountingPin.lib"))
(library (logical Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Device.lib"))
(library (logical Diode)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Diode.lib"))
(library (logical MCU_Microchip_ATmega)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/MCU_Microchip_ATmega.lib"))
(library (logical Switch)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/Switch.lib")))
(nets
(net (code 1) (name GND)
(node (ref U101) (pin 15))
(node (ref C105) (pin 2))
(node (ref U101) (pin 35))
(node (ref U101) (pin 23))
(node (ref C103) (pin 2))
(node (ref C104) (pin 2))
(node (ref U101) (pin 5))
(node (ref U101) (pin 43))
(node (ref C102) (pin 2))
(node (ref Y101) (pin 2))
(node (ref Y101) (pin 4))
(node (ref J102) (pin A12))
(node (ref J102) (pin B1))
(node (ref J102) (pin A1))
(node (ref J102) (pin S1))
(node (ref C106) (pin 2))
(node (ref C108) (pin 2))
(node (ref C107) (pin 2))
(node (ref R103) (pin 1))
(node (ref C101) (pin 1))
(node (ref R101) (pin 1))
(node (ref R102) (pin 1))
(node (ref J102) (pin B12))
(node (ref J101) (pin 1))
(node (ref SW122) (pin 1)))
(net (code 2) (name COL_2)
(node (ref SW103) (pin 2))
(node (ref SW121) (pin 2))
(node (ref SW111) (pin 2))
(node (ref SW115) (pin 2))
(node (ref SW107) (pin 2))
(node (ref U101) (pin 31))
(node (ref SW118) (pin 2)))
(net (code 3) (name "Net-(J101-PadMP)")
(node (ref J101) (pin MP)))
(net (code 4) (name VCC)
(node (ref R104) (pin 1))
(node (ref C103) (pin 1))
(node (ref C104) (pin 1))
(node (ref C105) (pin 1))
(node (ref R108) (pin 1))
(node (ref C106) (pin 1))
(node (ref R107) (pin 2))
(node (ref U101) (pin 24))
(node (ref U101) (pin 34))
(node (ref U101) (pin 14))
(node (ref U101) (pin 2))
(node (ref U101) (pin 7))
(node (ref C102) (pin 1))
(node (ref F101) (pin 1))
(node (ref J101) (pin 2))
(node (ref U101) (pin 44)))
(net (code 5) (name I2C_SDA)
(node (ref U101) (pin 19))
(node (ref R107) (pin 1))
(node (ref J101) (pin 4)))
(net (code 6) (name I2C_SCL)
(node (ref U101) (pin 18))
(node (ref J101) (pin 3))
(node (ref R108) (pin 2)))
(net (code 7) (name ROW_2)
(node (ref D112) (pin 2))
(node (ref D110) (pin 2))
(node (ref D111) (pin 2))
(node (ref D109) (pin 2))
(node (ref U101) (pin 27)))
(net (code 8) (name "Net-(D116-Pad1)")
(node (ref D116) (pin 1))
(node (ref SW116) (pin 1)))
(net (code 9) (name "Net-(D117-Pad1)")
(node (ref SW117) (pin 1))
(node (ref D117) (pin 1)))
(net (code 10) (name "Net-(D118-Pad1)")
(node (ref D118) (pin 1))
(node (ref SW118) (pin 1)))
(net (code 11) (name ROW_3)
(node (ref D115) (pin 2))
(node (ref D114) (pin 2))
(node (ref D113) (pin 2))
(node (ref U101) (pin 28)))
(net (code 12) (name ROW_1)
(node (ref D107) (pin 2))
(node (ref D106) (pin 2))
(node (ref U101) (pin 26))
(node (ref D105) (pin 2))
(node (ref D108) (pin 2)))
(net (code 13) (name "Net-(D108-Pad1)")
(node (ref SW108) (pin 1))
(node (ref D108) (pin 1)))
(net (code 14) (name "Net-(D104-Pad1)")
(node (ref D104) (pin 1))
(node (ref SW104) (pin 1)))
(net (code 15) (name ROW_4)
(node (ref U101) (pin 32))
(node (ref D117) (pin 2))
(node (ref D118) (pin 2))
(node (ref D116) (pin 2)))
(net (code 16) (name ROW_5)
(node (ref D120) (pin 2))
(node (ref U101) (pin 22))
(node (ref D119) (pin 2))
(node (ref D121) (pin 2)))
(net (code 17) (name COL_3)
(node (ref SW112) (pin 2))
(node (ref SW108) (pin 2))
(node (ref U101) (pin 21))
(node (ref SW104) (pin 2)))
(net (code 18) (name "Net-(D112-Pad1)")
(node (ref D112) (pin 1))
(node (ref SW112) (pin 1)))
(net (code 19) (name "Net-(D119-Pad1)")
(node (ref D119) (pin 1))
(node (ref SW119) (pin 1)))
(net (code 20) (name COL_0)
(node (ref SW101) (pin 2))
(node (ref SW116) (pin 2))
(node (ref SW109) (pin 2))
(node (ref U101) (pin 29))
(node (ref SW105) (pin 2))
(node (ref SW119) (pin 2))
(node (ref SW113) (pin 2)))
(net (code 21) (name "Net-(D120-Pad1)")
(node (ref SW120) (pin 1))
(node (ref D120) (pin 1)))
(net (code 22) (name COL_1)
(node (ref SW117) (pin 2))
(node (ref SW114) (pin 2))
(node (ref SW120) (pin 2))
(node (ref SW110) (pin 2))
(node (ref U101) (pin 30))
(node (ref SW102) (pin 2))
(node (ref SW106) (pin 2)))
(net (code 23) (name "Net-(D102-Pad1)")
(node (ref D102) (pin 1))
(node (ref SW102) (pin 1)))
(net (code 24) (name "Net-(D103-Pad1)")
(node (ref D103) (pin 1))
(node (ref SW103) (pin 1)))
(net (code 25) (name ROW_0)
(node (ref U101) (pin 25))
(node (ref D101) (pin 2))
(node (ref D103) (pin 2))
(node (ref D102) (pin 2))
(node (ref D104) (pin 2)))
(net (code 26) (name "Net-(D101-Pad1)")
(node (ref SW101) (pin 1))
(node (ref D101) (pin 1)))
(net (code 27) (name "Net-(D121-Pad1)")
(node (ref SW121) (pin 1))
(node (ref D121) (pin 1)))
(net (code 28) (name "Net-(F101-Pad2)")
(node (ref J102) (pin B9))
(node (ref J102) (pin B4))
(node (ref J102) (pin A9))
(node (ref J102) (pin A4))
(node (ref F101) (pin 2)))
(net (code 29) (name "Net-(J102-PadA8)")
(node (ref J102) (pin A8)))
(net (code 30) (name "Net-(J102-PadB8)")
(node (ref J102) (pin B8)))
(net (code 31) (name "Net-(R105-Pad1)")
(node (ref R105) (pin 1))
(node (ref U101) (pin 4)))
(net (code 32) (name "Net-(C107-Pad1)")
(node (ref C107) (pin 1))
(node (ref Y101) (pin 3))
(node (ref U101) (pin 16)))
(net (code 33) (name USB_D+)
(node (ref J102) (pin B6))
(node (ref J102) (pin A6))
(node (ref R105) (pin 2)))
(net (code 34) (name USB_D-)
(node (ref J102) (pin B7))
(node (ref J102) (pin A7))
(node (ref R106) (pin 2)))
(net (code 35) (name "Net-(C108-Pad1)")
(node (ref C108) (pin 1))
(node (ref U101) (pin 17))
(node (ref Y101) (pin 1)))
(net (code 36) (name "Net-(R106-Pad1)")
(node (ref R106) (pin 1))
(node (ref U101) (pin 3)))
(net (code 37) (name "Net-(R103-Pad2)")
(node (ref U101) (pin 33))
(node (ref R103) (pin 2)))
(net (code 38) (name "Net-(U101-Pad36)")
(node (ref U101) (pin 36)))
(net (code 39) (name "Net-(U101-Pad37)")
(node (ref U101) (pin 37)))
(net (code 40) (name "Net-(U101-Pad38)")
(node (ref U101) (pin 38)))
(net (code 41) (name "Net-(U101-Pad39)")
(node (ref U101) (pin 39)))
(net (code 42) (name "Net-(U101-Pad10)")
(node (ref U101) (pin 10)))
(net (code 43) (name "Net-(U101-Pad11)")
(node (ref U101) (pin 11)))
(net (code 44) (name "Net-(U101-Pad12)")
(node (ref U101) (pin 12)))
(net (code 45) (name "Net-(U101-Pad40)")
(node (ref U101) (pin 40)))
(net (code 46) (name "Net-(U101-Pad20)")
(node (ref U101) (pin 20)))
(net (code 47) (name "Net-(R104-Pad2)")
(node (ref U101) (pin 13))
(node (ref SW122) (pin 2))
(node (ref R104) (pin 2)))
(net (code 48) (name "Net-(U101-Pad9)")
(node (ref U101) (pin 9)))
(net (code 49) (name "Net-(U101-Pad8)")
(node (ref U101) (pin 8)))
(net (code 50) (name "Net-(U101-Pad42)")
(node (ref U101) (pin 42)))
(net (code 51) (name "Net-(U101-Pad41)")
(node (ref U101) (pin 41)))
(net (code 52) (name "Net-(D105-Pad1)")
(node (ref SW105) (pin 1))
(node (ref D105) (pin 1)))
(net (code 53) (name "Net-(D106-Pad1)")
(node (ref D106) (pin 1))
(node (ref SW106) (pin 1)))
(net (code 54) (name "Net-(D107-Pad1)")
(node (ref D107) (pin 1))
(node (ref SW107) (pin 1)))
(net (code 55) (name "Net-(D109-Pad1)")
(node (ref SW109) (pin 1))
(node (ref D109) (pin 1)))
(net (code 56) (name "Net-(D113-Pad1)")
(node (ref SW113) (pin 1))
(node (ref D113) (pin 1)))
(net (code 57) (name "Net-(D114-Pad1)")
(node (ref D114) (pin 1))
(node (ref SW114) (pin 1)))
(net (code 58) (name "Net-(D115-Pad1)")
(node (ref SW115) (pin 1))
(node (ref D115) (pin 1)))
(net (code 59) (name "Net-(D111-Pad1)")
(node (ref SW111) (pin 1))
(node (ref D111) (pin 1)))
(net (code 60) (name "Net-(D110-Pad1)")
(node (ref D110) (pin 1))
(node (ref SW110) (pin 1)))
(net (code 61) (name "Net-(J102-PadA5)")
(node (ref R101) (pin 2))
(node (ref J102) (pin A5)))
(net (code 62) (name "Net-(J102-PadB5)")
(node (ref R102) (pin 2))
(node (ref J102) (pin B5)))
(net (code 63) (name "Net-(U101-Pad1)")
(node (ref U101) (pin 1)))
(net (code 64) (name UCAP)
(node (ref U101) (pin 6))
(node (ref C101) (pin 2)))))