-
Notifications
You must be signed in to change notification settings - Fork 3
/
Lysergic25.net
1344 lines (1344 loc) · 49.3 KB
/
Lysergic25.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25\\Zesty25.sch")
(date "8/20/2018 1:00:31 AM")
(tool "Eeschema (5.0.0)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Zesty25.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Leds + Matrix/") (tstamps /5B7DABD3/)
(title_block
(title)
(company)
(rev)
(date)
(source "Leds + Matrix.sch")
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref USB1)
(value HRO-TYPE-C-31-M-12)
(footprint Type-C:HRO-TYPE-C-31-M-12-HandSoldering)
(libsource (lib Type-C) (part HRO-TYPE-C-31-M-12) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B534A55))
(comp (ref U2)
(value PRTR5V0U2X)
(footprint Nexperia:SOT143B)
(libsource (lib ai03-locallib) (part PRTR5V0U2X) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B534B63))
(comp (ref UR6)
(value 1M)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B53500A))
(comp (ref C9)
(value 4.7uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5350C6))
(comp (ref Q1)
(value Q_NPN_BCE)
(footprint TO_SOT_Packages_SMD:SOT-223-3_TabPin2)
(datasheet ~)
(libsource (lib Device) (part Q_NPN_BCE) (description "Transistor NPN (general)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B53520B))
(comp (ref R2)
(value 1.5k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B5352A2))
(comp (ref LED1)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B53537F))
(comp (ref LED2)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B53540C))
(comp (ref LED3)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B53549D))
(comp (ref LED4)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B535552))
(comp (ref LED5)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5355B7))
(comp (ref LED6)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B53560E))
(comp (ref LED7)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B535693))
(comp (ref LED8)
(value WS2812B)
(footprint WS2812B:WS2812B)
(libsource (lib ws2812b) (part WS2812B) (description "RGB LED with integrated controller"))
(sheetpath (names /) (tstamps /))
(tstamp 5B535704))
(comp (ref R1)
(value 470)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B53D213))
(comp (ref UR4)
(value 5.1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5B56618F))
(comp (ref UR5)
(value 5.1K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5B566218))
(comp (ref C1)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7C97))
(comp (ref C2)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7D5B))
(comp (ref C3)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7DBB))
(comp (ref C4)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7E25))
(comp (ref C5)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7E7D))
(comp (ref C6)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7EED))
(comp (ref C7)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7F77))
(comp (ref C8)
(value 0.1uF)
(footprint Capacitors_SMD:C_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5A7FD7))
(comp (ref J1)
(value Breakout)
(footprint Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm)
(datasheet ~)
(libsource (lib conn) (part Conn_02x02_Top_Bottom) (description "Generic connector, double row, 02x02, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B5FEB02))
(comp (ref U1)
(value Pro_Micro)
(footprint Keebio-Parts:ArduinoProMicro)
(libsource (lib Promicro) (part Pro_Micro) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B619BD5))
(comp (ref Trrs1)
(value Audio-Jack-4)
(footprint Keebio-Parts:TRRS-PJ-320A)
(datasheet ~)
(libsource (lib conn) (part Audio-Jack-4) (description "4-pin (audio) jack receptable (stereo + 4th pin/TRRS connector)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B6D2083))
(comp (ref Trrs2)
(value Audio-Jack-4)
(footprint Keebio-Parts:TRRS-PJ-320A)
(datasheet ~)
(libsource (lib conn) (part Audio-Jack-4) (description "4-pin (audio) jack receptable (stereo + 4th pin/TRRS connector)"))
(sheetpath (names /) (tstamps /))
(tstamp 5B6E0B2D))
(comp (ref R3)
(value 2.2K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5B6FD40D))
(comp (ref R4)
(value 2.2K)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5B6FD6B2))
(comp (ref R5)
(value 100k)
(footprint Resistors_SMD:R_0805_HandSoldering)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5B70D53A))
(comp (ref SW1)
(value SW_PUSH)
(footprint Keebio-Parts:CandK_6x6mm_Tactile)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5B70D73D))
(comp (ref MX1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2AFE9))
(comp (ref D1)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2AFEF))
(comp (ref R6)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2AFF6))
(comp (ref MX2)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2AFFD))
(comp (ref D2)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B003))
(comp (ref R7)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B00A))
(comp (ref MX3)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B011))
(comp (ref D3)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B017))
(comp (ref R8)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B01E))
(comp (ref MX4)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B025))
(comp (ref D4)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B02B))
(comp (ref R9)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B032))
(comp (ref MX5)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B039))
(comp (ref D5)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B03F))
(comp (ref R10)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B046))
(comp (ref MX6)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B04D))
(comp (ref D6)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B053))
(comp (ref R11)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B05A))
(comp (ref MX7)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B061))
(comp (ref D7)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B067))
(comp (ref R12)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B06E))
(comp (ref MX8)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B075))
(comp (ref D8)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B07B))
(comp (ref R13)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B082))
(comp (ref MX9)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B089))
(comp (ref D9)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B08F))
(comp (ref R14)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B096))
(comp (ref MX10)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B09D))
(comp (ref D10)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0A3))
(comp (ref R15)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0AA))
(comp (ref MX11)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0B1))
(comp (ref D11)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0B7))
(comp (ref R16)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0BE))
(comp (ref MX12)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0C5))
(comp (ref D12)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0CB))
(comp (ref R17)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0D2))
(comp (ref MX13)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0D9))
(comp (ref D13)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0DF))
(comp (ref R18)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0E6))
(comp (ref MX14)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0ED))
(comp (ref D14)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0F3))
(comp (ref R19)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B0FA))
(comp (ref MX15)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B101))
(comp (ref D15)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B107))
(comp (ref R20)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B10E))
(comp (ref MX16)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B115))
(comp (ref D16)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B11B))
(comp (ref R21)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B122))
(comp (ref MX17)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B129))
(comp (ref D17)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B12F))
(comp (ref R22)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B136))
(comp (ref MX18)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B13D))
(comp (ref D18)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B143))
(comp (ref R23)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B14A))
(comp (ref MX19)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B151))
(comp (ref D19)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B157))
(comp (ref R24)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B15E))
(comp (ref MX20)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B165))
(comp (ref D20)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B16B))
(comp (ref R25)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B172))
(comp (ref MX21)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B179))
(comp (ref D21)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B17F))
(comp (ref R26)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B186))
(comp (ref MX22)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B18D))
(comp (ref D22)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B193))
(comp (ref R27)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B19A))
(comp (ref MX23)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1A1))
(comp (ref D23)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1A7))
(comp (ref R28)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1AE))
(comp (ref MX24)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1B5))
(comp (ref D24)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1BB))
(comp (ref R29)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1C2))
(comp (ref MX25)
(value MX-1U)
(footprint MX_Alps_Hybrid:MX-1U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1C9))
(comp (ref D25)
(value D)
(footprint Keebio-Parts:Diode-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1CF))
(comp (ref R30)
(value R)
(footprint Keebio-Parts:Resistor-Hybrid-Back)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names "/Leds + Matrix/") (tstamps /5B7DABD3/))
(tstamp 5BB2B1D6)))
(libparts
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor")
(docs ~)
(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 Device) (part D_Small)
(description "Diode, small symbol")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part Q_NPN_BCE)
(description "Transistor NPN (general)")
(docs ~)
(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)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R_Small)
(description "Resistor, small symbol")
(docs ~)
(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 MX_Alps_Hybrids) (part MX-1U)
(fields
(field (name Reference) MX)
(field (name Value) MX-1U))
(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 Promicro) (part Pro_Micro)
(fields
(field (name Reference) U)
(field (name Value) Pro_Micro))
(pins
(pin (num 1) (name PD3) (type BiDi))
(pin (num 2) (name PD2) (type BiDi))
(pin (num 3) (name GND) (type BiDi))
(pin (num 4) (name GND) (type BiDi))
(pin (num 5) (name PD1) (type BiDi))
(pin (num 6) (name PD0) (type BiDi))
(pin (num 7) (name PD4) (type BiDi))
(pin (num 8) (name PC6) (type BiDi))
(pin (num 9) (name PD7) (type BiDi))
(pin (num 10) (name PE6) (type BiDi))
(pin (num 11) (name PB4) (type BiDi))
(pin (num 12) (name PB5) (type BiDi))
(pin (num 13) (name PB6) (type BiDi))
(pin (num 14) (name PB2) (type BiDi))
(pin (num 15) (name PB3) (type BiDi))
(pin (num 16) (name PB1) (type BiDi))
(pin (num 17) (name PF7) (type BiDi))
(pin (num 18) (name PF6) (type BiDi))
(pin (num 19) (name PF5) (type BiDi))
(pin (num 20) (name PF4) (type BiDi))
(pin (num 21) (name VCC) (type BiDi))
(pin (num 22) (name RST) (type input))
(pin (num 23) (name GND) (type BiDi))
(pin (num 24) (name Vin) (type BiDi))))
(libpart (lib Type-C) (part HRO-TYPE-C-31-M-12)
(fields
(field (name Reference) USB)
(field (name Value) HRO-TYPE-C-31-M-12))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name VBUS) (type input))
(pin (num 3) (name SBU2) (type input))
(pin (num 4) (name CC1) (type input))
(pin (num 5) (name DN2) (type input))
(pin (num 6) (name DP1) (type input))
(pin (num 7) (name DN1) (type input))
(pin (num 8) (name DP2) (type input))
(pin (num 9) (name SBU1) (type input))
(pin (num 10) (name CC2) (type input))
(pin (num 11) (name VBUS) (type input))
(pin (num 12) (name GND) (type input))
(pin (num 13) (name SHIELD) (type input))))
(libpart (lib ai03-locallib) (part PRTR5V0U2X)
(fields
(field (name Reference) U)
(field (name Value) PRTR5V0U2X))
(pins
(pin (num 1) (name GND) (type input))
(pin (num 2) (name IO1) (type input))
(pin (num 3) (name IO2) (type input))
(pin (num 4) (name VCC) (type input))))
(libpart (lib conn) (part Audio-Jack-4)
(description "4-pin (audio) jack receptable (stereo + 4th pin/TRRS connector)")
(docs ~)
(fields
(field (name Reference) J)
(field (name Value) Audio-Jack-4))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))))
(libpart (lib conn) (part Conn_02x02_Top_Bottom)
(description "Generic connector, double row, 02x02, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins)")
(docs ~)
(footprints
(fp Connector*:*2x??x*mm*)
(fp Connector*:*2x???Pitch*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x02_Top_Bottom))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib keyboard_parts) (part SW_PUSH)
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib ws2812b) (part WS2812B)
(description "RGB LED with integrated controller")
(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 Device)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/device.lib"))
(library (logical MX_Alps_Hybrids)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/MX_Alps_Hybrid.pretty-master/Schematic Library/MX_Alps_Hybrids.lib"))
(library (logical Promicro)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/Mixed Lib/schema/Promicro.lib"))
(library (logical Type-C)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/Type-C.pretty-master/Type-C.lib"))
(library (logical ai03-locallib)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/Mixed Lib/schema/ai03-locallib.lib"))
(library (logical conn)
(uri "C:\\Program Files\\KiCad\\share\\kicad\\library/conn.lib"))
(library (logical keyboard_parts)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/kicad_lib_tmk-master/keyboard_parts.lib"))
(library (logical ws2812b)
(uri "C:\\Users\\Gtrx\\Desktop\\Keeb shit\\Zesty25/WS2812B.pretty-master/Schematic-Symbol/ws2812b.lib")))
(nets
(net (code 1) (name GND)
(node (ref SW1) (pin 2))
(node (ref C8) (pin 2))
(node (ref C7) (pin 2))
(node (ref C6) (pin 2))
(node (ref C5) (pin 2))
(node (ref C4) (pin 2))
(node (ref C3) (pin 2))
(node (ref C2) (pin 2))
(node (ref USB1) (pin 1))
(node (ref U1) (pin 4))
(node (ref UR6) (pin 1))
(node (ref UR4) (pin 1))
(node (ref LED1) (pin 3))
(node (ref LED2) (pin 3))
(node (ref LED4) (pin 3))
(node (ref LED5) (pin 3))
(node (ref LED3) (pin 3))
(node (ref USB1) (pin 12))
(node (ref U2) (pin 1))
(node (ref Trrs1) (pin 4))
(node (ref C9) (pin 2))
(node (ref Q1) (pin 3))
(node (ref LED8) (pin 3))
(node (ref LED6) (pin 3))
(node (ref LED7) (pin 3))
(node (ref U1) (pin 3))
(node (ref U1) (pin 23))
(node (ref UR5) (pin 2))
(node (ref Trrs2) (pin 4))
(node (ref C1) (pin 2))
(node (ref J1) (pin 4)))
(net (code 2) (name D+)
(node (ref U2) (pin 2))
(node (ref J1) (pin 3))
(node (ref USB1) (pin 8))
(node (ref USB1) (pin 6)))
(net (code 3) (name ROW1)
(node (ref D9) (pin 1))
(node (ref D7) (pin 1))
(node (ref D8) (pin 1))
(node (ref D10) (pin 1))
(node (ref U1) (pin 19))
(node (ref D6) (pin 1)))
(net (code 4) (name ROW2)
(node (ref D13) (pin 1))
(node (ref D15) (pin 1))
(node (ref D12) (pin 1))
(node (ref D14) (pin 1))
(node (ref U1) (pin 18))
(node (ref D11) (pin 1)))
(net (code 5) (name ROW3)
(node (ref U1) (pin 17))
(node (ref D18) (pin 1))
(node (ref D17) (pin 1))
(node (ref D16) (pin 1))
(node (ref D20) (pin 1))
(node (ref D19) (pin 1)))
(net (code 6) (name ROW4)
(node (ref D22) (pin 1))
(node (ref D24) (pin 1))
(node (ref D25) (pin 1))
(node (ref U1) (pin 16))
(node (ref D21) (pin 1))
(node (ref D23) (pin 1)))
(net (code 7) (name COL4)
(node (ref MX25) (pin 1))
(node (ref MX15) (pin 1))
(node (ref MX20) (pin 1))
(node (ref MX5) (pin 1))