-
Notifications
You must be signed in to change notification settings - Fork 1
/
Macropad.net
982 lines (982 loc) · 33.1 KB
/
Macropad.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
(export (version D)
(design
(source C:/Users/Gtrx/Desktop/KICAD/pcb/Macropad.sch)
(date "06-Mar-18 9:28:43 PM")
(tool "Eeschema 4.0.7")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Macropad.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value ARDUINO_PRO_MICRO)
(footprint keebs:Pro_Micro)
(libsource (lib Atreus62-cache) (part ARDUINO_PRO_MICRO))
(sheetpath (names /) (tstamps /))
(tstamp 58242AD2))
(comp (ref MX1)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F444))
(comp (ref D1)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F45D))
(comp (ref R1)
(value R1)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F4E9))
(comp (ref MX2)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F5AF))
(comp (ref D2)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F5B5))
(comp (ref R2)
(value R2)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F5BB))
(comp (ref MX3)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6C5))
(comp (ref D3)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6CB))
(comp (ref R3)
(value R3)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6D1))
(comp (ref MX4)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6D7))
(comp (ref D4)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6DD))
(comp (ref R4)
(value R4)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F6E3))
(comp (ref MX5)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F78A))
(comp (ref D5)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F790))
(comp (ref R5)
(value R5)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F796))
(comp (ref MX6)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F951))
(comp (ref D6)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F957))
(comp (ref R6)
(value R6)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F95D))
(comp (ref MX7)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F963))
(comp (ref D7)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F969))
(comp (ref R7)
(value R7)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F96F))
(comp (ref MX8)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F975))
(comp (ref D8)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F97B))
(comp (ref R8)
(value R8)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F981))
(comp (ref MX9)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F987))
(comp (ref D9)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F98D))
(comp (ref R9)
(value R9)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F993))
(comp (ref MX10)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F999))
(comp (ref D10)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F99F))
(comp (ref R10)
(value R10)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91F9A5))
(comp (ref MX11)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE5E))
(comp (ref D11)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE64))
(comp (ref R11)
(value R11)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE6A))
(comp (ref MX12)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE70))
(comp (ref D12)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE76))
(comp (ref R12)
(value R12)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE7C))
(comp (ref MX13)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE82))
(comp (ref D13)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE88))
(comp (ref R13)
(value R13)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE8E))
(comp (ref MX14)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE94))
(comp (ref D14)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FE9A))
(comp (ref R14)
(value R14)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEA0))
(comp (ref MX15)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEA6))
(comp (ref D15)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEAC))
(comp (ref R15)
(value R15)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEB2))
(comp (ref MX16)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEB8))
(comp (ref D16)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEBE))
(comp (ref R16)
(value R16)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEC4))
(comp (ref MX17)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FECA))
(comp (ref D17)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FED0))
(comp (ref R17)
(value R17)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FED6))
(comp (ref MX18)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEDC))
(comp (ref D18)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEE2))
(comp (ref R18)
(value R18)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEE8))
(comp (ref MX19)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEEE))
(comp (ref D19)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEF4))
(comp (ref R19)
(value R19)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FEFA))
(comp (ref MX20)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FF00))
(comp (ref D20)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FF06))
(comp (ref R20)
(value R20)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A91FF0C))
(comp (ref MX21)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A92038E))
(comp (ref D21)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A920394))
(comp (ref R21)
(value R_Small)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A92039A))
(comp (ref MX22)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203A0))
(comp (ref D22)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203A6))
(comp (ref R22)
(value R22)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203AC))
(comp (ref MX23)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203B2))
(comp (ref D23)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203B8))
(comp (ref R23)
(value R23)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203BE))
(comp (ref MX24)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203C4))
(comp (ref D24)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203CA))
(comp (ref R24)
(value R24)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203D0))
(comp (ref MX25)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MX-1U)
(libsource (lib Macropad-cache) (part MX-1.25U))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203D6))
(comp (ref D25)
(value DIODE)
(footprint Keyboard:DIODE)
(libsource (lib Atreus62-cache) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203DC))
(comp (ref R25)
(value R25)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9203E2))
(comp (ref Q1)
(value Q_NPN_BCE)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(libsource (lib device) (part Q_NPN_BCE))
(sheetpath (names /) (tstamps /))
(tstamp 5A92A595))
(comp (ref NPNR1)
(value 1.5k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A92B858))
(comp (ref RGB3)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib Macropad-cache) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5A9317B9))
(comp (ref RGB2)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib Macropad-cache) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5A931BEC))
(comp (ref RGB4)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib Macropad-cache) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5A931CB3))
(comp (ref RGB1)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib Macropad-cache) (part WS2812B))
(sheetpath (names /) (tstamps /))
(tstamp 5A932A86))
(comp (ref RGBR1)
(value 1.5k)
(footprint Resistors_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A94AB79))
(comp (ref CR4)
(value 0.1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A9539F3))
(comp (ref CR3)
(value 0.1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A953E06))
(comp (ref CR2)
(value 0.1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A953EDB))
(comp (ref CR1)
(value 0.1u)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5A953FBC))
(comp (ref K1)
(value KEYSW)
(footprint Arduino:rstgg)
(libsource (lib keyboard_parts) (part KEYSW))
(sheetpath (names /) (tstamps /))
(tstamp 5A9AF2B6)))
(libparts
(libpart (lib Atreus62-cache) (part ARDUINO_PRO_MICRO)
(fields
(field (name Reference) U)
(field (name Value) ARDUINO_PRO_MICRO))
(pins
(pin (num 1) (name TX) (type power_out))
(pin (num 2) (name RX) (type power_out))
(pin (num 3) (name GND) (type power_out))
(pin (num 4) (name GND) (type power_out))
(pin (num 5) (name 2) (type input))
(pin (num 6) (name 3) (type input))
(pin (num 7) (name 4) (type input))
(pin (num 8) (name 5) (type input))
(pin (num 9) (name 6) (type input))
(pin (num 10) (name 7) (type input))
(pin (num 11) (name 8) (type input))
(pin (num 12) (name 9) (type input))
(pin (num 13) (name 10) (type input))
(pin (num 14) (name 16) (type input))
(pin (num 15) (name 14) (type input))
(pin (num 16) (name 15) (type input))
(pin (num 17) (name A0) (type input))
(pin (num 18) (name A1) (type input))
(pin (num 19) (name A2) (type input))
(pin (num 20) (name A3) (type input))
(pin (num 21) (name VCC) (type power_out))
(pin (num 22) (name RST) (type input))
(pin (num 23) (name GND) (type power_out))
(pin (num 24) (name RAW) (type power_out))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Atreus62-cache) (part DIODE)
(fields
(field (name Reference) D)
(field (name Value) DIODE))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib keyboard_parts) (part KEYSW)
(fields
(field (name Reference) K?)
(field (name Value) KEYSW))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Macropad-cache) (part MX-1.25U)
(fields
(field (name Reference) MX)
(field (name Value) MX-1.25U))
(pins
(pin (num 1) (name COL) (type passive))
(pin (num 2) (name ROW) (type passive))
(pin (num 3) (name LED) (type passive))
(pin (num 4) (name LEDGND) (type passive))))
(libpart (lib device) (part Q_NPN_BCE)
(description "Transistor NPN (general)")
(fields
(field (name Reference) Q)
(field (name Value) Q_NPN_BCE))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name C) (type passive))
(pin (num 3) (name E) (type passive))))
(libpart (lib device) (part R_Small)
(description "Resistor, small symbol")
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Macropad-cache) (part WS2812B)
(fields
(field (name Reference) LED)
(field (name Value) WS2812B))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name DOUT) (type output))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name DIN) (type input)))))
(libraries
(library (logical keyboard_parts)
(uri C:\Users\Gtrx\Desktop\KICAD\kicad_lib_tmk-master\keyboard_parts.lib))
(library (logical device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library\\device.lib"))
(library (logical Atreus62-cache)
(uri C:\Users\Gtrx\Desktop\KICAD\pcb\Atreus62-cache.lib))
(library (logical Macropad-cache)
(uri C:\Users\Gtrx\Desktop\KICAD\pcb\Macropad-cache.lib)))
(nets
(net (code 1) (name GND)
(node (ref Q1) (pin 3))
(node (ref RGB4) (pin 3))
(node (ref U1) (pin 14))
(node (ref U1) (pin 4))
(node (ref U1) (pin 3))
(node (ref CR1) (pin 2))
(node (ref CR2) (pin 2))
(node (ref K1) (pin 1))
(node (ref CR3) (pin 2))
(node (ref CR4) (pin 2))
(node (ref RGB3) (pin 3))
(node (ref RGB2) (pin 3))
(node (ref RGB1) (pin 3)))
(net (code 2) (name "Net-(NPNR1-Pad1)")
(node (ref Q1) (pin 1))
(node (ref NPNR1) (pin 1)))
(net (code 3) (name "Net-(MX25-Pad3)")
(node (ref MX25) (pin 3))
(node (ref R25) (pin 1)))
(net (code 4) (name "Net-(RGB3-Pad2)")
(node (ref RGB3) (pin 2))
(node (ref RGB4) (pin 4)))
(net (code 5) (name "Net-(RGB4-Pad2)")
(node (ref RGB4) (pin 2)))
(net (code 6) (name "Net-(RGB1-Pad2)")
(node (ref RGB1) (pin 2))
(node (ref RGB2) (pin 4)))
(net (code 7) (name "Net-(RGB2-Pad2)")
(node (ref RGB3) (pin 4))
(node (ref RGB2) (pin 2)))
(net (code 8) (name "Net-(RGBR1-Pad1)")
(node (ref U1) (pin 9))
(node (ref RGBR1) (pin 1)))
(net (code 9) (name RGBIN)
(node (ref RGB1) (pin 4))
(node (ref RGBR1) (pin 2)))
(net (code 11) (name "Net-(U1-Pad8)")
(node (ref U1) (pin 8)))
(net (code 12) (name "Net-(U1-Pad11)")
(node (ref U1) (pin 11)))
(net (code 13) (name "Net-(U1-Pad10)")
(node (ref U1) (pin 10)))
(net (code 14) (name RST)
(node (ref U1) (pin 15))
(node (ref K1) (pin 2)))
(net (code 15) (name VCC)
(node (ref CR3) (pin 1))
(node (ref CR1) (pin 1))
(node (ref CR2) (pin 1))
(node (ref R6) (pin 2))
(node (ref R5) (pin 2))
(node (ref R4) (pin 2))
(node (ref R10) (pin 2))
(node (ref R9) (pin 2))
(node (ref R8) (pin 2))
(node (ref R7) (pin 2))
(node (ref R24) (pin 2))
(node (ref U1) (pin 16))
(node (ref R18) (pin 2))
(node (ref R19) (pin 2))
(node (ref R20) (pin 2))
(node (ref R21) (pin 2))
(node (ref R3) (pin 2))
(node (ref R2) (pin 2))
(node (ref R1) (pin 2))
(node (ref RGB3) (pin 1))
(node (ref RGB2) (pin 1))
(node (ref RGB4) (pin 1))
(node (ref CR4) (pin 1))
(node (ref RGB1) (pin 1))
(node (ref R25) (pin 2))
(node (ref R15) (pin 2))
(node (ref R16) (pin 2))
(node (ref R17) (pin 2))
(node (ref R11) (pin 2))
(node (ref R12) (pin 2))
(node (ref R14) (pin 2))
(node (ref R13) (pin 2))
(node (ref R22) (pin 2))
(node (ref R23) (pin 2)))
(net (code 16) (name "Net-(D25-Pad1)")
(node (ref D25) (pin 1))
(node (ref MX25) (pin 2)))
(net (code 17) (name "Net-(MX5-Pad3)")
(node (ref R5) (pin 1))
(node (ref MX5) (pin 3)))
(net (code 18) (name "Net-(D7-Pad1)")
(node (ref MX7) (pin 2))
(node (ref D7) (pin 1)))
(net (code 19) (name "Net-(MX7-Pad3)")
(node (ref MX7) (pin 3))
(node (ref R7) (pin 1)))
(net (code 20) (name "Net-(MX6-Pad3)")
(node (ref R6) (pin 1))
(node (ref MX6) (pin 3)))
(net (code 21) (name "Net-(D6-Pad1)")
(node (ref D6) (pin 1))
(node (ref MX6) (pin 2)))
(net (code 22) (name "Net-(D5-Pad1)")
(node (ref D5) (pin 1))
(node (ref MX5) (pin 2)))
(net (code 23) (name "Net-(MX4-Pad3)")
(node (ref R4) (pin 1))
(node (ref MX4) (pin 3)))
(net (code 24) (name "Net-(D4-Pad1)")
(node (ref D4) (pin 1))
(node (ref MX4) (pin 2)))
(net (code 25) (name "Net-(D11-Pad1)")
(node (ref D11) (pin 1))
(node (ref MX11) (pin 2)))
(net (code 26) (name "Net-(MX10-Pad3)")
(node (ref R10) (pin 1))
(node (ref MX10) (pin 3)))
(net (code 27) (name "Net-(D10-Pad1)")
(node (ref D10) (pin 1))
(node (ref MX10) (pin 2)))
(net (code 28) (name "Net-(MX9-Pad3)")
(node (ref MX9) (pin 3))
(node (ref R9) (pin 1)))
(net (code 29) (name "Net-(D9-Pad1)")
(node (ref MX9) (pin 2))
(node (ref D9) (pin 1)))
(net (code 30) (name "Net-(MX8-Pad3)")
(node (ref R8) (pin 1))
(node (ref MX8) (pin 3)))
(net (code 31) (name row2)
(node (ref U1) (pin 18))
(node (ref D10) (pin 2))
(node (ref D8) (pin 2))
(node (ref D7) (pin 2))
(node (ref D9) (pin 2))
(node (ref D6) (pin 2)))
(net (code 32) (name "Net-(D8-Pad1)")
(node (ref D8) (pin 1))
(node (ref MX8) (pin 2)))
(net (code 33) (name col1)
(node (ref MX11) (pin 1))
(node (ref MX1) (pin 1))
(node (ref MX6) (pin 1))
(node (ref MX21) (pin 1))
(node (ref MX16) (pin 1))
(node (ref U1) (pin 22)))
(net (code 34) (name row3)
(node (ref D12) (pin 2))
(node (ref U1) (pin 19))
(node (ref D14) (pin 2))
(node (ref D13) (pin 2))
(node (ref D11) (pin 2))
(node (ref D15) (pin 2)))
(net (code 35) (name "Net-(U1-Pad24)")
(node (ref U1) (pin 24)))
(net (code 36) (name RAW)
(node (ref U1) (pin 13)))
(net (code 37) (name LedPwm)
(node (ref NPNR1) (pin 2))
(node (ref U1) (pin 12)))
(net (code 38) (name row5)
(node (ref U1) (pin 21))
(node (ref D22) (pin 2))
(node (ref D21) (pin 2))
(node (ref D25) (pin 2))
(node (ref D23) (pin 2))
(node (ref D24) (pin 2)))
(net (code 39) (name row4)
(node (ref D19) (pin 2))
(node (ref D20) (pin 2))
(node (ref U1) (pin 20))
(node (ref D16) (pin 2))
(node (ref D17) (pin 2))
(node (ref D18) (pin 2)))
(net (code 40) (name "Net-(U1-Pad2)")
(node (ref U1) (pin 2)))
(net (code 41) (name "Net-(MX2-Pad3)")
(node (ref R2) (pin 1))
(node (ref MX2) (pin 3)))
(net (code 42) (name "Net-(MX3-Pad3)")
(node (ref R3) (pin 1))
(node (ref MX3) (pin 3)))
(net (code 43) (name "Net-(D3-Pad1)")
(node (ref D3) (pin 1))
(node (ref MX3) (pin 2)))
(net (code 44) (name "Net-(D2-Pad1)")
(node (ref MX2) (pin 2))
(node (ref D2) (pin 1)))
(net (code 45) (name "Net-(MX11-Pad3)")
(node (ref MX11) (pin 3))
(node (ref R11) (pin 1)))
(net (code 46) (name "Net-(MX1-Pad3)")
(node (ref R1) (pin 1))
(node (ref MX1) (pin 3)))
(net (code 47) (name row1)
(node (ref D4) (pin 2))
(node (ref U1) (pin 17))
(node (ref D2) (pin 2))
(node (ref D1) (pin 2))
(node (ref D5) (pin 2))
(node (ref D3) (pin 2)))
(net (code 48) (name "Net-(D1-Pad1)")
(node (ref D1) (pin 1))
(node (ref MX1) (pin 2)))
(net (code 49) (name "Net-(D20-Pad1)")
(node (ref D20) (pin 1))
(node (ref MX20) (pin 2)))
(net (code 50) (name "Net-(MX21-Pad3)")
(node (ref MX21) (pin 3))
(node (ref R21) (pin 1)))
(net (code 51) (name "Net-(D21-Pad1)")
(node (ref MX21) (pin 2))
(node (ref D21) (pin 1)))
(net (code 52) (name "Net-(MX20-Pad3)")
(node (ref R20) (pin 1))
(node (ref MX20) (pin 3)))
(net (code 53) (name "Net-(MX19-Pad3)")
(node (ref R19) (pin 1))
(node (ref MX19) (pin 3)))
(net (code 54) (name "Net-(D19-Pad1)")
(node (ref D19) (pin 1))
(node (ref MX19) (pin 2)))
(net (code 55) (name "Net-(MX18-Pad3)")
(node (ref R18) (pin 1))
(node (ref MX18) (pin 3)))
(net (code 56) (name "Net-(D18-Pad1)")
(node (ref MX18) (pin 2))
(node (ref D18) (pin 1)))
(net (code 57) (name "Net-(MX23-Pad3)")
(node (ref R23) (pin 1))
(node (ref MX23) (pin 3)))
(net (code 58) (name "Net-(MX24-Pad3)")
(node (ref R24) (pin 1))
(node (ref MX24) (pin 3)))
(net (code 59) (name "Net-(D24-Pad1)")
(node (ref D24) (pin 1))
(node (ref MX24) (pin 2)))
(net (code 60) (name "Net-(D23-Pad1)")
(node (ref D23) (pin 1))
(node (ref MX23) (pin 2)))
(net (code 61) (name "Net-(MX22-Pad3)")
(node (ref MX22) (pin 3))
(node (ref R22) (pin 1)))
(net (code 62) (name "Net-(D22-Pad1)")
(node (ref MX22) (pin 2))
(node (ref D22) (pin 1)))
(net (code 63) (name "Net-(MX14-Pad3)")
(node (ref R14) (pin 1))
(node (ref MX14) (pin 3)))
(net (code 64) (name "Net-(D14-Pad1)")
(node (ref D14) (pin 1))
(node (ref MX14) (pin 2)))
(net (code 65) (name col4)
(node (ref MX14) (pin 1))
(node (ref MX24) (pin 1))
(node (ref U1) (pin 6))
(node (ref MX19) (pin 1))
(node (ref MX4) (pin 1))
(node (ref MX9) (pin 1)))
(net (code 66) (name "Net-(MX13-Pad3)")
(node (ref R13) (pin 1))
(node (ref MX13) (pin 3)))
(net (code 67) (name "Net-(D13-Pad1)")
(node (ref MX13) (pin 2))
(node (ref D13) (pin 1)))
(net (code 68) (name "Net-(MX12-Pad3)")
(node (ref R12) (pin 1))
(node (ref MX12) (pin 3)))
(net (code 69) (name "Net-(D12-Pad1)")
(node (ref MX12) (pin 2))
(node (ref D12) (pin 1)))
(net (code 70) (name col3)
(node (ref MX18) (pin 1))
(node (ref MX8) (pin 1))
(node (ref MX23) (pin 1))
(node (ref U1) (pin 5))
(node (ref MX13) (pin 1))
(node (ref MX3) (pin 1)))
(net (code 71) (name "Net-(MX17-Pad3)")
(node (ref R17) (pin 1))
(node (ref MX17) (pin 3)))
(net (code 72) (name "Net-(D17-Pad1)")
(node (ref D17) (pin 1))
(node (ref MX17) (pin 2)))
(net (code 73) (name col2)
(node (ref MX2) (pin 1))
(node (ref MX12) (pin 1))
(node (ref MX7) (pin 1))
(node (ref U1) (pin 23))
(node (ref MX22) (pin 1))
(node (ref MX17) (pin 1)))
(net (code 74) (name "Net-(MX16-Pad3)")
(node (ref R16) (pin 1))
(node (ref MX16) (pin 3)))
(net (code 75) (name "Net-(U1-Pad1)")
(node (ref U1) (pin 1)))
(net (code 76) (name "Net-(D16-Pad1)")
(node (ref D16) (pin 1))
(node (ref MX16) (pin 2)))
(net (code 77) (name "Net-(MX15-Pad3)")
(node (ref R15) (pin 1))
(node (ref MX15) (pin 3)))
(net (code 78) (name "Net-(D15-Pad1)")
(node (ref MX15) (pin 2))
(node (ref D15) (pin 1)))
(net (code 79) (name LEDGND)
(node (ref MX15) (pin 4))
(node (ref MX17) (pin 4))
(node (ref MX13) (pin 4))
(node (ref MX2) (pin 4))
(node (ref MX12) (pin 4))
(node (ref MX11) (pin 4))
(node (ref MX16) (pin 4))
(node (ref MX5) (pin 4))
(node (ref MX24) (pin 4))
(node (ref MX7) (pin 4))
(node (ref MX1) (pin 4))
(node (ref MX25) (pin 4))
(node (ref MX6) (pin 4))
(node (ref MX3) (pin 4))
(node (ref MX4) (pin 4))
(node (ref MX19) (pin 4))
(node (ref MX9) (pin 4))
(node (ref MX10) (pin 4))
(node (ref MX20) (pin 4))
(node (ref MX8) (pin 4))
(node (ref MX21) (pin 4))
(node (ref MX14) (pin 4))
(node (ref Q1) (pin 2))
(node (ref MX22) (pin 4))
(node (ref MX23) (pin 4))
(node (ref MX18) (pin 4)))
(net (code 80) (name col5)
(node (ref U1) (pin 7))
(node (ref MX15) (pin 1))
(node (ref MX20) (pin 1))
(node (ref MX10) (pin 1))
(node (ref MX5) (pin 1))
(node (ref MX25) (pin 1)))))