-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard-pcb_firmware_version.kicad_pcb
7825 lines (7686 loc) · 617 KB
/
keyboard-pcb_firmware_version.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A3")
(title_block
(title "Orions Hands")
(date "2022-10-08")
(rev "1.0")
(company "Aleksas Girenas")
)
(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 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../Gerbers/")
)
)
(net 0 "")
(net 1 "COL_2")
(net 2 "Net-(ALT1-Pad2)")
(net 3 "COL_9")
(net 4 "Net-(ALT2-Pad2)")
(net 5 "COL_13")
(net 6 "Net-(BKSP1-Pad2)")
(net 7 "COL_0")
(net 8 "Net-(CAP1-Pad2)")
(net 9 "Net-(CTRL1-Pad2)")
(net 10 "ROW_0")
(net 11 "Net-(D1-Pad1)")
(net 12 "ROW_1")
(net 13 "Net-(D2-Pad1)")
(net 14 "ROW_2")
(net 15 "ROW_3")
(net 16 "Net-(D4-Pad1)")
(net 17 "ROW_4")
(net 18 "Net-(D6-Pad1)")
(net 19 "Net-(D7-Pad1)")
(net 20 "Net-(D8-Pad1)")
(net 21 "Net-(D9-Pad1)")
(net 22 "Net-(D10-Pad1)")
(net 23 "Net-(D11-Pad1)")
(net 24 "Net-(D12-Pad1)")
(net 25 "Net-(D13-Pad1)")
(net 26 "Net-(D14-Pad1)")
(net 27 "Net-(D16-Pad1)")
(net 28 "Net-(D17-Pad1)")
(net 29 "Net-(D18-Pad1)")
(net 30 "Net-(D19-Pad1)")
(net 31 "Net-(D20-Pad1)")
(net 32 "Net-(D21-Pad1)")
(net 33 "Net-(D22-Pad1)")
(net 34 "Net-(D23-Pad1)")
(net 35 "Net-(D24-Pad1)")
(net 36 "Net-(D25-Pad1)")
(net 37 "Net-(D26-Pad1)")
(net 38 "Net-(D27-Pad1)")
(net 39 "Net-(D28-Pad1)")
(net 40 "Net-(D29-Pad1)")
(net 41 "Net-(D30-Pad1)")
(net 42 "Net-(D31-Pad1)")
(net 43 "Net-(D32-Pad1)")
(net 44 "Net-(D33-Pad1)")
(net 45 "Net-(D34-Pad1)")
(net 46 "Net-(D35-Pad1)")
(net 47 "Net-(D36-Pad1)")
(net 48 "Net-(D37-Pad1)")
(net 49 "Net-(D38-Pad1)")
(net 50 "Net-(D39-Pad1)")
(net 51 "Net-(D40-Pad1)")
(net 52 "Net-(D41-Pad1)")
(net 53 "Net-(D42-Pad1)")
(net 54 "Net-(D43-Pad1)")
(net 55 "Net-(D44-Pad1)")
(net 56 "Net-(D46-Pad1)")
(net 57 "Net-(D47-Pad1)")
(net 58 "Net-(D48-Pad1)")
(net 59 "Net-(D49-Pad1)")
(net 60 "Net-(D50-Pad1)")
(net 61 "Net-(D51-Pad1)")
(net 62 "Net-(D52-Pad1)")
(net 63 "Net-(D53-Pad1)")
(net 64 "Net-(D54-Pad1)")
(net 65 "Net-(D55-Pad1)")
(net 66 "Net-(D56-Pad1)")
(net 67 "Net-(D57-Pad1)")
(net 68 "Net-(D58-Pad1)")
(net 69 "Net-(D59-Pad1)")
(net 70 "Net-(D60-Pad1)")
(net 71 "Net-(D62-Pad1)")
(net 72 "Net-(D63-Pad1)")
(net 73 "Net-(D64-Pad1)")
(net 74 "Net-(D65-Pad1)")
(net 75 "COL_12")
(net 76 "COL_10")
(net 77 "COL_11")
(net 78 "COL_1")
(net 79 "COL_3")
(net 80 "COL_4")
(net 81 "COL_5")
(net 82 "COL_6")
(net 83 "COL_7")
(net 84 "COL_8")
(net 85 "GND")
(net 86 "DT")
(net 87 "CLK")
(net 88 "unconnected-(U1-Pad8)")
(net 89 "unconnected-(U1-Pad13)")
(net 90 "unconnected-(U1-Pad18)")
(net 91 "unconnected-(U1-Pad23)")
(net 92 "unconnected-(U1-Pad27)")
(net 93 "unconnected-(U1-Pad28)")
(net 94 "unconnected-(U1-Pad29)")
(net 95 "unconnected-(U1-Pad30)")
(net 96 "unconnected-(U1-Pad31)")
(net 97 "unconnected-(U1-Pad32)")
(net 98 "unconnected-(U1-Pad33)")
(net 99 "unconnected-(U1-Pad34)")
(net 100 "unconnected-(U1-Pad35)")
(net 101 "unconnected-(U1-Pad36)")
(net 102 "unconnected-(U1-Pad37)")
(net 103 "unconnected-(U1-Pad38)")
(net 104 "unconnected-(U1-Pad39)")
(net 105 "unconnected-(U1-Pad40)")
(net 106 "unconnected-(U1-Pad41)")
(net 107 "unconnected-(U1-Pad42)")
(net 108 "unconnected-(U1-Pad43)")
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 145db372-d189-4ee4-a026-1db2e56d9699)
(at 228.219 146.041)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/dddd530a-7d20-4ba7-8acc-851e38ce533c")
(attr through_hole)
(fp_text reference "MX28" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f23ac95a-6042-478c-aaaf-39ed4821161d)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 816689fa-b8a6-412b-8bff-2f8e6d834ce0)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35329f82-0d3b-4ae3-90ac-6741a0c2c4f8)
)
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 597c8190-8f69-4bce-9d03-9cb38b031d6b))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp bb8778e5-8e3b-4864-8dbd-8e530b15e4ef))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp e22f7fac-1a9c-4e27-afea-e41efbb4977f))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp e4943b82-1c89-424d-b512-653ebd8248f8))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 55ce6ec0-3e2e-4ed5-aad0-00725395e0f2))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 5c1b6d0b-817f-43b9-b9ed-ee5e9e4f9d45))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp b1c6a2e2-2fea-40ef-988f-f93726343f93))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp dd4feb4b-d9ff-4294-8b5d-4c30b4ecfd89))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 2fcc2720-ae4f-45f4-accc-f481621e52f5))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 387e0aae-4f43-4a13-b30c-10ae7444d4e3))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 605776ab-d044-4949-b910-bee859094464))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp bd2e1909-bcd5-4234-9184-69783b617960))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 17f072f2-86c4-49ad-a150-d95f8ef9fa2f))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 5ac2d375-9db7-45b2-a628-0bf2ea6fb6ea))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8c5223f3-f4d1-40a4-aba5-0415b352a516))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp f9497807-ac69-42f4-82d9-758149538d9d))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 07ba9ac7-c1c4-4fd1-a645-77fa1297e913))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp b5eb6b05-b46b-43b8-acc7-b590d1d03199))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp e404142c-456e-4dfe-9450-f032f17a58f9))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 83 "COL_7") (pinfunction "COL") (pintype "passive") (tstamp aee5ad04-3db0-4f14-9735-a80d4c4ae94d))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 46 "Net-(D35-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp d166eb76-797a-4832-af1d-ea87dbf71d2c))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 14d43c02-e7c0-4242-8ac0-8c32b6223e64)
(at 130.683 184.15)
(descr "Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.25u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/eeb2c877-bfac-4fe6-9d65-8c660864b775")
(attr through_hole)
(fp_text reference "ALT1" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3846127-8480-42b8-bebc-231c73a08fe6)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ddfe658c-924e-4999-b54b-e3997aa770aa)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 886efc0e-c552-49fb-b48e-4d727e7698c2)
)
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 1544ab21-d3ba-4e06-970e-303d706edc1f))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 3536ea4b-d856-41af-8c7f-b0d872f669e6))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 89a4cd36-fc12-458b-9c14-416464aee70b))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp b8a39ed8-494b-4d35-99b9-870c8c3a6e73))
(fp_line (start 9.36625 14.605) (end -14.44625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 48043787-b481-42d9-8a43-8170cf5eef66))
(fp_line (start -14.44625 -4.445) (end 9.36625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp db47b565-4c03-42e1-81e6-8788129c35fb))
(fp_line (start -14.44625 14.605) (end -14.44625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp e337eaa0-720d-43b8-9258-62cf103449ec))
(fp_line (start 9.36625 -4.445) (end 9.36625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp f36b8b5a-1f93-4926-aaaf-5ce7b86f8e17))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 01148b9f-9e6b-4c82-9ddc-e4089de75be4))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 2273f77f-86aa-4287-8ac8-a4809a6a00ec))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp adbc0196-d5bd-4513-99f8-3f5ba56b9ea6))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp ae9218dc-7c53-4dd3-9146-8826a1015407))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 112c9e9c-7600-4b3f-aae1-c19ae462ab49))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 47f3b05d-70ea-4e24-b96d-2242df72a23b))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp bddf527e-6525-488e-8eb9-7093dfa5fd48))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp e66b74ac-3c95-4654-b130-d26463b68089))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 37937455-d883-40d2-a6f0-4a99a2634ed3))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 93711fb1-a499-4ae9-82de-2fcb222bde61))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp c83b2888-18cb-42c9-9cbb-c67b79895aa3))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 1 "COL_2") (pinfunction "COL") (pintype "passive") (tstamp 0e032345-4e90-453c-8877-49fc6a73ef8c))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 2 "Net-(ALT1-Pad2)") (pinfunction "ROW") (pintype "passive") (tstamp 59b2503f-ec11-4b80-878d-47db7b21b994))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.25u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 1b83eeb3-4166-4a44-9d54-224ec8860158)
(at 337.82 127)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/94270956-c587-4881-bfd9-eac7a237cf5b")
(attr through_hole)
(fp_text reference "DEL1" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a761a77-9e00-4810-b79d-2b7d3b2f9ea1)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d52fb3a9-2953-42f6-85f5-806dfd4a8961)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6db847a9-b8a8-4466-a2a5-b1668c25fd3f)
)
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 200877de-34c2-4f73-b74d-673b8f1d3cc9))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 389e8c44-fdbe-42ec-848a-310eb4557bde))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 72fc56d5-9b98-46a2-b2aa-36ed773e3a26))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp fc8dbb11-1c22-45bb-98e1-41c59292e284))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 36d1a804-3175-498c-aa32-8a9236685439))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 754d85d0-f708-4fb8-9ed5-b16e486dd723))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp da843910-22b8-4e47-a8da-0b585cebe1a4))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp fb68ab94-ff47-443c-9471-7fbd4d34d641))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 0d513f93-83f2-4b9b-a9a5-fb666d9612d1))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 0fe4180b-73f7-4d6e-8cd2-d34489624302))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 4a6d7085-db4d-4710-84c5-62a5e0bd93c2))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp e33a8baf-25a4-462b-b218-5352fdd2cda0))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 0b3dd54a-983e-4e86-837d-c27ab598df37))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 638defc9-555f-4a49-8e1b-b060304b506f))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8518898d-8630-403c-822c-1fbe5cd1b0dc))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp cc7f71a8-3e05-4850-92b2-7b9cc669eea3))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 28ed2455-2653-4717-baab-1532fa473ac6))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 43d50173-289f-4665-a0f6-714a686ad512))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 6048eef9-5e3f-4cee-a4a9-9ef176a01d79))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 5 "COL_13") (pinfunction "COL") (pintype "passive") (tstamp ac077a2a-45fd-4725-bb24-56b4d5dc45dc))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 71 "Net-(D62-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp e18076a2-b9d0-491c-833d-4f9f1ae3703e))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 2318c6db-f19d-4a41-84cb-b426001bd344)
(at 247.269 146.041)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/427c38e1-86a3-43e2-bc59-2d3f63c9e76a")
(attr through_hole)
(fp_text reference "MX32" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 416a7d7a-f68d-4c37-a16e-20df5bdee0a6)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f93ff59-9d60-4f9c-9ed2-a719fd3a230c)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95c9f16e-dcfb-43e7-b052-0608c6d95f3a)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 40108b9f-f2e6-4a82-a28c-924d005531bb))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 6e7ebd06-d08f-4150-8a29-a43613a7f7a2))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 6fd5c689-5052-48b3-811d-6447b92f5709))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp dffbb5f4-92bf-4a30-89f4-1ce2c81012c8))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 00c667be-31b8-4098-9c9d-6a760a0b7ebc))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 2356a979-dc64-4e4c-9158-46dca847330f))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 467f1cf0-82df-4024-b4f1-e215087960af))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 6bdb45ae-8549-4121-ae38-5cef3f4d949f))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 13c9ce61-f1e9-49e1-bc05-1c8cca45e334))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 36ca68d6-834f-45cf-9f36-2858cf353349))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 6a35a364-2d4e-4694-b109-2b7c1a38f334))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp f113dbe9-793b-4799-9aa7-9a8cad2f8c3f))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 07785780-56f3-45b1-89c2-5449f390451f))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 4cb76fec-e040-4b6f-b1d5-ed78dda42c96))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp bd8af6cd-67eb-4c6b-a985-426225e6f08f))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp dd7d7159-47cf-4660-be3d-2c0a381f7b37))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 568b3de7-8eae-4429-8d16-fc7ed21da4fe))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp c19ee433-f212-4a29-8745-e0fa8c48e49d))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp c85bcf79-3bb0-41c1-9e28-59647f76916a))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 84 "COL_8") (pinfunction "COL") (pintype "passive") (tstamp 5c9d17fb-e72f-4610-a1fe-a8ea379298f1))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 50 "Net-(D39-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 10ac0bb4-780d-42b2-99b9-41b7daff1717))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 245c7b57-1df0-4873-92fa-9fc0828af5b9)
(at 106.8578 184.15)
(descr "Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.25u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/b8825fa1-7dfd-4541-beb1-33c5820f6838")
(attr through_hole)
(fp_text reference "SUP1" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ef99dcb-4253-4dad-9ef0-242888ada2be)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aed50077-2bcf-49d8-96c9-829354fc9de9)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66c7d8c7-c2ce-437d-943a-7ae7b7e4c123)
)
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp b0b8e390-671b-4e93-9743-2c20379ec4d7))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp df79a3d4-5647-43f8-b20a-7be7ca170258))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp e141c5ca-f1ca-4e15-a7a7-6bc73b5ed496))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp f555707e-807c-48db-995a-65cfcc54d518))
(fp_line (start 9.36625 14.605) (end -14.44625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 29119eb3-e75d-49ac-8564-e77777bef0d0))
(fp_line (start -14.44625 14.605) (end -14.44625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 2dbe2db9-0239-46b5-baf9-ad5c76ea2018))
(fp_line (start -14.44625 -4.445) (end 9.36625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 773b70df-d606-451e-bb68-00ee1b636978))
(fp_line (start 9.36625 -4.445) (end 9.36625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp fe0e66d5-c3ec-46aa-be8f-b722920c0d9c))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 10115da5-90c7-4168-9fbf-a267125b9617))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 3157b573-db05-4ff9-a2e6-2d97a7db4bc9))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 54942d14-7fcc-47b7-bb63-e452dd382525))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 94416cfd-7a81-4af8-ab1a-a0ae058de399))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 06a5e196-5be7-4e1a-bab6-4a9dfbb5b05e))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp c9615892-b948-4e92-98db-246251b40214))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp d370f1d5-bdc5-44a2-a721-b8f40b0cf68d))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp dd2ce49b-d82d-440d-a007-1727d98dca6f))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 0cc42e80-6f36-43bf-a4d4-51a0108e826c))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 61d034ae-de6c-426a-9a69-c268986d2253))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp a638d137-8673-4f41-b157-62fe753af90c))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 78 "COL_1") (pinfunction "COL") (pintype "passive") (tstamp 4f9cec88-a866-4584-a9b1-0d040128e87d))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 22 "Net-(D10-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 05c9ae58-c448-4d71-b82f-fac89d890020))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.25u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 25ee4fbc-fb79-456d-a5d6-8ab9d902d042)
(at 309.245 107.95)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/933c3211-eef2-4de7-ad58-84a142138b9a")
(attr through_hole)
(fp_text reference "MX46" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bf792bf-4ae9-4a47-a747-14436ac92102)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd7b79b1-bd86-4547-9183-ef0963cc6eaa)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ade27788-63c0-43e8-8964-c2ea888f78ac)
)
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 84a98200-8807-4b35-bca9-4fda47139e5d))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 860492d1-d3a1-4f05-8b54-f4864d74b501))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp b3dddd4f-3042-4062-aa0f-dc07bd2ad7e7))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp eadfee3a-0962-4416-8ad4-73dfc9894b77))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 445dd78d-e1c2-41ba-b595-96eb8af55aa5))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 6ef4aea8-5720-4fae-bc7e-c4c2f4389887))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 978d9137-dded-42a0-8989-6d45e826246f))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp d8fcad97-49b0-488c-9488-2014fd5af653))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 7c173289-a700-4c85-9d47-9e315f8b9f89))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 996cbe4a-e8ac-464c-977d-dfebab2ef1c3))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp e7f1f5b5-3088-47d4-9a5f-19505d4d23f0))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp f1ea8560-5700-4e24-b929-9ac2a4c70936))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 5ebb0443-7b2b-4ab8-af00-c3f197a05520))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 7230047e-ba99-4665-b9bd-8e3d594d11f3))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 74685e5f-657c-4a88-81cb-1d61e8ef50a1))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 82614e90-6e33-41e8-a611-cec12b161d32))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 1cdc8170-b061-4e07-87a5-ac59f1208901))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 55693d0a-cb3a-4304-85ef-555f7eaa5d93))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp e5939eb7-1f88-4c3f-8bec-359e127fb06f))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 75 "COL_12") (pinfunction "COL") (pintype "passive") (tstamp 2d5624bc-7f6c-4cce-a002-eccdeea29eaf))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 66 "Net-(D56-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp a849429e-ad99-4700-a159-46aac373d215))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 2a99dbde-2b34-4a9f-a780-425b974e1dbf)
(at 299.6946 126.991)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/fe413aad-dc80-4c0f-9ccd-e2215eb938c5")
(attr through_hole)
(fp_text reference "MX43" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9dd39b3d-2a36-4ff9-a54f-595e9badc77c)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd9cf25e-0cb4-4d22-8386-d16babbb525a)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21b5bf8c-2a36-45a4-857c-55ff0a03cb60)
)
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 1d5337b9-d45d-42de-be3a-9e2fb3e2fa76))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 53c8aec7-4598-40ff-a2a4-a054e4ad26f8))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 77e5a1b2-a64a-4daa-b3a4-c8fa9917141c))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp b5dd37f8-bcfe-427b-95ed-b1a70e343292))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 025e8741-0648-4025-9670-4b895618f6e0))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 0a114094-aaaa-4728-8025-570f21504165))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp e7e108ed-12a9-4d89-a7ac-463659986790))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp eef1bbb0-38d2-4f53-bdca-4613eaf5b350))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 392a74c0-5fcc-4052-9a94-f49e4b6d0fa5))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 67fefd84-8434-4039-9a43-e3e2f7902ab3))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 8a96d3d8-0ff8-45a8-94d8-c027a4d41384))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 90b44f56-1ffb-49d6-a74a-338cf6d33ba2))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 025275a1-6764-41a4-b090-af5eb1d140b6))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 119b09ff-d53e-425b-8a53-72a01ba0718d))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 752b2566-e86b-4a67-ad6b-eb7656d8472e))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp e504adb5-6fff-4a90-b420-3a3b18d7253a))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 41fc85b2-5f39-42f7-82fe-bb3ca1e1e186))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 4f5f35aa-d17c-440d-b6b0-6a438acfead5))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp e6824cad-4b00-4989-be65-c6ee534f65a6))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 77 "COL_11") (pinfunction "COL") (pintype "passive") (tstamp c9ec63bd-2105-4c7b-8833-38165aa3c66d))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 62 "Net-(D52-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 6b09df7a-1c24-46b9-bbe1-9f515736e79d))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 34a9486f-49c8-4483-aa05-e9e7c3be2bc2)
(at 337.82 184.15)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/728a50e8-d965-4d40-8131-375031cd8881")
(attr through_hole)
(fp_text reference "DWN1" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38faff08-ea63-4422-ab3a-eb029181ea3e)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b646935-a1a3-4534-b764-0fb8290e1f0f)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d5745d7-990f-4b1f-b958-1f1202af2f2a)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 60b0182c-bfa9-4e72-8711-c96aad97ec5b))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 77821522-488a-40f7-acb6-09b0726a36f1))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp bae075bc-6c21-4911-b0a5-264f1a39959c))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp c4565f1b-5f41-4b6e-89d8-a2e4f4776ea6))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 36229789-43f1-4cb8-95bc-c562088a8e37))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 380371b5-5914-463f-b3c8-86c51606ae8e))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 46d307cb-1f4e-4419-9840-bf438dee83ca))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 98afaf9f-3ac3-4dff-b938-731235382370))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 0ff521be-a82b-4069-a4a2-74b1d42c42f3))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 26098b5e-6ec3-46be-aa4e-631c6dd9e99b))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp a13640a2-2881-4fe2-8078-f4059f6dc79a))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp d6c5b472-4baa-4bfc-94d9-338116496815))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 194f0649-c388-41f9-a918-2e0085a7510d))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 5703daa9-d7b7-4782-abbf-5c70c21047fb))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 59454ab8-4d33-461d-ab2d-5108510bedbd))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp a99ad36a-40a3-4324-af6d-cb7a75e2970d))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 1652c653-e71d-4cae-9510-be1227090534))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 2686f5bd-87ac-4090-ba95-18559f92acd8))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp fad5b983-df94-4d7a-9e9d-384147f37858))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 75 "COL_12") (pinfunction "COL") (pintype "passive") (tstamp a2deb17f-e0b1-4a85-bd3d-a392fae4cf20))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 70 "Net-(D60-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 654cefd9-b593-4844-a9e1-a1f212c4c564))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 40d12431-5808-4ff8-9852-41bb6ecb9ca7)
(at 152.019 146.041)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/38b94a87-ea67-4438-9380-0b13d812af83")
(attr through_hole)
(fp_text reference "MX12" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eff718b6-f341-40d6-ab79-85f75bfa246d)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3729074d-ea1d-4d23-9954-1dea4e4b9e0a)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a738db0f-bc82-4f1c-bb9e-aabce19a3ad2)
)
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp d5f6f499-4c62-45a3-893e-2e0890845409))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp d6f50c4c-800f-4fe4-abd6-f6e1faec3ab1))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp e2280509-aedc-4b44-883a-3c851c1c6104))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp fd1faf3e-f532-4d0b-8ec4-b24cc632a61d))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp da838f37-042d-486f-a1dd-dcccfb93b164))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp e08ab3ce-cd51-48b6-86b2-6d8dffc3239f))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp f691370d-172c-4e40-b804-dbff9739f823))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp fa4141f4-a912-422e-9e4b-dc077e0d3514))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 1ccc58be-697b-42e6-8b60-6fa7380069bb))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp e02c3c7a-0a3a-4c55-80e2-c2adc8a68be6))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp e6bb075b-beb4-4864-ad44-8bc5448e3634))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp fcf851ec-3728-4311-aed9-82ab79e87514))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 2a909868-a392-476d-aa08-d186391dc9da))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2b4a5a7d-eb26-4b1a-bc28-058e384abee9))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7d1ac0af-6ba0-4489-945b-9643264fba40))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 9b8b3cb8-9a74-4960-8f0d-fe4f7e421e66))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 13fba5bb-82ba-4966-8c22-ed507dc8c3d0))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp a983c51d-2dbc-4d68-ba53-c4d2ebf11d0c))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp e576eb30-fff8-43df-8da4-49ae15f087cf))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 79 "COL_3") (pinfunction "COL") (pintype "passive") (tstamp ab3697e2-4da2-4f85-b1bb-d1a22fad76e9))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 29 "Net-(D18-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 4999a554-21ab-4074-aba1-9cd3610e6822))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 47d32c44-b39f-451e-82a9-69e157009a9d)
(at 237.7948 165.091)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/3522c75e-d528-4038-ba1b-2d1925d1c4ef")
(attr through_hole)
(fp_text reference "MX33" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf7985a1-42ae-496c-8bf1-091212990453)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2a06e5c-68bc-4566-8558-8c694f39919f)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27efe71a-c9d0-4409-9a14-e826acdfc054)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 7050934b-99af-4841-98a7-069ddf867d4c))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 796115d9-9ad4-4a95-9ead-8a67d3ae4266))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp ed5cffe1-9cd4-4e4d-896d-dc8e95b8a8ec))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp f6ff0de9-b3c8-44b2-b14e-13e58dbdcbf5))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 03696012-04bd-46db-8ca4-e5cf2d220bfc))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 961f57a0-c1c1-443a-b138-0fd492794561))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp c01b7120-7591-4413-91a3-3a5cc4ed4488))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp cf571569-1218-47f8-a054-22ebcdd8e1f1))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 6b0a4657-21f5-42c5-9e28-6577a048b9bf))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 930ded7e-a4df-4354-bce5-b6513268ab57))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 98b2b9b9-71fc-4dd6-8576-73103a275c99))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp ce0a1a06-769c-4de8-8184-0829609c628b))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1454e975-bb63-405c-a94c-3853aa27d99c))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 575e6b8b-a528-47fe-911d-11bb3528b657))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7ff3c9b1-323a-40c5-bceb-e5b736749aee))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp e88f44f2-7211-4da2-bf8c-0dab26200753))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 2870e4a6-239f-423c-b887-c8415b546116))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 3e011ea0-b40a-487c-9c89-2a6c493f50ed))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 568fe44e-3ee7-4c42-adab-a430978cc822))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 84 "COL_8") (pinfunction "COL") (pintype "passive") (tstamp cf81b045-c666-4018-9692-a84007065a49))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 51 "Net-(D40-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 9d3767b2-fa27-449f-a96f-85f6ec49df6e))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.25u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 48717f92-4291-4d26-953a-985fc457fbcf)
(at 297.3324 184.15)
(descr "Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.25u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/5df7dc76-96ae-4b35-8521-173b4e8e0587")
(attr through_hole)
(fp_text reference "FNC1" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef826f9d-0147-4af9-a121-7d7bacbe6783)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cacc96e2-726a-4d1d-a338-543377236f49)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e587b884-7565-461f-84fd-78e99771105f)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 039d419c-cbc3-4283-9521-5fbe325e8708))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 772ed9d7-fdef-4bae-8914-83f767af222d))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 79a49e8b-a817-477b-a2d8-f5309cb1be7d))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 7e84b85c-666e-441a-9691-6b95b2201426))
(fp_line (start -14.44625 14.605) (end -14.44625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 00686c80-1c3b-4e41-9450-47ed99decb53))
(fp_line (start 9.36625 -4.445) (end 9.36625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 06641552-dd70-4dde-9a22-64524357841e))
(fp_line (start 9.36625 14.605) (end -14.44625 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 5c0e8c88-72d2-446c-bdef-115f640aabac))
(fp_line (start -14.44625 -4.445) (end 9.36625 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 5d4b614a-f690-474e-a55c-0391f9edaf02))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 19ec5f4a-7ada-4ff9-b508-35c5e059f6fd))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 974e41ee-7448-40cb-a350-e91abfc7870c))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp c1963cdd-f0ec-4c43-87d4-289f7e528db8))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp d5acf6a2-2a04-46a6-bcca-8515321a6a68))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 16f78754-d747-41fc-960f-b7fe04814e97))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 74f28b2d-8550-4c3f-b4c3-cf05c0e772fd))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp ab2654a6-c8d1-48d9-a342-2daa75cea9b5))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp decefb1f-8f8a-4983-9947-2a06a9ebc2b3))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 361b2689-e24b-47db-bcd1-2c163cb8ef98))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp b8ca62f3-002c-4f4e-86d0-2101f41cc005))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp f95d2ae9-7943-4d5f-97e5-72562bc953e8))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 76 "COL_10") (pinfunction "COL") (pintype "passive") (tstamp ca548a2f-c609-4bbf-a7a2-864aafb1d347))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 60 "Net-(D50-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 883c755c-3556-42d1-ba30-87a8de4d1ea0))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.25u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 4d6de9fa-fe2a-4eeb-abbf-68e139984921)
(at 218.7448 165.091)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/86b756ca-34af-4255-9137-e8433e34836a")
(attr through_hole)
(fp_text reference "MX29" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2028334f-81ca-4bd6-b2d9-99f6229e018b)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa43211d-a520-4ac4-a265-42e98ae866b9)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92143aee-04b7-4da5-be5b-dff58525c323)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 4d364332-b623-45a4-a440-04a96be1acd7))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 7846d881-1bf1-4e55-806f-aa88d77fefc8))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 8bdddbbf-a573-443d-bb50-6518b2a435ed))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp b7845917-f053-4c56-b57c-71b6d6095af7))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 2dbf4c88-6564-471e-9acb-7869a436801f))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 7f99c4d3-a19c-4cbf-9c38-bfc078bfdd72))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 98aac270-06ec-4c89-91c1-2e65b8632130))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp fdbfaabd-8b88-4517-b35c-928e2793137b))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 67a95566-e871-41d8-afea-9b97e2f5bf34))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp babf5519-ad3f-4818-b3c9-16309f3d5c7d))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp cf4c071d-70b4-42da-af31-a708ef1be7b1))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp d94f44be-cdba-4022-a3a4-548db765790a))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 054ec139-8754-45e7-aada-88305db6e059))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1ae3eec6-47cd-4b9c-86ab-f22427d4d982))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1be53369-b5f4-40a6-afc7-31d1198508f1))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 344c798e-c8d5-4771-a563-63f14f5a0104))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 830d9a0e-ed24-4163-a8a2-83f2ada701a0))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp e1182664-162c-471d-8a40-f84ee2fbf277))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp fc8968f3-b86e-402b-86ab-7cc2963303c9))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 83 "COL_7") (pinfunction "COL") (pintype "passive") (tstamp 3ea9efcd-5d4b-4919-8560-f1334ec42513))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 47 "Net-(D36-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 2261459d-ea19-40f6-a396-b3437b55ba0d))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 4e4e543c-6ac3-4ea0-b512-c8a24f82e343)
(at 132.969 146.041)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/6a5e0acf-7134-45d7-8aef-554f10e16f1b")
(attr through_hole)
(fp_text reference "MX8" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e2a72be-e297-45a2-8b83-c0ef4fc20d36)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ece9ff61-7026-43c0-a78b-a097a5f3ed5a)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d387b195-3b0e-4ae7-8eda-d9134ad25080)
)
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 444c0156-d7f4-437b-8193-b1a1240f09ba))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 4dc7d5e3-5c07-4761-97a4-48a6085d9e83))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp cdcf3b7b-afed-4814-9c8a-005268aa252e))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp d6e98f6d-19fb-47d9-a087-e12b367fd1ef))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 062fc4d9-beab-4be4-83d4-3df5b1c135cc))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 54e80830-76e1-4ccc-8fee-d784f559d691))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp d45e075f-da32-499f-9459-a0327ccd8b8b))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp e4046b49-391c-4b44-bee3-f9ac2b5b2c49))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp af4f2493-35d1-43cc-a9de-11d0db5a25cc))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp b384b943-86d7-4d16-be40-870f648705fc))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp ba1ac0b8-0577-4692-bb81-326c95cc40dc))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp d6def0ed-b6e9-4520-8db7-33ef0ea6d666))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 58032321-ff54-4efd-bdc6-cfa292f2a675))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9ad3f65e-2e67-4fb1-b146-3847a28a4caa))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp cd68a277-b7bb-4175-95d9-5c1c23a30329))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp e57f7f42-6bed-4c0b-a444-f3aa0fb7d91f))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 1bba9fc2-70c1-4559-b9ea-3bd2f1f06ab2))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 54fc239b-d37d-45d2-b886-033ab807404f))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 96ff927c-2b80-4729-902c-0312636c70c0))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 1 "COL_2") (pinfunction "COL") (pintype "passive") (tstamp 28065a24-e291-452d-9a3a-941bab61e6a8))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 25 "Net-(D13-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 6ba453d2-8138-4dab-9d30-ad65c7594580))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 5086a5bf-a964-4143-828b-f2c3560ff7d4)
(at 223.4946 126.991)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/e664128f-cd58-4c13-b05a-5ba814ce4cfc")
(attr through_hole)
(fp_text reference "MX27" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1db3e7e9-a3d4-4174-80b7-dab7ffe9536c)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f07e675-63e9-449e-b5d6-b4a59a826fbe)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a02d3b38-85e8-478d-a327-1c3d4d07e241)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 1f4192f6-c577-4d36-a326-1d0a29d6c29a))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 38dcf56d-bf49-45b7-9a62-f1bcce77e6d6))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 5c88bdd1-fd64-41e0-a34f-1032e3d424e3))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp b2a01a71-43e4-4799-bcbc-bff1956fdc68))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 1d5fcf16-6d6c-4f94-8108-66ef96991900))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 305e2379-9a6c-43f2-adba-8719fd470a40))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 8c2fc63c-857a-4b08-a759-442442cf1f75))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp f73acb65-5ad0-4b9e-8c9d-ad7d5e7dd1be))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 8b0bd161-2264-4c45-8371-c02184202384))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 8c51d425-8855-445f-ab91-0c8cf0c94e55))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 9c1709b6-c0b1-40f6-943e-df5eae91694b))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp f989d207-5e72-4c88-8b26-6d7640664efb))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1bcb9c04-1d84-479d-87a9-c14f80e008dd))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 3adcc17d-8025-4a3a-9de0-dad354aa3efb))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp a0a9c451-dc38-42ea-9596-84ad9e1d35d3))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp bd05a77b-91e4-448c-87b7-2f0a94fa1993))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 00754cb6-d456-413c-86eb-b54d0f51836b))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 8f52b70f-1b6d-4857-97e3-f70a1514b1d4))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 9641b8e3-3656-4644-9f32-54c334c2704b))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 83 "COL_7") (pinfunction "COL") (pintype "passive") (tstamp 8052b99d-67bf-425c-a954-c0e2ca4b1679))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 45 "Net-(D34-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp 79436742-beaa-4bee-a6e5-4a850e9fb5f1))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 51e034a6-3d62-4b7b-9734-3e0db1b2768e)
(at 204.4446 126.991)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/50f2dcbe-2036-4c05-8660-63e163e27f71")
(attr through_hole)
(fp_text reference "MX23" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ac339cc-0ae1-4319-96be-49e9ab1ee384)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b37f344f-d84f-440f-8871-63e50d22b417)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6730375b-1c68-4497-ba71-b56797505386)
)
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 0762e1fc-9283-4dc1-aa59-6309707932d0))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 334c3812-f681-426a-864a-0452539bd8d2))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 698194e6-4f37-4d95-a2f1-27f0e2323a36))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp d2797c00-f15b-43b0-a5b5-922e006ca28b))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 3f13101f-b048-4646-934f-38911e2a5eda))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 4212dc67-8542-4580-9125-6eed71876b2b))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 617c743f-6d8a-4d94-97df-da3a1a2cfb9a))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp c8a15432-92f6-491b-ab6b-035678894e7e))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 4a5774a5-6638-4567-81c6-c6bb8aaff46c))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 4b1620c0-892a-4c9d-95f0-1618ca49cb65))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp b7bdadd3-2d70-4749-b04e-aae89a2f619a))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp c3caa293-1f1a-4cd7-8978-79093fb00c4d))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2d668fd1-77a5-4b6b-8d27-877a9365bf7f))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8377a587-c33e-4d04-ad61-415dff2138ef))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp b46513d2-e6b2-440a-9cbc-64d3c2ead47e))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp c1e98a4c-eafa-4dc0-b648-1b2565508b1f))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 135e749c-ffaa-4060-8365-0e15b80c7802))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 641d602c-c524-40af-a9ea-186a41eb5ef6))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 8c79a537-3d62-4562-a1c6-9a73d0a72aa6))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 82 "COL_6") (pinfunction "COL") (pintype "passive") (tstamp bec6ca1a-bcaa-4434-b0c5-d988deaf2bcd))
(pad "2" thru_hole circle (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 40 "Net-(D29-Pad1)") (pinfunction "ROW") (pintype "passive") (tstamp cade7a73-6de2-4cfd-8f42-41b11f3a1611))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_PCB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_PCB" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 5cdf0314-04aa-429a-b9f2-8558aa5a91e2)
(at 156.845 107.95)
(descr "Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u PCB")
(property "Sheetfile" "File: keyboard-pcb.kicad_sch")
(property "Sheetname" "")
(path "/195b3fed-2586-42d3-9c75-6378766687cc")
(attr through_hole)
(fp_text reference "MX14" (at -2.54 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40064c17-86d3-4a5f-90b8-9a6170573dab)
)
(fp_text value "MX-NoLED" (at -2.54 12.954) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9caf6dbf-6528-4aa2-870e-de650f2da5fe)
)
(fp_text user "${REFERENCE}" (at -2.54 -2.794) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34458c00-b317-4dd4-b542-b427e1d9a4aa)
)
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 278f281f-ef4a-4457-999b-cd9e7f4c980c))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 8cc88beb-4d5b-4e62-9aea-8c4560ff602f))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 8dbfb440-5719-4a73-a96c-5b4d9d3df395))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp ccc90774-297a-4fcb-9d5b-303bd1b739a6))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 45229626-fa63-4f02-8ce2-99af6406106c))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 60460f2f-9f3a-45f0-8f96-2b3597a368fa))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp ce54823e-d4c5-40f5-948c-4b10fe3ef674))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp def61e97-9008-42b0-95e5-3b7c26eba948))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 3f5a15ac-3e4b-4501-a98d-df56550c239a))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 3fe126a3-8e3a-477c-8101-98e3604551de))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 69376842-db02-452a-8057-7153342356bf))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp ee771380-a1ac-4e4e-9729-10c6c14183bc))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 0b682fc5-477c-4b74-925a-ef5482135ed3))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp a801ffd7-b8ee-4166-9c1f-404905fe2e46))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp c3e65bf6-b4cf-4f24-ade6-f69489f752c6))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp d1066ad9-5f90-49f1-bddc-80b35f25c5c5))
(pad "" np_thru_hole circle (at -7.62 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 0a004bb4-1f1b-420e-a118-7d9ba0f94eb1))
(pad "" np_thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask) (tstamp 58e90bf6-58d9-4701-a08f-5695d94e85a2))
(pad "" np_thru_hole circle (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 83031db0-47f6-4841-a85d-ad1f260aa41d))
(pad "1" thru_hole circle (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 80 "COL_4") (pinfunction "COL") (pintype "passive") (tstamp 673fce31-7cd5-48cb-88e0-3d76932d0bcd))