-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsu120.net
1424 lines (1424 loc) · 54.4 KB
/
su120.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:\work\2019\selfmadekeyboard\su120\su120.sch)
(date "2020/01/05 0:08:12")
(tool "Eeschema (5.0.2)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "SU120 Yakitori Keyboard")
(company @e3w2q)
(rev 8)
(date)
(source su120.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D1)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465AE7))
(comp (ref D2)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B4657D8))
(comp (ref D3)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465834))
(comp (ref D4)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465930))
(comp (ref D6)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465C74))
(comp (ref D7)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465C80))
(comp (ref D8)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465C8C))
(comp (ref D9)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5B465C98))
(comp (ref SW1)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B1D6))
(comp (ref SW2)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B248))
(comp (ref SW3)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B29E))
(comp (ref SW4)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B2EA))
(comp (ref SW6)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B33A))
(comp (ref SW7)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B3A2))
(comp (ref SW8)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B3F4))
(comp (ref SW9)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C43B44C))
(comp (ref D5)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C485046))
(comp (ref D10)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C48504D))
(comp (ref SW5)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C485058))
(comp (ref SW10)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C485061))
(comp (ref H23)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C480499))
(comp (ref H8)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C488E99))
(comp (ref H3)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C488EF9))
(comp (ref H28)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C488F59))
(comp (ref H15)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C489A90))
(comp (ref H16)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C489B2D))
(comp (ref H35)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C489B99))
(comp (ref H36)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C489C05))
(comp (ref H2)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C495146))
(comp (ref H7)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4951C4))
(comp (ref H22)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C495230))
(comp (ref H27)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C49529C))
(comp (ref H26)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C495304))
(comp (ref H21)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C49537C))
(comp (ref H6)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4953F0))
(comp (ref H1)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C495462))
(comp (ref H13)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C487CA7))
(comp (ref H14)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C487D31))
(comp (ref H11)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A4E75))
(comp (ref H31)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A4EF9))
(comp (ref H32)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A4F7F))
(comp (ref H12)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A5005))
(comp (ref H34)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A7D52))
(comp (ref H33)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A7DEA))
(comp (ref H37)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A8698))
(comp (ref H17)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A8722))
(comp (ref H18)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A87BA))
(comp (ref H38)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A8848))
(comp (ref H19)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A900B))
(comp (ref H39)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A90A3))
(comp (ref H40)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A913B))
(comp (ref H20)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A91D1))
(comp (ref H4)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A98DB))
(comp (ref H9)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A9981))
(comp (ref H24)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A9A19))
(comp (ref H29)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A9AB1))
(comp (ref H5)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4A9F79))
(comp (ref H10)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4AA027))
(comp (ref H25)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4AA0C7))
(comp (ref H30)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C4AA169))
(comp (ref D16)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC1E))
(comp (ref D17)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC2A))
(comp (ref SW16)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC38))
(comp (ref SW17)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC44))
(comp (ref H41)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC7E))
(comp (ref H43)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DC86))
(comp (ref H46)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCB6))
(comp (ref H45)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCBE))
(comp (ref H47)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCC6))
(comp (ref H48)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCCE))
(comp (ref H42)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCE5))
(comp (ref H44)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5C71DCED))
(comp (ref U1)
(value ProMicro)
(footprint "#footprint:ArduinoProMicro-ZigZag_rev5")
(libsource (lib "#library") (part ProMicro) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CE18F26))
(comp (ref J1)
(value MJ-4PP-9)
(footprint "#footprint:MJ-4PP-9")
(libsource (lib "#library") (part MJ-4PP-9) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CE190C3))
(comp (ref SW18)
(value SW_Push)
(footprint "#footprint:ResetSW")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE3F474))
(comp (ref J2)
(value Conn_01x03)
(footprint "#footprint:StripLED_rev2")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE3FF01))
(comp (ref D11)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCBF))
(comp (ref D12)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCC5))
(comp (ref D13)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCCB))
(comp (ref D14)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCD1))
(comp (ref SW11)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCD8))
(comp (ref SW12)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCDE))
(comp (ref SW13)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCE4))
(comp (ref SW14)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCEA))
(comp (ref D15)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCF0))
(comp (ref SW15)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CCF6))
(comp (ref H115)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD00))
(comp (ref H120)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD09))
(comp (ref H127)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD11))
(comp (ref H128)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD19))
(comp (ref H114)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD21))
(comp (ref H119)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD28))
(comp (ref H118)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD2E))
(comp (ref H113)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD34))
(comp (ref H123)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD46))
(comp (ref H124)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD4E))
(comp (ref H126)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD57))
(comp (ref H125)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD5F))
(comp (ref H129)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD67))
(comp (ref H130)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD6F))
(comp (ref H131)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD77))
(comp (ref H132)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD7F))
(comp (ref H116)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD86))
(comp (ref H121)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD8D))
(comp (ref H117)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD94))
(comp (ref H122)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE4CD9B))
(comp (ref D18)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B1E1))
(comp (ref D19)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B200))
(comp (ref H137)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B292))
(comp (ref H138)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B29A))
(comp (ref H139)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2A2))
(comp (ref H140)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2AA))
(comp (ref H133)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2B0))
(comp (ref H135)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2B8))
(comp (ref H134)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2BF))
(comp (ref H136)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5B2C7))
(comp (ref J3)
(value Conn_01x08)
(footprint "#footprint:PinHeader_1x08_P2.54mm_Vertical_rev2")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x08) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5F218))
(comp (ref J4)
(value Conn_01x08)
(footprint "#footprint:PinHeader_1x08_P2.54mm_Vertical_rev2")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x08) (description "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CE5F3DE))
(comp (ref J5)
(value Conn_01x03)
(footprint "#footprint:StripLED_rev2")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5CECDBE5))
(comp (ref J6)
(value MJ-4PP-9)
(footprint "#footprint:MJ-4PP-9")
(libsource (lib "#library") (part MJ-4PP-9) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5CF7DFCF))
(comp (ref JP3)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF26B8A))
(comp (ref JP5)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF2E5BF))
(comp (ref JP2)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF5C09D))
(comp (ref JP4)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF79A09))
(comp (ref JP6)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CF978D0))
(comp (ref JP1)
(value SolderJumper_2_Open)
(footprint "#footprint:SolderJumper-2_P1.3mm_Open_Pad1.0x1.0mm")
(datasheet ~)
(libsource (lib Jumper) (part SolderJumper_2_Open) (description "Solder Jumper, 2-pole, open"))
(sheetpath (names /) (tstamps /))
(tstamp 5CFA8768))
(comp (ref D20)
(value D)
(footprint "#footprint:diode_TH_SMD_rev2")
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD16))
(comp (ref SW21)
(value SW_Push)
(footprint "#footprint:CherryMX_MidHeight_Choc_Hotswap_rev5")
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD1C))
(comp (ref H212)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD24))
(comp (ref H213)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD2B))
(comp (ref H210)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD31))
(comp (ref H211)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D04CD38))
(comp (ref H50)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D363A98))
(comp (ref H49)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5D363BD2))
(comp (ref SW19)
(value Rotary_Encoder_Switch)
(footprint "#footprint:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_rev2")
(datasheet ~)
(libsource (lib Device) (part Rotary_Encoder_Switch) (description "Rotary encoder, dual channel, incremental quadrate outputs, with switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5D659111))
(comp (ref SW20)
(value Rotary_Encoder_Switch)
(footprint "#footprint:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_rev2")
(datasheet ~)
(libsource (lib Device) (part Rotary_Encoder_Switch) (description "Rotary encoder, dual channel, incremental quadrate outputs, with switch"))
(sheetpath (names /) (tstamps /))
(tstamp 5D6595AB))
(comp (ref H57)
(value MountingHole_Pad)
(footprint "#footprint:1pin_conn")
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F561B))
(comp (ref J8)
(value Conn_02x05_Odd_Even)
(footprint "#footprint:IDC-Header_2x05_P2.54mm_Vertical")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E124F08))
(comp (ref J7)
(value Conn_02x05_Odd_Even)
(footprint "#footprint:IDC-Header_2x05_P2.54mm_Vertical")
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5E113B23)))
(libparts
(libpart (lib "#library") (part MJ-4PP-9)
(fields
(field (name Reference) J)
(field (name Value) MJ-4PP-9))
(pins
(pin (num A) (name ~) (type input))
(pin (num B) (name ~) (type input))
(pin (num C) (name ~) (type input))
(pin (num D) (name ~) (type input))))
(libpart (lib "#library") (part ProMicro)
(fields
(field (name Reference) U)
(field (name Value) ProMicro))
(pins
(pin (num 1) (name TX/D3) (type BiDi))
(pin (num 2) (name RX/D2) (type BiDi))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA/D1) (type BiDi))
(pin (num 6) (name SCL/D0) (type BiDi))
(pin (num 7) (name D4) (type BiDi))
(pin (num 8) (name C6) (type BiDi))
(pin (num 9) (name D7) (type BiDi))
(pin (num 10) (name E6) (type BiDi))
(pin (num 11) (name B4) (type BiDi))
(pin (num 12) (name B5) (type BiDi))
(pin (num 13) (name B6) (type BiDi))
(pin (num 14) (name B2) (type BiDi))
(pin (num 15) (name B3) (type BiDi))
(pin (num 16) (name B1) (type BiDi))
(pin (num 17) (name F7) (type BiDi))
(pin (num 18) (name F6) (type BiDi))
(pin (num 19) (name F5) (type BiDi))
(pin (num 20) (name F4) (type BiDi))
(pin (num 21) (name VCC) (type power_in))
(pin (num 22) (name RST) (type input))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name RAW) (type power_out))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(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))))
(libpart (lib Connector_Generic) (part Conn_01x08)