-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacrofoob.sch
1979 lines (1979 loc) · 52.1 KB
/
macrofoob.sch
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
EESchema Schematic File Version 4
LIBS:macrofoob-cache
EELAYER 29 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 3
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Switch:SW_Push SW1
U 1 1 5D699DE1
P 7500 1700
F 0 "SW1" V 7547 1651 50 0000 R CNN
F 1 "Switch" V 7454 1651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 7500 1900 50 0001 C CNN
F 3 "~" H 7500 1900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 7500 1700 50 0001 C CNN "URL"
1 7500 1700
0 -1 -1 0
$EndComp
$Comp
L Device:D D1
U 1 1 5D69A720
P 7650 1900
F 0 "D1" H 7650 2119 50 0000 C CNN
F 1 "1N4148" H 7650 2026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 7650 1900 50 0001 C CNN
F 3 "~" H 7650 1900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 7650 1900 50 0001 C CNN "URL"
1 7650 1900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW2
U 1 1 5D7DBB32
P 8250 1700
F 0 "SW2" V 8297 1651 50 0000 R CNN
F 1 "Switch" V 8204 1651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 8250 1900 50 0001 C CNN
F 3 "~" H 8250 1900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 8250 1700 50 0001 C CNN "URL"
1 8250 1700
0 -1 -1 0
$EndComp
$Comp
L Device:D D2
U 1 1 5D7DBB38
P 8400 1900
F 0 "D2" H 8400 2119 50 0000 C CNN
F 1 "1N4148" H 8400 2026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 8400 1900 50 0001 C CNN
F 3 "~" H 8400 1900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 8400 1900 50 0001 C CNN "URL"
1 8400 1900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW3
U 1 1 5D7DCB0A
P 9000 1700
F 0 "SW3" V 9047 1651 50 0000 R CNN
F 1 "Switch" V 8954 1651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9000 1900 50 0001 C CNN
F 3 "~" H 9000 1900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9000 1700 50 0001 C CNN "URL"
1 9000 1700
0 -1 -1 0
$EndComp
$Comp
L Device:D D3
U 1 1 5D7DCB10
P 9150 1900
F 0 "D3" H 9150 2119 50 0000 C CNN
F 1 "1N4148" H 9150 2026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9150 1900 50 0001 C CNN
F 3 "~" H 9150 1900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9150 1900 50 0001 C CNN "URL"
1 9150 1900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW4
U 1 1 5D7DD510
P 9750 1700
F 0 "SW4" V 9797 1651 50 0000 R CNN
F 1 "Switch" V 9704 1651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9750 1900 50 0001 C CNN
F 3 "~" H 9750 1900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9750 1700 50 0001 C CNN "URL"
1 9750 1700
0 -1 -1 0
$EndComp
$Comp
L Device:D D4
U 1 1 5D7DD516
P 9900 1900
F 0 "D4" H 9900 2119 50 0000 C CNN
F 1 "1N4148" H 9900 2026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9900 1900 50 0001 C CNN
F 3 "~" H 9900 1900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9900 1900 50 0001 C CNN "URL"
1 9900 1900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW5
U 1 1 5D7DDCD2
P 10500 1700
F 0 "SW5" V 10547 1651 50 0000 R CNN
F 1 "Switch" V 10454 1651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 10500 1900 50 0001 C CNN
F 3 "~" H 10500 1900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 10500 1700 50 0001 C CNN "URL"
1 10500 1700
0 -1 -1 0
$EndComp
$Comp
L Device:D D5
U 1 1 5D7DDCD8
P 10650 1900
F 0 "D5" H 10650 2119 50 0000 C CNN
F 1 "1N4148" H 10650 2026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 10650 1900 50 0001 C CNN
F 3 "~" H 10650 1900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 10650 1900 50 0001 C CNN "URL"
1 10650 1900
-1 0 0 1
$EndComp
Wire Wire Line
7500 1500 8250 1500
Wire Wire Line
8250 1500 9000 1500
Connection ~ 8250 1500
Wire Wire Line
9000 1500 9750 1500
Connection ~ 9000 1500
Wire Wire Line
9750 1500 10500 1500
Connection ~ 9750 1500
$Comp
L Switch:SW_Push SW6
U 1 1 5D7E6F33
P 7500 2450
F 0 "SW6" V 7547 2401 50 0000 R CNN
F 1 "Switch" V 7454 2401 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 7500 2650 50 0001 C CNN
F 3 "~" H 7500 2650 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 7500 2450 50 0001 C CNN "URL"
1 7500 2450
0 -1 -1 0
$EndComp
$Comp
L Device:D D6
U 1 1 5D7E6F39
P 7650 2650
F 0 "D6" H 7650 2869 50 0000 C CNN
F 1 "1N4148" H 7650 2776 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 7650 2650 50 0001 C CNN
F 3 "~" H 7650 2650 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 7650 2650 50 0001 C CNN "URL"
1 7650 2650
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW7
U 1 1 5D7E6F3F
P 8250 2450
F 0 "SW7" V 8297 2401 50 0000 R CNN
F 1 "Switch" V 8204 2401 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 8250 2650 50 0001 C CNN
F 3 "~" H 8250 2650 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 8250 2450 50 0001 C CNN "URL"
1 8250 2450
0 -1 -1 0
$EndComp
$Comp
L Device:D D7
U 1 1 5D7E6F45
P 8400 2650
F 0 "D7" H 8400 2869 50 0000 C CNN
F 1 "1N4148" H 8400 2776 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 8400 2650 50 0001 C CNN
F 3 "~" H 8400 2650 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 8400 2650 50 0001 C CNN "URL"
1 8400 2650
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW8
U 1 1 5D7E6F4B
P 9000 2450
F 0 "SW8" V 9047 2401 50 0000 R CNN
F 1 "Switch" V 8954 2401 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9000 2650 50 0001 C CNN
F 3 "~" H 9000 2650 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9000 2450 50 0001 C CNN "URL"
1 9000 2450
0 -1 -1 0
$EndComp
$Comp
L Device:D D8
U 1 1 5D7E6F51
P 9150 2650
F 0 "D8" H 9150 2869 50 0000 C CNN
F 1 "1N4148" H 9150 2776 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9150 2650 50 0001 C CNN
F 3 "~" H 9150 2650 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9150 2650 50 0001 C CNN "URL"
1 9150 2650
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW9
U 1 1 5D7E6F57
P 9750 2450
F 0 "SW9" V 9797 2401 50 0000 R CNN
F 1 "Switch" V 9704 2401 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9750 2650 50 0001 C CNN
F 3 "~" H 9750 2650 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9750 2450 50 0001 C CNN "URL"
1 9750 2450
0 -1 -1 0
$EndComp
$Comp
L Device:D D9
U 1 1 5D7E6F5D
P 9900 2650
F 0 "D9" H 9900 2869 50 0000 C CNN
F 1 "1N4148" H 9900 2776 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9900 2650 50 0001 C CNN
F 3 "~" H 9900 2650 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9900 2650 50 0001 C CNN "URL"
1 9900 2650
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW10
U 1 1 5D7E6F63
P 10500 2450
F 0 "SW10" V 10547 2401 50 0000 R CNN
F 1 "Switch" V 10454 2401 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 10500 2650 50 0001 C CNN
F 3 "~" H 10500 2650 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 10500 2450 50 0001 C CNN "URL"
1 10500 2450
0 -1 -1 0
$EndComp
$Comp
L Device:D D10
U 1 1 5D7E6F69
P 10650 2650
F 0 "D10" H 10650 2869 50 0000 C CNN
F 1 "1N4148" H 10650 2776 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 10650 2650 50 0001 C CNN
F 3 "~" H 10650 2650 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 10650 2650 50 0001 C CNN "URL"
1 10650 2650
-1 0 0 1
$EndComp
Wire Wire Line
7500 2250 8250 2250
Wire Wire Line
8250 2250 9000 2250
Connection ~ 8250 2250
Wire Wire Line
9000 2250 9750 2250
Connection ~ 9000 2250
Wire Wire Line
9750 2250 10500 2250
Connection ~ 9750 2250
$Comp
L Switch:SW_Push SW11
U 1 1 5D7F234D
P 7500 3200
F 0 "SW11" V 7547 3151 50 0000 R CNN
F 1 "Switch" V 7454 3151 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 7500 3400 50 0001 C CNN
F 3 "~" H 7500 3400 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 7500 3200 50 0001 C CNN "URL"
1 7500 3200
0 -1 -1 0
$EndComp
$Comp
L Device:D D11
U 1 1 5D7F2353
P 7650 3400
F 0 "D11" H 7650 3619 50 0000 C CNN
F 1 "1N4148" H 7650 3526 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 7650 3400 50 0001 C CNN
F 3 "~" H 7650 3400 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 7650 3400 50 0001 C CNN "URL"
1 7650 3400
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW12
U 1 1 5D7F2359
P 8250 3200
F 0 "SW12" V 8297 3151 50 0000 R CNN
F 1 "Switch" V 8204 3151 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 8250 3400 50 0001 C CNN
F 3 "~" H 8250 3400 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 8250 3200 50 0001 C CNN "URL"
1 8250 3200
0 -1 -1 0
$EndComp
$Comp
L Device:D D12
U 1 1 5D7F235F
P 8400 3400
F 0 "D12" H 8400 3619 50 0000 C CNN
F 1 "1N4148" H 8400 3526 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 8400 3400 50 0001 C CNN
F 3 "~" H 8400 3400 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 8400 3400 50 0001 C CNN "URL"
1 8400 3400
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW13
U 1 1 5D7F2365
P 9000 3200
F 0 "SW13" V 9047 3151 50 0000 R CNN
F 1 "Switch" V 8954 3151 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9000 3400 50 0001 C CNN
F 3 "~" H 9000 3400 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9000 3200 50 0001 C CNN "URL"
1 9000 3200
0 -1 -1 0
$EndComp
$Comp
L Device:D D13
U 1 1 5D7F236B
P 9150 3400
F 0 "D13" H 9150 3619 50 0000 C CNN
F 1 "1N4148" H 9150 3526 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9150 3400 50 0001 C CNN
F 3 "~" H 9150 3400 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9150 3400 50 0001 C CNN "URL"
1 9150 3400
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW14
U 1 1 5D7F2371
P 9750 3200
F 0 "SW14" V 9797 3151 50 0000 R CNN
F 1 "Switch" V 9704 3151 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9750 3400 50 0001 C CNN
F 3 "~" H 9750 3400 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9750 3200 50 0001 C CNN "URL"
1 9750 3200
0 -1 -1 0
$EndComp
$Comp
L Device:D D14
U 1 1 5D7F2377
P 9900 3400
F 0 "D14" H 9900 3619 50 0000 C CNN
F 1 "1N4148" H 9900 3526 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9900 3400 50 0001 C CNN
F 3 "~" H 9900 3400 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9900 3400 50 0001 C CNN "URL"
1 9900 3400
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW15
U 1 1 5D7F237D
P 10500 3200
F 0 "SW15" V 10547 3151 50 0000 R CNN
F 1 "Switch" V 10454 3151 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 10500 3400 50 0001 C CNN
F 3 "~" H 10500 3400 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 10500 3200 50 0001 C CNN "URL"
1 10500 3200
0 -1 -1 0
$EndComp
$Comp
L Device:D D15
U 1 1 5D7F2383
P 10650 3400
F 0 "D15" H 10650 3619 50 0000 C CNN
F 1 "1N4148" H 10650 3526 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 10650 3400 50 0001 C CNN
F 3 "~" H 10650 3400 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 10650 3400 50 0001 C CNN "URL"
1 10650 3400
-1 0 0 1
$EndComp
Wire Wire Line
7500 3000 8250 3000
Wire Wire Line
8250 3000 9000 3000
Connection ~ 8250 3000
Wire Wire Line
9000 3000 9750 3000
Connection ~ 9000 3000
Wire Wire Line
9750 3000 10500 3000
Connection ~ 9750 3000
$Comp
L Switch:SW_Push SW16
U 1 1 5D7F9195
P 7500 3950
F 0 "SW16" V 7547 3901 50 0000 R CNN
F 1 "Switch" V 7454 3901 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 7500 4150 50 0001 C CNN
F 3 "~" H 7500 4150 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 7500 3950 50 0001 C CNN "URL"
1 7500 3950
0 -1 -1 0
$EndComp
$Comp
L Device:D D16
U 1 1 5D7F919B
P 7650 4150
F 0 "D16" H 7650 4369 50 0000 C CNN
F 1 "1N4148" H 7650 4276 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 7650 4150 50 0001 C CNN
F 3 "~" H 7650 4150 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 7650 4150 50 0001 C CNN "URL"
1 7650 4150
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW17
U 1 1 5D7F91A1
P 8250 3950
F 0 "SW17" V 8297 3901 50 0000 R CNN
F 1 "Switch" V 8204 3901 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 8250 4150 50 0001 C CNN
F 3 "~" H 8250 4150 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 8250 3950 50 0001 C CNN "URL"
1 8250 3950
0 -1 -1 0
$EndComp
$Comp
L Device:D D17
U 1 1 5D7F91A7
P 8400 4150
F 0 "D17" H 8400 4369 50 0000 C CNN
F 1 "1N4148" H 8400 4276 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 8400 4150 50 0001 C CNN
F 3 "~" H 8400 4150 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 8400 4150 50 0001 C CNN "URL"
1 8400 4150
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW18
U 1 1 5D7F91AD
P 9000 3950
F 0 "SW18" V 9047 3901 50 0000 R CNN
F 1 "Switch" V 8954 3901 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9000 4150 50 0001 C CNN
F 3 "~" H 9000 4150 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9000 3950 50 0001 C CNN "URL"
1 9000 3950
0 -1 -1 0
$EndComp
$Comp
L Device:D D18
U 1 1 5D7F91B3
P 9150 4150
F 0 "D18" H 9150 4369 50 0000 C CNN
F 1 "1N4148" H 9150 4276 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9150 4150 50 0001 C CNN
F 3 "~" H 9150 4150 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9150 4150 50 0001 C CNN "URL"
1 9150 4150
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW19
U 1 1 5D7F91B9
P 9750 3950
F 0 "SW19" V 9797 3901 50 0000 R CNN
F 1 "Switch" V 9704 3901 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9750 4150 50 0001 C CNN
F 3 "~" H 9750 4150 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9750 3950 50 0001 C CNN "URL"
1 9750 3950
0 -1 -1 0
$EndComp
$Comp
L Device:D D19
U 1 1 5D7F91BF
P 9900 4150
F 0 "D19" H 9900 4369 50 0000 C CNN
F 1 "1N4148" H 9900 4276 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9900 4150 50 0001 C CNN
F 3 "~" H 9900 4150 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9900 4150 50 0001 C CNN "URL"
1 9900 4150
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW20
U 1 1 5D7F91C5
P 10500 3950
F 0 "SW20" V 10547 3901 50 0000 R CNN
F 1 "Switch" V 10454 3901 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 10500 4150 50 0001 C CNN
F 3 "~" H 10500 4150 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 10500 3950 50 0001 C CNN "URL"
1 10500 3950
0 -1 -1 0
$EndComp
$Comp
L Device:D D20
U 1 1 5D7F91CB
P 10650 4150
F 0 "D20" H 10650 4369 50 0000 C CNN
F 1 "1N4148" H 10650 4276 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 10650 4150 50 0001 C CNN
F 3 "~" H 10650 4150 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 10650 4150 50 0001 C CNN "URL"
1 10650 4150
-1 0 0 1
$EndComp
Wire Wire Line
7500 3750 8250 3750
Wire Wire Line
8250 3750 9000 3750
Connection ~ 8250 3750
Wire Wire Line
9000 3750 9750 3750
Connection ~ 9000 3750
Wire Wire Line
9750 3750 10500 3750
Connection ~ 9750 3750
$Comp
L Switch:SW_Push SW21
U 1 1 5D800786
P 7500 4700
F 0 "SW21" V 7547 4651 50 0000 R CNN
F 1 "Switch" V 7454 4651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 7500 4900 50 0001 C CNN
F 3 "~" H 7500 4900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 7500 4700 50 0001 C CNN "URL"
1 7500 4700
0 -1 -1 0
$EndComp
$Comp
L Device:D D21
U 1 1 5D80078C
P 7650 4900
F 0 "D21" H 7650 5119 50 0000 C CNN
F 1 "1N4148" H 7650 5026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 7650 4900 50 0001 C CNN
F 3 "~" H 7650 4900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 7650 4900 50 0001 C CNN "URL"
1 7650 4900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW22
U 1 1 5D800792
P 8250 4700
F 0 "SW22" V 8297 4651 50 0000 R CNN
F 1 "Switch" V 8204 4651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 8250 4900 50 0001 C CNN
F 3 "~" H 8250 4900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 8250 4700 50 0001 C CNN "URL"
1 8250 4700
0 -1 -1 0
$EndComp
$Comp
L Device:D D22
U 1 1 5D800798
P 8400 4900
F 0 "D22" H 8400 5119 50 0000 C CNN
F 1 "1N4148" H 8400 5026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 8400 4900 50 0001 C CNN
F 3 "~" H 8400 4900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 8400 4900 50 0001 C CNN "URL"
1 8400 4900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW23
U 1 1 5D80079E
P 9000 4700
F 0 "SW23" V 9047 4651 50 0000 R CNN
F 1 "Switch" V 8954 4651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9000 4900 50 0001 C CNN
F 3 "~" H 9000 4900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9000 4700 50 0001 C CNN "URL"
1 9000 4700
0 -1 -1 0
$EndComp
$Comp
L Device:D D23
U 1 1 5D8007A4
P 9150 4900
F 0 "D23" H 9150 5119 50 0000 C CNN
F 1 "1N4148" H 9150 5026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9150 4900 50 0001 C CNN
F 3 "~" H 9150 4900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9150 4900 50 0001 C CNN "URL"
1 9150 4900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW24
U 1 1 5D8007AA
P 9750 4700
F 0 "SW24" V 9797 4651 50 0000 R CNN
F 1 "Switch" V 9704 4651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 9750 4900 50 0001 C CNN
F 3 "~" H 9750 4900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 9750 4700 50 0001 C CNN "URL"
1 9750 4700
0 -1 -1 0
$EndComp
$Comp
L Device:D D24
U 1 1 5D8007B0
P 9900 4900
F 0 "D24" H 9900 5119 50 0000 C CNN
F 1 "1N4148" H 9900 5026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 9900 4900 50 0001 C CNN
F 3 "~" H 9900 4900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 9900 4900 50 0001 C CNN "URL"
1 9900 4900
-1 0 0 1
$EndComp
$Comp
L Switch:SW_Push SW25
U 1 1 5D8007B6
P 10500 4700
F 0 "SW25" V 10547 4651 50 0000 R CNN
F 1 "Switch" V 10454 4651 50 0000 R CNN
F 2 "keyswitches:Kailh_socket_optional" H 10500 4900 50 0001 C CNN
F 3 "~" H 10500 4900 50 0001 C CNN
F 4 "https://www.aliexpress.com/item/32903471019.html" H 10500 4700 50 0001 C CNN "URL"
1 10500 4700
0 -1 -1 0
$EndComp
$Comp
L Device:D D25
U 1 1 5D8007BC
P 10650 4900
F 0 "D25" H 10650 5119 50 0000 C CNN
F 1 "1N4148" H 10650 5026 50 0000 C CNN
F 2 "Diode_SMD:D_MiniMELF" H 10650 4900 50 0001 C CNN
F 3 "~" H 10650 4900 50 0001 C CNN
F 4 "https://www.reichelt.de/gleichrichterdiode-100-v-0-15-a-mini-melf-1n-4148-smd-p18403.html" H 10650 4900 50 0001 C CNN "URL"
1 10650 4900
-1 0 0 1
$EndComp
Wire Wire Line
7500 4500 8250 4500
Wire Wire Line
8250 4500 9000 4500
Connection ~ 8250 4500
Wire Wire Line
9000 4500 9750 4500
Connection ~ 9000 4500
Wire Wire Line
9750 4500 10500 4500
Connection ~ 9750 4500
Wire Wire Line
7800 1900 7800 2650
Wire Wire Line
7800 2650 7800 3400
Connection ~ 7800 2650
Wire Wire Line
7800 3400 7800 4150
Connection ~ 7800 3400
Wire Wire Line
7800 4900 7800 4150
Connection ~ 7800 4150
Wire Wire Line
8550 4900 8550 4150
Wire Wire Line
8550 4150 8550 3400
Connection ~ 8550 4150
Wire Wire Line
8550 2650 8550 3400
Connection ~ 8550 3400
Wire Wire Line
8550 2650 8550 1900
Connection ~ 8550 2650
Wire Wire Line
9300 1900 9300 2650
Wire Wire Line
9300 2650 9300 3400
Connection ~ 9300 2650
Wire Wire Line
9300 4150 9300 3400
Connection ~ 9300 3400
Wire Wire Line
9300 4150 9300 4900
Connection ~ 9300 4150
Wire Wire Line
10050 4900 10050 4150
Wire Wire Line
10050 4150 10050 3400
Connection ~ 10050 4150
Wire Wire Line
10050 3400 10050 2650
Connection ~ 10050 3400
Wire Wire Line
10050 2650 10050 1900
Connection ~ 10050 2650
Wire Wire Line
10800 1900 10800 2650
Wire Wire Line
10800 3400 10800 2650
Connection ~ 10800 2650
Wire Wire Line
10800 3400 10800 4150
Connection ~ 10800 3400
Wire Wire Line
10800 4150 10800 4900
Connection ~ 10800 4150
$Comp
L LED:SK6812MINI LED26
U 1 1 5D82654C
P 1550 1300
F 0 "LED26" H 1300 1400 50 0000 R CNN
F 1 "SK6812MINI" H 1300 1500 50 0000 R CNN
F 2 "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" H 1600 1000 50 0001 L TNN
F 3 "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" H 1650 925 50 0001 L TNN
F 4 "https://www.aliexpress.com/item/32830413032.html" H 1550 1300 50 0001 C CNN "URL"
1 1550 1300
1 0 0 1
$EndComp
$Comp
L power:GND #PWR02
U 1 1 5D874691
P 2000 1000
F 0 "#PWR02" H 2000 750 50 0001 C CNN
F 1 "GND" H 2005 825 50 0000 C CNN
F 2 "" H 2000 1000 50 0001 C CNN
F 3 "" H 2000 1000 50 0001 C CNN
1 2000 1000
1 0 0 -1
$EndComp
$Comp
L Device:C C1
U 1 1 5D876290
P 1850 1000
F 0 "C1" H 1965 1047 50 0000 L CNN
F 1 "0.1 uF" H 1965 954 50 0000 L CNN
F 2 "Capacitor_SMD:C_0805_2012Metric" H 1888 850 50 0001 C CNN
F 3 "~" H 1850 1000 50 0001 C CNN
1 1850 1000
0 -1 -1 0
$EndComp
$Comp
L power:GND #PWR011
U 1 1 5D877680
P 1550 1600
F 0 "#PWR011" H 1550 1350 50 0001 C CNN
F 1 "GND" H 1555 1425 50 0000 C CNN
F 2 "" H 1550 1600 50 0001 C CNN
F 3 "" H 1550 1600 50 0001 C CNN
1 1550 1600
1 0 0 -1
$EndComp
$Comp
L Device:Rotary_Encoder_Switch RC1
U 1 1 5D95B3C9
P 7500 1150
F 0 "RC1" H 7500 1520 50 0000 C CNN
F 1 "Rotary_Encoder_Switch" H 7500 1427 50 0000 C CNN
F 2 "testatur:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_custom" H 7350 1310 50 0001 C CNN
F 3 "~" H 7500 1410 50 0001 C CNN
1 7500 1150
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR09
U 1 1 5D98680D
P 7200 1150
F 0 "#PWR09" H 7200 900 50 0001 C CNN
F 1 "GND" V 7205 1021 50 0000 R CNN
F 2 "" H 7200 1150 50 0001 C CNN
F 3 "" H 7200 1150 50 0001 C CNN
1 7200 1150
0 1 1 0
$EndComp
$Comp
L Device:Rotary_Encoder_Switch RC2
U 1 1 5D9907FA
P 10500 1150
F 0 "RC2" H 10500 1520 50 0000 C CNN
F 1 "Rotary_Encoder_Switch" H 10500 1427 50 0000 C CNN
F 2 "testatur:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_custom" H 10350 1310 50 0001 C CNN
F 3 "~" H 10500 1410 50 0001 C CNN
1 10500 1150
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR010
U 1 1 5D990800
P 10200 1150
F 0 "#PWR010" H 10200 900 50 0001 C CNN
F 1 "GND" V 10205 1021 50 0000 R CNN
F 2 "" H 10200 1150 50 0001 C CNN
F 3 "" H 10200 1150 50 0001 C CNN
1 10200 1150
0 1 1 0
$EndComp
Text GLabel 7200 1050 0 50 Input ~ 0
RC1A
Text GLabel 7200 1250 0 50 Input ~ 0
RC1B
Text GLabel 10200 1250 0 50 Input ~ 0
RC2B
Text GLabel 10200 1050 0 50 Input ~ 0
RC2A
Wire Wire Line
1550 1000 1700 1000
Wire Wire Line
7500 1500 7250 1500
Connection ~ 7500 1500
Wire Wire Line
7500 2250 7250 2250
Connection ~ 7500 2250
Wire Wire Line
7500 3000 7250 3000
Connection ~ 7500 3000
Wire Wire Line
7500 3750 7250 3750
Connection ~ 7500 3750
Wire Wire Line
7500 4500 7250 4500
Connection ~ 7500 4500
Wire Wire Line
7800 4900 7800 5250
Connection ~ 7800 4900
Wire Wire Line
8550 4900 8550 5250
Connection ~ 8550 4900
Wire Wire Line
9300 4900 9300 5250
Connection ~ 9300 4900
Wire Wire Line
10050 4900 10050 5250
Connection ~ 10050 4900
Wire Wire Line
10800 4900 10800 5250
Connection ~ 10800 4900
Text GLabel 7250 1500 0 50 Input ~ 0
ROW1
Text GLabel 7250 2250 0 50 Input ~ 0
ROW2
Text GLabel 7250 3000 0 50 Input ~ 0
ROW3
Text GLabel 7250 3750 0 50 Input ~ 0
ROW4
Text GLabel 7250 4500 0 50 Input ~ 0
ROW5
Text GLabel 7800 5250 3 50 Input ~ 0
COL1
Text GLabel 8550 5250 3 50 Input ~ 0
COL2
Text GLabel 9300 5250 3 50 Input ~ 0
COL3
Text GLabel 10050 5250 3 50 Input ~ 0
COL4
Text GLabel 7500 1900 0 50 Input ~ 0
SW1
Text GLabel 10500 1900 0 50 Input ~ 0
SW5
Text GLabel 7500 4900 0 50 Input ~ 0
SW21
Text GLabel 10500 4900 0 50 Input ~ 0
SW25
Text GLabel 7800 1050 2 50 Input ~ 0
ROW1
Text GLabel 7800 1250 2 50 Input ~ 0
SW1
Text GLabel 10800 1050 2 50 Input ~ 0
ROW1
Text GLabel 10800 1250 2 50 Input ~ 0
SW5
$Comp
L Device:Rotary_Encoder_Switch RC3
U 1 1 5D9F1028
P 7500 6000
F 0 "RC3" H 7500 6370 50 0000 C CNN
F 1 "Rotary_Encoder_Switch" H 7500 6277 50 0000 C CNN
F 2 "testatur:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_custom" H 7350 6160 50 0001 C CNN
F 3 "~" H 7500 6260 50 0001 C CNN
1 7500 6000
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR044
U 1 1 5D9F102E
P 7200 6000
F 0 "#PWR044" H 7200 5750 50 0001 C CNN
F 1 "GND" V 7205 5871 50 0000 R CNN
F 2 "" H 7200 6000 50 0001 C CNN
F 3 "" H 7200 6000 50 0001 C CNN
1 7200 6000
0 1 1 0
$EndComp
$Comp
L Device:Rotary_Encoder_Switch RC4
U 1 1 5D9F1034
P 10500 6000
F 0 "RC4" H 10500 6370 50 0000 C CNN
F 1 "Rotary_Encoder_Switch" H 10500 6277 50 0000 C CNN
F 2 "testatur:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_custom" H 10350 6160 50 0001 C CNN
F 3 "~" H 10500 6260 50 0001 C CNN
1 10500 6000
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR045
U 1 1 5D9F103A
P 10200 6000
F 0 "#PWR045" H 10200 5750 50 0001 C CNN
F 1 "GND" V 10205 5871 50 0000 R CNN
F 2 "" H 10200 6000 50 0001 C CNN
F 3 "" H 10200 6000 50 0001 C CNN
1 10200 6000
0 1 1 0
$EndComp
Text GLabel 7200 5900 0 50 Input ~ 0
RC1A
Text GLabel 7200 6100 0 50 Input ~ 0
RC1B
Text GLabel 10200 6100 0 50 Input ~ 0
RC2B
Text GLabel 10200 5900 0 50 Input ~ 0
RC2A
Text GLabel 7800 5900 2 50 Input ~ 0
ROW1
Text GLabel 10800 5900 2 50 Input ~ 0
ROW1
Text GLabel 7800 6100 2 50 Input ~ 0
SW21
Text GLabel 10800 6100 2 50 Input ~ 0
SW25
$Comp
L LED:SK6812MINI LED27
U 1 1 5DA35698
P 2600 1300
F 0 "LED27" H 2350 1400 50 0000 R CNN
F 1 "SK6812MINI" H 2350 1500 50 0000 R CNN
F 2 "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" H 2650 1000 50 0001 L TNN
F 3 "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" H 2700 925 50 0001 L TNN
F 4 "https://www.aliexpress.com/item/32830413032.html" H 2600 1300 50 0001 C CNN "URL"
1 2600 1300
1 0 0 1
$EndComp
$Comp
L power:GND #PWR04
U 1 1 5DA3569E
P 3050 1000
F 0 "#PWR04" H 3050 750 50 0001 C CNN
F 1 "GND" H 3055 825 50 0000 C CNN
F 2 "" H 3050 1000 50 0001 C CNN
F 3 "" H 3050 1000 50 0001 C CNN
1 3050 1000
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR012
U 1 1 5DA356AA
P 2600 1600
F 0 "#PWR012" H 2600 1350 50 0001 C CNN
F 1 "GND" H 2605 1425 50 0000 C CNN
F 2 "" H 2600 1600 50 0001 C CNN
F 3 "" H 2600 1600 50 0001 C CNN
1 2600 1600
1 0 0 -1
$EndComp
$Comp
L LED:SK6812MINI LED28
U 1 1 5DA392F5
P 3650 1300
F 0 "LED28" H 3400 1400 50 0000 R CNN
F 1 "SK6812MINI" H 3400 1500 50 0000 R CNN
F 2 "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" H 3700 1000 50 0001 L TNN
F 3 "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" H 3750 925 50 0001 L TNN
F 4 "https://www.aliexpress.com/item/32830413032.html" H 3650 1300 50 0001 C CNN "URL"
1 3650 1300
1 0 0 1
$EndComp
$Comp
L power:GND #PWR06
U 1 1 5DA392FB
P 4100 1000
F 0 "#PWR06" H 4100 750 50 0001 C CNN