-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCB Template.kicad_pcb
1532 lines (1500 loc) · 101 KB
/
PCB Template.kicad_pcb
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
(kicad_pcb (version 20220914) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "ROW0")
(net 2 "Net-(D1-A)")
(net 3 "Net-(D2-A)")
(net 4 "Net-(D3-A)")
(net 5 "ROW1")
(net 6 "Net-(D4-A)")
(net 7 "Net-(D5-A)")
(net 8 "Net-(D6-A)")
(net 9 "ROW2")
(net 10 "Net-(D7-A)")
(net 11 "Net-(D8-A)")
(net 12 "Net-(D9-A)")
(net 13 "COL0")
(net 14 "COL1")
(net 15 "COL2")
(net 16 "unconnected-(U1-GND)")
(net 17 "unconnected-(U1-GND)_1")
(net 18 "unconnected-(U1-PB7)")
(net 19 "unconnected-(U1-PD0)")
(net 20 "unconnected-(U1-PD1)")
(net 21 "unconnected-(U1-PD2)")
(net 22 "unconnected-(U1-PD3)")
(net 23 "unconnected-(U1-PC6)")
(net 24 "unconnected-(U1-PB3)")
(net 25 "unconnected-(U1-PB4)")
(net 26 "unconnected-(U1-VCC)_1")
(net 27 "unconnected-(U1-RST)")
(net 28 "unconnected-(U1-PB5)")
(net 29 "unconnected-(U1-PD6)")
(net 30 "unconnected-(U1-PD7)")
(net 31 "unconnected-(U1-PB6)")
(net 32 "unconnected-(U1-PF7)")
(net 33 "unconnected-(U1-PF6)")
(net 34 "unconnected-(U1-PF5)")
(net 35 "unconnected-(U1-PF4)")
(net 36 "unconnected-(U1-PF1)")
(net 37 "unconnected-(U1-PF0)")
(net 38 "unconnected-(U1-VCC)")
(net 39 "unconnected-(U1-AREF)")
(net 40 "unconnected-(U1-PE6)")
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 222e8725-3e47-4814-8cc1-77479dbd869c)
(at 111.91875 106.3625)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/abeaa793-67c0-47c1-8516-0c50321b31b4")
(attr through_hole)
(fp_text reference "MX4" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4a265f2-a7f5-4f0c-99f9-fcad5ab148d5)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c361c1e-a949-4608-b461-5dd31b3d56bb)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4c36af5e-e935-4e3a-b71d-b703c70d1132))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8bbfb4df-40ac-4d09-9aa5-b0de499a5d1d))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e50cdaaa-f5d9-4021-ac3a-6e78214b8399))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 130667a9-0434-4f70-8600-e4987131834e))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0304761b-e637-4fc4-837a-1ffe72fbbd15))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c0b42b3e-00a7-4285-ae58-df73dfbcc3bf))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f178974a-bedd-436c-8ff0-24f3d4766e83))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3de2f2da-742f-4635-b1b5-96083fd46346))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f126a4ae-7f42-4260-9df3-53880aa539f5))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8e7b41c3-c586-426c-9c8e-d908cfbf55fc))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d1738962-abe3-4641-9e34-bc6ad7fa520d))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 35d1df08-950b-42ef-95d3-327ab981d17b))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp c86b8b6e-c2a9-486b-b076-2eb50e83ff03))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp ce3d1143-536e-4709-a785-9fc45dc444a0))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 63233744-d225-4d86-aede-be1b6c7d7465))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 8752f77e-944e-4e0e-a054-2c1317419d08))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 03c19219-0877-4faf-a01b-f33e8a573e72))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 6 "Net-(D4-A)") (pinfunction "ROW") (pintype "passive") (tstamp 74381d21-38c1-4062-b544-abff2a4a1ed6))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 6 "Net-(D4-A)") (pinfunction "ROW") (pintype "passive") (tstamp 4112d62e-b2d4-40ea-8623-62d700ef1509))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 3f4e3e2e-2676-42fa-ab23-faee76b531f8)
(at 150.01875 125.4125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/7e1da6eb-f62a-4b41-8594-41d1d647e8b5")
(attr through_hole)
(fp_text reference "MX9" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d629983-e6ad-4770-942b-9586ad0a2cb8)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6430ef93-abd0-40fa-b3b7-8c1c6d71d120)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3b8c4a6c-93fe-4fc9-b3fe-183072d62791))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 84c69142-e3e1-4ef0-bfc2-da2c3c0157be))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6583d414-f6a6-4075-9274-eac96cc7a375))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 829be2c7-46ac-46f9-b883-10403b762835))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2e1ae956-7ff0-414f-a8c7-40d92b4034d5))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 135f3dcd-ae3f-4e68-83e9-68e99163022f))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a132d445-0eae-46d1-83f7-a4baabc91fee))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cc95c02d-ccb7-4b5c-aec6-01c7c1c70344))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 92836e87-6608-49c8-ac8f-718885b2019c))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9a193149-e646-4b8d-98cd-c2f359735b91))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d55ec1dd-eb5b-4d71-9af6-b0bf8f6351b1))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 63fa2a24-57d7-45e9-904a-9851e08d13dd))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 95e45e76-8d92-4413-843d-4c75179d355e))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 9f610654-dd30-4daf-a4c0-22a8488298f2))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp c27253a3-e0c3-49ac-970c-a37fb6c0133b))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp 1f5fb894-aff0-42a0-a46f-73c2a40b15ea))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp c81c76a3-3f73-486f-8ad0-b4f4c325cee2))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 12 "Net-(D9-A)") (pinfunction "ROW") (pintype "passive") (tstamp dcc64ad2-e9af-4806-b407-a2a8f4b2e5e6))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 12 "Net-(D9-A)") (pinfunction "ROW") (pintype "passive") (tstamp d6d8ee6e-daa5-4711-ba56-a627c4045c0c))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 75b177ac-925d-4c44-83bb-085c03ee9237)
(at 111.91875 125.4125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/046c592b-bd19-4763-b3d9-6da45268106b")
(attr through_hole)
(fp_text reference "MX7" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a024d09a-3bb0-4d69-9da3-d3e9aa0ec68f)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74f428f4-f8b1-4db8-8321-2d5f03c27564)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 38effa53-ae5d-4ce4-8075-8bbcdff7fe62))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7a68dd34-0a5f-4384-82d8-a16834ba6fdb))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c9daceb5-6b85-4fde-8dd7-6f12b2effcd0))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1f04ba70-2bed-4f34-8a1b-8f07606f23bf))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1c9c542b-1311-40e0-b7aa-a3d54cb41092))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d41bbc08-0e7a-4368-b9ed-3fdfbdbb5e38))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c5aa8299-fcf9-4f73-8fcb-95187d3597c5))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 56d470fd-dd77-44b0-ab3b-ab2d80918085))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8830426f-8dcf-4e6e-a298-fcdfed4a9028))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d775587c-e463-4ffa-9046-c55d497d058e))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1a267f98-514e-4ec6-9b8b-d033d9f31ea8))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c4c4c1ad-0662-4197-90db-9e34716eca80))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 85ce1a32-7844-401f-804d-56d29bea5ffa))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 6b0012f7-8c24-41b5-ba1a-ef989c99fe85))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 3e02807b-8581-41dc-99de-e4e74d62df47))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 1075a1f9-3dcc-4416-a676-891c701478bb))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp dedc1067-347b-4529-96b0-523b9c026d78))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 10 "Net-(D7-A)") (pinfunction "ROW") (pintype "passive") (tstamp e412914f-6e93-4076-b38b-5b701bae57ad))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 10 "Net-(D7-A)") (pinfunction "ROW") (pintype "passive") (tstamp 699933a8-f2ea-4f37-b051-26729b8cf405))
)
(footprint "teensy:Teensy2.0" (layer "F.Cu")
(tstamp 90b0eaef-76c9-4d6e-8450-45360e261599)
(at 118.26875 68.2625)
(descr "11")
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/01b6b52e-8247-4119-8886-97d10d86bdbe")
(attr through_hole)
(fp_text reference "U1" (at 0 -11.1125) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29713ed8-af9f-40a4-8569-346ce561791f)
)
(fp_text value "keyboard_parts_TEENSY2.0" (at 0.79375 -9.525) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ec36389-c797-4669-9f95-968487bd4a7b)
)
(fp_text user "MEGA32U4" (at 2.54 1.143) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 7ef49a23-49ef-4f0e-8fb0-546f125006f1)
)
(fp_line (start -16.51 -3.81) (end -7.62 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 906a1f6f-e6c3-4869-94b4-f813abcc0c69))
(fp_line (start -16.51 3.81) (end -16.51 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 02a52a90-b633-4c83-ad78-7329237d94d6))
(fp_line (start -15.24 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7ac7eb21-4464-4997-9171-29b94c3ed88c))
(fp_line (start -15.24 8.89) (end -15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f21880bc-ae9d-4358-b1fb-08cb2ff57e00))
(fp_line (start -7.62 -3.81) (end -7.62 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 087aea84-9fe3-4d7a-8f06-24c8362bffd2))
(fp_line (start -7.62 3.81) (end -16.51 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c12008ac-c8c7-4059-b7dd-5677c777b590))
(fp_line (start -1.27 -3.81) (end -1.27 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0522c54e-6777-4d53-8f90-2de235e94b48))
(fp_line (start -1.27 3.81) (end 6.35 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 907d57dc-0051-49da-ab1a-c1000a9bac79))
(fp_line (start 6.35 -3.81) (end -1.27 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0cc2d525-4507-4eb3-8f79-b33e34fcb06e))
(fp_line (start 6.35 3.81) (end 6.35 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7d943416-3b39-47a9-8435-443938ff8aec))
(fp_line (start 8.89 -2.54) (end 8.89 0)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5665df83-9b74-484f-a69f-42f0c907080f))
(fp_line (start 8.89 0) (end 8.89 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 972a3bf1-6579-45e7-8ad5-4e9617b72082))
(fp_line (start 8.89 1.27) (end 12.7 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 61872d97-c4f1-4846-be86-2021759e82fe))
(fp_line (start 8.89 2.54) (end 8.89 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1ed8e967-186a-42ec-a38b-ea1617f5147d))
(fp_line (start 8.89 5.08) (end 12.7 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a38f2ed2-0fd5-4c23-8b78-cd323aa34372))
(fp_line (start 12.7 -2.54) (end 8.89 -2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 10191662-94e3-4ac9-8f15-66b2654ebc6e))
(fp_line (start 12.7 1.27) (end 12.7 -2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 43ae669d-299d-41aa-8cb5-febcf2ecffea))
(fp_line (start 12.7 2.54) (end 8.89 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 29180dbe-d106-47b2-a283-b4d6b26344d9))
(fp_line (start 12.7 5.08) (end 12.7 2.54)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6d83add4-80d3-4ae3-965e-8d29fd6e22b7))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d9d51a8a-9a12-4ea2-9e4a-705d25017f66))
(fp_line (start 15.24 8.89) (end -15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3b5d6723-5138-4244-8375-a097cce67760))
(fp_poly
(pts
(xy 0.635 -0.762)
(xy 4.445 -0.762)
(xy 4.318 -0.508)
(xy 0.635 -0.508)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 07153f8d-d429-4e04-8001-31c673687e15))
(fp_poly
(pts
(xy 3.81 -1.905)
(xy 3.81 -0.889)
(xy 4.445 -0.889)
(xy 4.572 -1.143)
(xy 4.064 -1.143)
(xy 4.064 -1.905)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 7d29ba04-bb08-4045-b029-e70d777b1c50))
(fp_poly
(pts
(xy 1.397 -0.889)
(xy 1.397 -1.905)
(xy 1.016 -1.905)
(xy 0.635 -0.889)
(xy 0.889 -0.889)
(xy 1.143 -1.651)
(xy 1.143 -0.889)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e4364605-733e-402a-912d-7004b7204419))
(fp_poly
(pts
(xy 4.064 -2.032)
(xy 1.778 -2.032)
(xy 1.778 -0.889)
(xy 1.524 -0.889)
(xy 1.524 -2.032)
(xy 1.016 -2.032)
(xy 1.143 -2.286)
(xy 4.064 -2.286)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a9c7bd21-1a16-4641-8ea0-034145bfc98d))
(fp_poly
(pts
(xy 2.921 -0.889)
(xy 2.921 -1.905)
(xy 1.905 -1.905)
(xy 1.905 -0.889)
(xy 2.159 -0.889)
(xy 2.159 -1.651)
(xy 2.286 -1.651)
(xy 2.286 -0.889)
(xy 2.54 -0.889)
(xy 2.54 -1.651)
(xy 2.667 -1.651)
(xy 2.667 -0.889)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp cd32b9e4-99f3-48df-9bcc-7f72e2c44a3a))
(fp_poly
(pts
(xy 3.048 -1.905)
(xy 3.683 -1.905)
(xy 3.683 -1.651)
(xy 3.302 -1.651)
(xy 3.302 -1.524)
(xy 3.683 -1.524)
(xy 3.683 -1.27)
(xy 3.302 -1.27)
(xy 3.302 -1.143)
(xy 3.683 -1.143)
(xy 3.683 -0.889)
(xy 3.048 -0.889)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp d0d0f8d0-2df2-48d6-b9ff-ce7ed52e4c94))
(pad "1" thru_hole rect (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 17 "unconnected-(U1-GND)_1") (pinfunction "GND") (pintype "power_out") (tstamp daded04a-2f9e-4ba7-98ec-56e812b69c10))
(pad "2" thru_hole circle (at -11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 13 "COL0") (pinfunction "PB0") (pintype "bidirectional") (tstamp df2a7e24-9c48-4906-9003-95d9218604d9))
(pad "3" thru_hole circle (at -8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 14 "COL1") (pinfunction "PB1") (pintype "bidirectional") (tstamp 18ad1623-ce43-4d41-b865-5e46b753eae0))
(pad "4" thru_hole circle (at -6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 15 "COL2") (pinfunction "PB2") (pintype "bidirectional") (tstamp ba44b0da-4d62-4244-8699-ba785b864964))
(pad "5" thru_hole circle (at -3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 24 "unconnected-(U1-PB3)") (pinfunction "PB3") (pintype "bidirectional") (tstamp f91e1617-c4f4-46fd-9ee8-04d88e3e1b3f))
(pad "6" thru_hole circle (at -1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 18 "unconnected-(U1-PB7)") (pinfunction "PB7") (pintype "bidirectional") (tstamp 169fd25f-8e93-4435-98a8-f3a507915bd6))
(pad "7" thru_hole circle (at 1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 19 "unconnected-(U1-PD0)") (pinfunction "PD0") (pintype "bidirectional") (tstamp 49f493e3-c824-4dbd-b5df-52ef55d3896e))
(pad "8" thru_hole circle (at 3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 20 "unconnected-(U1-PD1)") (pinfunction "PD1") (pintype "bidirectional") (tstamp 6c30cd6a-5b4d-4298-aff5-910710c73c88))
(pad "9" thru_hole circle (at 6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 21 "unconnected-(U1-PD2)") (pinfunction "PD2") (pintype "bidirectional") (tstamp 46be08f9-72d0-458a-ae87-9018499539cf))
(pad "10" thru_hole circle (at 8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 22 "unconnected-(U1-PD3)") (pinfunction "PD3") (pintype "bidirectional") (tstamp ea3aa4d5-bc66-4031-bc20-c64c114dcfe1))
(pad "11" thru_hole circle (at 11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 23 "unconnected-(U1-PC6)") (pinfunction "PC6") (pintype "bidirectional") (tstamp 18e18db3-e993-4b26-8437-2d9b6574c6e6))
(pad "12" thru_hole circle (at 13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 1 "ROW0") (pinfunction "PC7") (pintype "bidirectional") (tstamp 3b2dac67-d148-4a9a-9c19-7cbc2f51d327))
(pad "13" thru_hole circle (at 13.97 5.08) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 5 "ROW1") (pinfunction "PD5") (pintype "bidirectional") (tstamp 09796fe7-45d2-4eb2-b3b4-1c53adc90760))
(pad "14" thru_hole circle (at 13.97 2.54) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-VCC)_1") (pinfunction "VCC") (pintype "power_out") (tstamp 7e38f573-3f7c-4859-acfd-21b89e3e7743))
(pad "15" thru_hole circle (at 13.97 0) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 16 "unconnected-(U1-GND)") (pinfunction "GND") (pintype "power_out") (tstamp 37f1ed3b-de21-40b2-8c88-a9d5c10bf453))
(pad "16" thru_hole circle (at 13.97 -2.54) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 27 "unconnected-(U1-RST)") (pinfunction "RST") (pintype "input") (tstamp e4638386-8f48-455c-ad89-d8b648a1a4fb))
(pad "17" thru_hole circle (at 13.97 -5.08) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 9 "ROW2") (pinfunction "PD4") (pintype "bidirectional") (tstamp fbaf8868-f26a-4e29-8450-d5ec4576e21b))
(pad "18" thru_hole circle (at 13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 29 "unconnected-(U1-PD6)") (pinfunction "PD6") (pintype "bidirectional") (tstamp 1f9307b8-9728-4b26-bdd3-6982e787839b))
(pad "19" thru_hole circle (at 11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 30 "unconnected-(U1-PD7)") (pinfunction "PD7") (pintype "bidirectional") (tstamp 66872bc5-c868-46cf-9549-669e7ccd42f6))
(pad "20" thru_hole circle (at 8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 25 "unconnected-(U1-PB4)") (pinfunction "PB4") (pintype "bidirectional") (tstamp 346f6241-3374-43bb-9599-dda3f81996c6))
(pad "21" thru_hole circle (at 6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 28 "unconnected-(U1-PB5)") (pinfunction "PB5") (pintype "bidirectional") (tstamp f3b8231a-f936-4693-8b11-74b1ccfbce71))
(pad "22" thru_hole circle (at 3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 31 "unconnected-(U1-PB6)") (pinfunction "PB6") (pintype "bidirectional") (tstamp 98b22770-50a8-4057-9e29-9d07686507b3))
(pad "23" thru_hole circle (at 1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 32 "unconnected-(U1-PF7)") (pinfunction "PF7") (pintype "bidirectional") (tstamp 3f64cb67-acc1-4ad6-8191-5c095075bb40))
(pad "24" thru_hole circle (at -1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 33 "unconnected-(U1-PF6)") (pinfunction "PF6") (pintype "bidirectional") (tstamp 98cb6330-2c0e-4c56-8c90-fd376b6133b2))
(pad "25" thru_hole circle (at -3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 34 "unconnected-(U1-PF5)") (pinfunction "PF5") (pintype "bidirectional") (tstamp 6fb710c5-52e7-490d-8d58-f02865942bfe))
(pad "26" thru_hole circle (at -6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 35 "unconnected-(U1-PF4)") (pinfunction "PF4") (pintype "bidirectional") (tstamp b64e4971-d28c-4011-880f-c04acc043a0b))
(pad "27" thru_hole circle (at -8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 36 "unconnected-(U1-PF1)") (pinfunction "PF1") (pintype "bidirectional") (tstamp c89a18de-bc14-426a-8493-24bf2c8ec275))
(pad "28" thru_hole circle (at -11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 37 "unconnected-(U1-PF0)") (pinfunction "PF0") (pintype "bidirectional") (tstamp 907dd8ec-51ba-4d25-a658-630c5e0da3f0))
(pad "29" thru_hole circle (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 38 "unconnected-(U1-VCC)") (pinfunction "VCC") (pintype "power_out") (tstamp 628a34e8-7d6a-432c-b7d5-a36bc7be398a))
(pad "30" thru_hole circle (at -3.81 5.08) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 39 "unconnected-(U1-AREF)") (pinfunction "AREF") (pintype "input") (tstamp e200215b-4e3b-4c42-bab7-783c829baae9))
(pad "31" thru_hole circle (at -3.81 -5.08) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)
(net 40 "unconnected-(U1-PE6)") (pinfunction "PE6") (pintype "bidirectional") (tstamp d7cddf44-a2ff-4e31-80ff-3af5cbfdc924))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp 977f843b-6b68-43e6-97cb-b0552e24d339)
(at 130.96875 106.3625)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/47f6e096-0e17-4a7a-a0bc-43aae2ec360d")
(attr through_hole)
(fp_text reference "MX5" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94c136f1-99c8-451f-a1a0-04213dcd8243)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49bc46c7-b9bb-469c-8801-58a118f05492)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4a5d594f-e06b-457b-88f3-d9f80c3fb134))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2cc64813-af3e-4307-a8c8-165a03707ed1))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5ed0c865-c31f-4beb-a115-e1b3ece50f19))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8d5e2d6e-27f0-4958-9c61-297c69acbd22))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 08a6d019-12bb-4336-bd8e-f55eebdf8ddd))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9cfec1c2-4c6d-4eff-8902-fce89ac477ee))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a237c609-e1a1-4774-a995-d9bdd35f333a))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 15faf886-2b46-4011-b981-d04f42e2b480))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b150d188-f880-4931-9fc3-425e3888d54b))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5fa5cc95-1340-448f-8f8b-7eb936de6574))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 203536cc-5011-432a-8e18-fe88a3f46c60))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5d954807-4e22-4aed-b4c8-f14d237d34db))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp d6e6a400-8498-426b-9870-c4f3bc0b5dae))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp eef09d36-2b5b-4ff7-841d-ea02141009ec))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp c55ed7af-17ba-4222-af1d-4d87c08a6483))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp bff655fb-7fba-4de1-b983-ffc69eadcad0))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp e949c4a8-812b-4e5b-92f0-a380c4a41ff7))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 7 "Net-(D5-A)") (pinfunction "ROW") (pintype "passive") (tstamp 58ad0002-a0a3-4b00-83ce-7bdd81b6b441))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 7 "Net-(D5-A)") (pinfunction "ROW") (pintype "passive") (tstamp 446cd6f2-9d1a-418b-9d9a-fd794bb25180))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp b52a89bd-2e9d-484a-9ce5-25ad7b23f409)
(at 150.01875 106.3625)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/667f4089-89bb-4a53-b311-5c00ba060b5a")
(attr through_hole)
(fp_text reference "MX6" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c455e488-6217-43b0-a6e2-334ca6abe4d1)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30c8b939-7e98-4fc7-a076-eec505630211)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e1951401-964c-4912-9451-6e96eb65f5f7))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c8fd7340-1210-435d-8f8b-b5e823e8004a))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 45b324f1-fe11-43a0-90cd-37357b7fb642))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d1864812-720d-4f18-85eb-6f5aa33894e1))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 877bc13b-3b33-4390-947f-0a93b2710272))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0ebbeb67-4e49-4652-9361-c1b6520ac151))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0e983c02-738d-4e32-b7cf-77e1b5c0569f))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2f4e40da-9c0b-4ed2-a393-806c456a90d9))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1cd29edd-c302-4b19-90ab-96277db12ebc))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp beed6ea2-f2a1-4f2c-a499-8231eeb87210))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 87ab5747-29ec-4851-8922-940c333ffa76))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b0eafb31-dace-47ae-90be-6f91e3af54d9))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 6b86c50a-139a-4a5e-8b13-8d1e614bd162))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp a75869ac-dd2e-4b1a-a98e-da4abb5f0511))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 88321f5f-7107-446a-afd6-9d96404bf28a))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp e94b5f37-3ed4-4fc6-a542-fd65d227e39d))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp e3ca28dc-b85d-4194-aee2-1dd4d147090a))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 8 "Net-(D6-A)") (pinfunction "ROW") (pintype "passive") (tstamp d4ec1188-7b30-49ea-8e11-170f19943ad4))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 8 "Net-(D6-A)") (pinfunction "ROW") (pintype "passive") (tstamp f245ef27-8434-42d0-83fc-b56b6f03655a))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp cd7982de-7ef8-4ecd-b071-516aa55c0c9e)
(at 130.96875 125.4125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/a4345906-daa4-48c4-a096-d3aa505364d6")
(attr through_hole)
(fp_text reference "MX8" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 05367282-b1c1-471f-9088-d44fccd4da37)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 530678f9-9a8e-4907-9961-50154dfc1410)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1425e69c-717e-468c-b13d-c34e8201caa3))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5e010bba-3025-4c72-8760-26e3bf35981d))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 84301470-7e95-4a4a-b3d7-27ce55553c82))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ecdd46e0-6c8c-4e40-9fbd-65efb3ba38bc))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8eb630ae-1b60-4bee-b1e4-70b8854739ba))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6b76280c-73fe-4fbd-8f9e-c50202a50d80))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4e4acdce-232e-43d1-84ce-e443f04fcc5d))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bfa340c9-5e47-4f4d-a00f-9a6b00e02b31))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e2eb4643-e9a7-4488-a357-60284ce3b0ea))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f0b0bbfb-0414-487e-905c-2d32d23758a6))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 15b1d672-459f-407a-a282-b4afc36f2713))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 38416b4f-3b76-463b-aba2-043e4ca7e72b))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f0dcd63e-6689-4c4e-842c-572145f731e9))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp f321656d-2848-4ab5-8900-a523b60d15eb))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 7e9c40c7-47af-453c-aa9a-adc62bc4923b))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp bce0c93c-7b10-4552-8345-643d6f577ea2))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp d07572b7-b2f6-4940-8361-059c690cfdbf))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 11 "Net-(D8-A)") (pinfunction "ROW") (pintype "passive") (tstamp 2726404e-a10c-4c1d-97d2-871e2f895d1b))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 11 "Net-(D8-A)") (pinfunction "ROW") (pintype "passive") (tstamp 739bb0bd-4405-459b-9bc4-0d0b41d72f8d))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp d45ab425-5cd9-4526-a99a-beb91ec76cf9)
(at 111.91875 87.3125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/de115fb7-2f89-4bb1-aa42-606aef93bd84")
(attr through_hole)
(fp_text reference "MX1" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ef32479-9057-41fd-ac80-627c221c9104)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e22682ec-fc5e-493c-abca-7c0ae4632a52)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 002c3d73-2b9a-4901-8849-d5dc1481894a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d0adedb6-ff5b-42c8-9bad-7ed487b36957))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e0267946-2c1c-4172-b892-4e21672eb3f3))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5e9c7998-08ae-4946-8788-2ea4d616d8e7))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f9696158-6e6f-402d-b1f6-da2f523dc7f9))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d807bbc2-3a14-4171-9b3a-a45890642ab7))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9a4f7a27-d957-4882-9b78-82dbea42bf1e))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 23c4869d-0176-4140-96df-9fe4d2f3e65f))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a3068149-1850-4296-b17d-54c410ecf0d2))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 98b42568-75ff-4f72-aa75-7a23453113ec))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c69140a0-874a-4485-a7a6-f11daf075465))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e2749641-710c-4275-b629-e8f493dcd1c9))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp ca867de8-67c7-4b55-9707-6c87bc769cd7))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 5621b473-e949-44d4-b196-eea24a035614))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 7bbda9b2-36f4-4305-afd4-0be5a8af5064))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 6331d4a9-5fb5-47c4-8cfc-3611aed79617))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 13 "COL0") (pinfunction "COL") (pintype "passive") (tstamp 01fb1471-bb3f-43f9-9c94-2417439dc782))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 2 "Net-(D1-A)") (pinfunction "ROW") (pintype "passive") (tstamp 7b96c8cd-e10d-40ab-8745-a2776fe88444))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "Net-(D1-A)") (pinfunction "ROW") (pintype "passive") (tstamp 7493ede4-2dcb-43b7-9af6-d61a71f2f54e))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp e8883596-6f0e-42da-9f6d-cef65ab332c6)
(at 150.01875 87.3125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/76681794-9fe2-4b9f-808b-e785fc759783")
(attr through_hole)
(fp_text reference "MX3" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afff71a5-3eb1-4a4b-96fc-807369456224)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d6941f9-363f-481f-8787-d3a24e0cd5db)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5bdf778a-ffcb-4ad8-93a1-3aed15ac57a0))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9fa1a1e0-0e51-4b59-ad78-caa6e6a23618))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 052ec261-5142-425c-ab80-38e1452b03f5))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bba58446-6fe9-4dda-bf2e-e437ab95632e))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6f1d195d-f417-4b48-8f2c-34c9bb70933f))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7c7cb028-367a-4ee9-8ccb-939c67af4af2))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 02b6c4be-89c1-4e48-85b3-4019281732a9))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 21d4b5ec-3f7f-4959-ba29-10a4ee05dedb))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b2760124-d727-4b1c-87ed-f07951efd992))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a93dd11c-ade8-4c45-9cf8-ca67b086d133))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp de45e0d0-5ada-45d5-a3f1-c9d4cf7ac32d))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 500c1858-9624-4885-acfa-38e53c8dd69d))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp da3f9a62-22ac-4c67-b712-dd5ab69510c7))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 566e596f-87f2-468e-bd3c-6f5088c3878b))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 872512b0-296c-46f2-836f-f39f056c97bc))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp d2a055d8-53c0-4255-ad75-4947aae4d2aa))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 15 "COL2") (pinfunction "COL") (pintype "passive") (tstamp 3f6145ac-f692-4470-8878-37bfa9c90025))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 4 "Net-(D3-A)") (pinfunction "ROW") (pintype "passive") (tstamp 89ff4f6d-2173-4310-a27b-484d751ca6a6))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 4 "Net-(D3-A)") (pinfunction "ROW") (pintype "passive") (tstamp 62bf7216-e119-4db7-9c9a-f1c2ac8ff889))
)
(footprint "MX_Alps_Hybrid:MX-1U-NoLED" (layer "F.Cu")
(tstamp f8151441-7e3d-492c-9fc5-7cb9b2860fcc)
(at 130.96875 87.3125)
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(path "/1281f723-bd0a-4870-bbac-ba24155c6789")
(attr through_hole)
(fp_text reference "MX2" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d55c06d-017c-4b92-9193-280898dd3c15)
)
(fp_text value "MX-NoLED" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb21748a-65e1-4ebc-b85f-b1ee3a8d777e)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ead20dd6-fb19-4d5b-a297-396ff5f0b3e7))
(fp_line (start -9.525 9.525) (end -9.525 -9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2c9453b8-2517-4772-a174-5784fff5c369))
(fp_line (start -7 -7) (end -7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7e194887-0f25-48eb-b037-62044b741d02))
(fp_line (start -7 5) (end -7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 58dcfa76-e6db-4ca3-adf6-bea010a5b089))
(fp_line (start -7 7) (end -5 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9e50fbbd-2447-4dc1-a7eb-4ffd8d28a6bf))
(fp_line (start -5 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e1fbb645-23f3-4ed5-bf4c-1108ecbd2d84))
(fp_line (start 5 -7) (end 7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 51ae280a-4c31-4d81-9cc6-f63e2ff3c480))
(fp_line (start 5 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 56273e22-96ec-4ba1-b2e0-b47a2b3ddc6e))
(fp_line (start 7 -7) (end 7 -5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 543df044-3507-4340-8aa6-07bb0933df4f))
(fp_line (start 7 7) (end 7 5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d28c2b30-6838-4853-9da0-bb870a90eb65))
(fp_line (start 9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f207914e-f8ce-4d68-a509-5c77817135c7))
(fp_line (start 9.525 9.525) (end -9.525 9.525)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 15851a11-f497-4a3d-831b-ecb3c5aa811a))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp e7ea3168-e35a-45c8-ac92-b8f6a23fc11a))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 9301b25e-ff67-4ce6-ad86-c71cc6f034b7))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp e221ea51-c36c-4516-9df2-95afe3bcf480))
(pad "1" thru_hole oval (at -3.81 -2.54 48.0996) (size 4.211556 2.25) (drill 1.47 (offset 0.980778 0)) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 380ad8d9-9fa6-44eb-b651-3a04d9e01a85))
(pad "1" thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 14 "COL1") (pinfunction "COL") (pintype "passive") (tstamp 27ad6ad6-2d51-4f0a-b984-8365b4590c56))
(pad "2" thru_hole oval (at 2.5 -4.5 86.0548) (size 2.831378 2.25) (drill 1.47 (offset 0.290689 0)) (layers *.Cu "B.Mask")
(net 3 "Net-(D2-A)") (pinfunction "ROW") (pintype "passive") (tstamp c364c2b6-f514-40f7-af27-ab4870ed2bad))
(pad "2" thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 3 "Net-(D2-A)") (pinfunction "ROW") (pintype "passive") (tstamp 96ec4ec8-a1fd-4589-84f2-447385409cf2))
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tstamp 259d3931-60ef-4d17-93b8-746ee4dbecd7)
(at 159.53875 107.7125 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/698db9dc-5921-49f7-b3d4-4d6b04785bc4")
(attr smd)
(fp_text reference "D6" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7128c317-edd8-41f3-a4ab-a8f66a31d76b)
)
(fp_text value "D_Small" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1a76d825-2936-4372-9933-87200bdcb7d0)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 973ea5b9-12da-4d65-b7e6-5bf0456a98f9)
)
(fp_line (start -2.25 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 298d1904-a7b7-47f5-8d0e-056b19f2653f))
(fp_line (start -2.25 1) (end -2.25 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4fd4194a-2ef0-48e7-98b7-979e68faa347))
(fp_line (start -2.25 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0db9def7-9661-42a2-b138-81745cabbc99))
(fp_line (start -2.35 1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e183390c-03a7-4313-90f8-7c25baf40d93))
(fp_line (start -2.35 1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ab4ad7d2-c41c-43f1-9d89-93f80b88e60e))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 38a79d43-57c3-4a69-bf57-79934f7e181d))
(fp_line (start 2.35 1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 23570c59-844a-42a9-8f7b-b39e00723e80))
(fp_line (start -1.4 -0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp e01d86d4-019a-4ed5-bf2f-82e739bd8714))
(fp_line (start -1.4 0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8c614831-5501-458c-95e7-fbe6209b730b))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 92dc735f-74f3-4eec-8b17-3d881686c57b))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9ef581ea-2c03-4a70-89d5-bad227df27cc))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bd861095-bbff-4527-9cee-81f27dca07dc))
(fp_line (start -0.35 0) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 390b74bf-0810-4241-bb20-c76aa85dfc8d))
(fp_line (start 0.25 -0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp af0989f0-3e9d-4ee7-a6b4-20e9fcfa5751))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6dc2693a-a8db-4ecb-9460-3fe12dc18c48))
(fp_line (start 0.25 0.4) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2b6281e4-a65a-409c-969a-8135e8a91dc9))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1a1847bf-5395-4b6a-8513-939d13febf86))
(fp_line (start 1.4 0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8d8c4eb3-c8bb-4ceb-9423-d3c33b9bedc2))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "ROW1") (pinfunction "K") (pintype "passive") (tstamp b13670b3-517f-4abc-b635-3177c1076899))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "Net-(D6-A)") (pinfunction "A") (pintype "passive") (tstamp ee3c1f20-89c7-4887-b286-78cfd7d4ba9b))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tstamp 58e4eb71-bf1f-454e-9268-76afc57c9805)
(at 140.48875 107.7125 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/ab68f27d-f547-4ff3-9454-13287a530f18")
(attr smd)
(fp_text reference "D5" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3208ab63-97c3-4e1a-a7ee-1d7cb7953792)
)
(fp_text value "D_Small" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 12e3f8d2-f610-4783-ae0d-3dae0c844543)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0efbcd0b-4c6c-4db8-b497-d9e901b9530b)
)
(fp_line (start -2.25 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e5fd77f1-4675-4b1f-8fc1-9902ef79530b))
(fp_line (start -2.25 1) (end -2.25 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c1a2ae2a-0f91-4d9a-adb1-f71aa7439fb1))
(fp_line (start -2.25 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0496c65e-7cfc-4bbb-ac12-ba584501532e))
(fp_line (start -2.35 1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 19bd1b92-eeaf-4d44-af64-deb1e174a97f))
(fp_line (start -2.35 1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 39c8f34f-b067-48c1-ae43-8708abedb967))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2297f8c3-0dfa-48a3-94f2-9d84985a701f))
(fp_line (start 2.35 1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 874c992c-5891-449a-b3f9-301a42f2d57d))
(fp_line (start -1.4 -0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4d4aaf0d-fa9d-4a0a-b0dc-fd2910a19ba8))
(fp_line (start -1.4 0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f4ee6a00-d10f-4149-9d39-56457f2befb1))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fe740b58-14e5-4d6b-8575-b718e27b5d9a))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5d4072e2-877e-4042-955c-92638f16bf61))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8632b0ac-ea69-4e60-a610-c277c96ffe03))
(fp_line (start -0.35 0) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 56e367b4-cce8-4b66-a07b-f082f9809604))
(fp_line (start 0.25 -0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp eed2791c-1794-4ad1-9736-3958b8c1fdad))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4dd0c6d0-66bb-47bf-84c6-417eecdf9b54))
(fp_line (start 0.25 0.4) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3d17e378-401a-4823-ac5e-d188096e0dd2))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ceff635d-7821-40d8-b6e6-94a4dae09478))
(fp_line (start 1.4 0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 94b245a3-7898-4ef7-8f0e-e5bd2614d5cf))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "ROW1") (pinfunction "K") (pintype "passive") (tstamp 2575ea84-868c-4b3a-983e-8781d698b49a))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "Net-(D5-A)") (pinfunction "A") (pintype "passive") (tstamp a7af5846-4b12-4cab-8cea-1f94e1359255))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "B.Cu")
(tstamp 70f82b53-f257-4150-8069-98a8eee5a6b1)
(at 121.43875 126.7625 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "File: PCB Template.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Diode, small symbol")
(property "ki_keywords" "diode")
(path "/7f5db1fe-1964-4a89-a284-f51f99468096")
(attr smd)
(fp_text reference "D7" (at 0 2 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp c3b889c9-fd9c-4aba-ac1f-978f42507462)
)
(fp_text value "D_Small" (at 0 -2.1 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0b2a4f48-a7e2-4528-839e-6f7c0e8fae66)
)
(fp_text user "${REFERENCE}" (at 0 2 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6b4d7380-73ca-439f-97af-1d15905bbc38)
)
(fp_line (start -2.25 -1) (end 1.65 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e6861e17-1050-41dd-9685-edc4603a6134))
(fp_line (start -2.25 1) (end -2.25 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5e51a7d1-3378-43d2-80ca-33ea391fa2a1))
(fp_line (start -2.25 1) (end 1.65 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4426187b-4aac-4a97-8a25-60469d6a8e5f))
(fp_line (start -2.35 1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e1a56e20-f33b-425d-8209-8a0d0810c359))
(fp_line (start -2.35 1.15) (end 2.35 1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 61ea107f-ee69-49f8-b95a-5e541147ef99))
(fp_line (start 2.35 -1.15) (end -2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cb448b04-d14e-4dcc-bde0-ef2941742bd6))
(fp_line (start 2.35 1.15) (end 2.35 -1.15)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 67b8633b-23d6-46d0-bfa9-65d3cf75fa21))
(fp_line (start -1.4 -0.9) (end -1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ca482d16-f118-4073-9c79-19ebf8a2300f))
(fp_line (start -1.4 0.9) (end 1.4 0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 10afe684-9619-458d-9b74-50aa35299543))
(fp_line (start -0.75 0) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9cbfe62b-6bee-40c9-8d01-ab9915d2b265))
(fp_line (start -0.35 0) (end -0.35 -0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp b1e72fd5-97fd-41bc-b114-881ee1e3d889))
(fp_line (start -0.35 0) (end -0.35 0.55)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c2e22139-82d8-4a57-b830-02cc70bfdf5a))
(fp_line (start -0.35 0) (end 0.25 0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp abbd7ea4-3484-4150-9a16-1e873588cd65))
(fp_line (start 0.25 -0.4) (end -0.35 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp f7bb0116-8d81-4615-82e3-e948fcdbdd94))
(fp_line (start 0.25 0) (end 0.75 0)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 22efe6c4-b675-414f-9bbc-5c0e7817597c))
(fp_line (start 0.25 0.4) (end 0.25 -0.4)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fa73d09d-5779-49c7-8126-08b3166fc71b))
(fp_line (start 1.4 -0.9) (end -1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7e6eea45-e3dc-49ae-9844-8da6011b5241))
(fp_line (start 1.4 0.9) (end 1.4 -0.9)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 87cb38f1-8718-4e62-893e-80c21639e4a7))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "ROW2") (pinfunction "K") (pintype "passive") (tstamp 659eccc4-10f7-4eb2-a069-9fc4ba1a9d5b))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "Net-(D7-A)") (pinfunction "A") (pintype "passive") (tstamp 92c1c519-e259-4666-b2fa-a1886eddff8d))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)