-
Notifications
You must be signed in to change notification settings - Fork 0
/
haigha.kicad_pcb
4134 lines (4105 loc) · 239 KB
/
haigha.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 "A4")
(title_block
(title "Corne Light")
(date "2018-12-26")
(rev "2.1")
(company "foostan")
)
(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)
)
(setup
(pad_to_mask_clearance 0.2)
(aux_axis_origin 145.73 12.66)
(grid_origin 69.85 81.28)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "row0")
(net 2 "row1")
(net 3 "row2")
(net 4 "row3")
(net 5 "Net-(D20-Pad2)")
(net 6 "GND")
(net 7 "VCC")
(net 8 "col1")
(net 9 "col2")
(net 10 "col3")
(net 11 "col4")
(net 12 "col5")
(net 13 "LED")
(net 14 "data")
(net 15 "reset")
(net 16 "SCL")
(net 17 "SDA")
(net 18 "Net-(U1-Pad14)")
(net 19 "Net-(U1-Pad13)")
(net 20 "Net-(U1-Pad12)")
(net 21 "Net-(U1-Pad11)")
(net 22 "Net-(J1-PadA)")
(net 23 "Net-(U1-Pad24)")
(footprint "kbd:MJ-4PP-9" (layer "F.Cu")
(tedit 5B986A1E) (tstamp 00000000-0000-0000-0000-00005c238668)
(at 142.8 73.66 -90)
(path "/00000000-0000-0000-0000-00005acd605d")
(attr through_hole)
(fp_text reference "J1" (at -0.85 4.95 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 888fd7cb-2fc6-480c-bcfa-0b71303087d3)
)
(fp_text value "MJ-4PP-9" (at 0 14 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a92f3b72-ed6d-4d99-9da6-35771bec3c77)
)
(fp_text user "TRRS" (at -0.8255 6.4135 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13)
)
(fp_text user "TRRS" (at -0.75 6.45 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20901d7e-a300-4069-8967-a6a7e97a68bc)
)
(fp_line (start -4.75 0) (end 1.25 0) (layer "B.SilkS") (width 0.15) (tstamp 051b8cb0-ae77-4e09-98a7-bf2103319e66))
(fp_line (start 1.25 0) (end 1.25 12) (layer "B.SilkS") (width 0.15) (tstamp 974c48bf-534e-4335-98e1-b0426c783e99))
(fp_line (start -4.75 12) (end -4.75 0) (layer "B.SilkS") (width 0.15) (tstamp aa1c6f47-cbd4-4cbd-8265-e5ac08b7ffc8))
(fp_line (start 1.25 12) (end -4.75 12) (layer "B.SilkS") (width 0.15) (tstamp f28e56e7-283b-4b9a-ae27-95e89770fbf8))
(fp_line (start -3 0) (end 3 0) (layer "F.SilkS") (width 0.15) (tstamp 35c09d1f-2914-4d1e-a002-df30af772f3b))
(fp_line (start -3 12) (end -3 0) (layer "F.SilkS") (width 0.15) (tstamp 422b10b9-e829-44a2-8808-05edd8cb3050))
(fp_line (start 3 0) (end 3 12) (layer "F.SilkS") (width 0.15) (tstamp e2b24e25-1a0d-434a-876b-c595b47d80d2))
(fp_line (start 3 12) (end -3 12) (layer "F.SilkS") (width 0.15) (tstamp fad4c712-0a2e-465d-a9f8-83d26bd66e37))
(pad "" np_thru_hole circle locked (at -1.75 1.5 270) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask "F.SilkS") (tstamp 0f560957-a8c5-442f-b20c-c2d88613742c))
(pad "" np_thru_hole circle locked (at 0 8.5 270) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask "F.SilkS") (tstamp 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5))
(pad "" np_thru_hole circle locked (at -1.75 8.5 270) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask "F.SilkS") (tstamp 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
(pad "" np_thru_hole circle locked (at 0 1.5 270) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask "F.SilkS") (tstamp 86ad0555-08b3-4dde-9a3e-c1e5e29b6615))
(pad "A" thru_hole oval locked (at 0.35 11.8 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 22 "Net-(J1-PadA)") (clearance 0.15) (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
(pad "A" thru_hole oval locked (at -2.1 11.8 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 22 "Net-(J1-PadA)") (clearance 0.15) (tstamp 0d993e48-cea3-4104-9c5a-d8f97b64a3ac))
(pad "B" thru_hole oval locked (at -3.85 3.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 14 "data") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
(pad "B" thru_hole oval locked (at 2.1 3.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 14 "data") (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
(pad "C" thru_hole oval locked (at -3.85 6.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 6 "GND") (tstamp 73fbe87f-3928-49c2-bf87-839d907c6aef))
(pad "C" thru_hole oval locked (at 2.1 6.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 6 "GND") (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
(pad "D" thru_hole oval locked (at -3.85 10.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 7 "VCC") (clearance 0.15) (tstamp 17ed3508-fa2e-4593-a799-bfd39a6cc14d))
(pad "D" thru_hole oval locked (at 2.1 10.3 270) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask "F.SilkS")
(net 7 "VCC") (clearance 0.15) (tstamp b12e5309-5d01-40ef-a9c3-8453e00a555e))
(model "../../../../../../Users/pluis/Documents/Magic Briefcase/Documents/KiCad/3d/AB2_TRS_3p5MM_PTH.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.42 0.42 0.42))
(rotate (xyz 0 0 90))
)
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c2386aa)
(at 40.929 38.7641 5)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2699")
(attr through_hole)
(fp_text reference "SW2" (at 4.6 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
)
(fp_text value "SW_PUSH" (at -0.5 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71f8d568-0f23-4ff2-8e60-1600ce517a48)
)
(fp_text user "${VALUE}" (at 0 8.255 5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0)
)
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 9c607e49-ee5c-4e85-a7da-6fede9912412))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp e5e5220d-5b7e-47da-a902-b997ec8d4d58))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp eac8d865-0226-4958-b547-6b5592f39713))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp f2480d0c-9b08-4037-9175-b2369af04d4c))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp f345e52a-8e0a-425a-b438-90809dd3b799))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 633292d3-80c5-4986-be82-ce926e9f09f4))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp b854a395-bfc6-4140-9640-75d4f9296771))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 01f82238-6335-48fe-8b0a-6853e227345a))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 0e249018-17e7-42b3-ae5d-5ebf3ae299ae))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 63489ebf-0f52-43a6-a0ab-158b1a7d4988))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp 7c00778a-4692-4f9b-87d5-2d355077ce1e))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp 014d13cd-26ad-4d0e-86ad-a43b541cab14))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 6d0c9e39-9878-44c8-8283-9a59e45006fa))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 7c411b3e-aca2-424f-b644-2d21c9d80fa7))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 7db990e4-92e1-4f99-b4d2-435bbec1ba83))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 8efee08b-b92e-4ba6-8722-c058e18114fe))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp cd5e758d-cb66-484a-ae8b-21f53ceee49e))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp e6d68f56-4a40-4849-b8d1-13d5ca292900))
(pad "" np_thru_hole circle locked (at -5.22 -4.2 5) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
(pad "" np_thru_hole circle locked (at 5.5 0 5) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f))
(pad "" np_thru_hole circle locked (at -5.5 0 5) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
(pad "" np_thru_hole circle locked (at 0 0 5) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp f7447e92-4293-41c4-be3f-69b30aad1f17))
(pad "" np_thru_hole circle locked (at 5.22 -4.2 5) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
(pad "1" thru_hole circle locked (at 0 5.9 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 4 "row3") (tstamp 5ff19d63-2cb4-438b-93c4-e66d37a05329))
(pad "2" thru_hole circle locked (at -5 3.8 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8))
(pad "2" thru_hole circle locked (at 5 3.8 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c2386c0)
(at 62 28.54)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e27f9")
(attr through_hole)
(fp_text reference "SW3" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be41ac9e-b8ba-4089-983b-b84269707f1c)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98861672-254d-432b-8e5a-10d885a5ffdc)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6a2bcc72-047b-4846-8583-1109e3552669)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 775e8983-a723-43c5-bf00-61681f0840f3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 430d6d73-9de6-41ca-b788-178d709f4aae)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0e7a81b-2259-4f8d-8368-ba75f2004714)
)
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp 0cc9bf07-55b9-458f-b8aa-41b2f51fa940))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 241e0c85-4796-48eb-a5a0-1c0f2d6e5910))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 363945f6-fbef-42be-99cf-4a8a48434d92))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 386ad9e3-71fa-420f-8722-88548b024fc5))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 7c5f3091-7791-43b3-8d50-43f6a72274c9))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp 97dcf785-3264-40a1-a36e-8842acab24fb))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 7f9683c1-2203-43df-8fa1-719a0dc360df))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp b0054ce1-b60e-41de-a6a2-bf712784dd39))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp be2983fa-f06e-485e-bea1-3dd96b916ec5))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp c873689a-d206-42f5-aead-9199b4d63f51))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp cee2f43a-7d22-4585-a857-73949bd17a9d))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 3e57b728-64e6-4470-8f27-a43c0dd85050))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp 5e7c3a32-8dda-4e6a-9838-c94d1f165575))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 5f31b97b-d794-46d6-bbd9-7a5638bcf704))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 34c0bee6-7425-4435-8857-d1fe8dfb6d89))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 5d49e9a6-41dd-4072-adde-ef1036c1979b))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 6cb535a7-247d-4f99-997d-c21b160eadfa))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 87a1984f-543d-4f2e-ad8a-7a3a24ee6047))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp e0830067-5b66-4ce1-b2d1-aaa8af20baf7))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 2de1ffee-2174-41d2-8969-68b8d21e5a7d))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 75b944f9-bf25-4dc7-8104-e9f80b4f359b))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 84d4e166-b429-409a-ab37-c6a10fd82ff5))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp bac7c5b3-99df-445a-ade9-1e608bbbe27e))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 3249bd81-9fd4-4194-9b4f-2e333b2195b8))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp cb083d38-4f11-4a80-8b19-ab751c405e4a))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp cbde200f-1075-469a-89f8-abbdcf30e36a))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 10 "col3") (tstamp f50dae73-c5b5-475d-ac8c-5b555be54fa3))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 347562f5-b152-4e7b-8a69-40ca6daaaad4))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 70d34adf-9bd8-469e-8c77-5c0d7adf511e))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c2386d6)
(at 80 25.18)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2908")
(attr through_hole)
(fp_text reference "SW4" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da481376-0e49-44d3-91b8-aaa39b869dd1)
)
(fp_text value "SW_PUSH" (at 2.54 5.73 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f988d6ea-11c5-4837-b1d1-5c292ded50c6)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6983918-fe05-46ea-b355-bc522ec53440)
)
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 3a41dd27-ec14-44d5-b505-aad1d829f79a))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 5c7d6eaf-f256-4349-8203-d2e836872231))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 98fe66f3-ec8b-4515-ae34-617f2124a7ec))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp c7df8431-dcf5-4ab4-b8f8-21c1cafc5246))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp d38aa458-d7c4-47af-ba08-2b6be506a3fd))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp dde8619c-5a8c-40eb-9845-65e6a654222d))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp e7d81bce-286e-41e4-9181-3511e9c0455e))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 0fc5db66-6188-4c1f-bb14-0868bef113eb))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 10e52e95-44f3-4059-a86d-dcda603e0623))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp 142dd724-2a9f-4eea-ab21-209b1bc7ec65))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 15a82541-58d8-45b5-99c5-fb52e017e3ea))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 2e0a9f64-1b78-4597-8d50-d12d2268a95a))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 582622a2-fad4-4737-9a80-be9fffbba8ab))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 9aaeec6e-84fe-4644-b0bc-5de24626ff48))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp d3e133b7-2c84-4206-a2b1-e693cb57fe56))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 252f1275-081d-4d77-8bd5-3b9e6916ef42))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 62e8c4d4-266c-4e53-8981-1028251d724c))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp b13e8448-bf35-4ec0-9c70-3f2250718cc2))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp fc3d51c1-8b35-4da3-a742-0ebe104989d7))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 59fc765e-1357-4c94-9529-5635418c7d73))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 89a8e170-a222-41c0-b545-c9f4c5604011))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 96db52e2-6336-4f5e-846e-528c594d0509))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp f0ff5d1c-5481-4958-b844-4f68a17d4166))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 1dfbf353-5b24-4c0f-8322-8fcd514ae75e))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 337e8520-cbd2-42c0-8d17-743bab17cbbd))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp e0c7ddff-8c90-465f-be62-21fb49b059fa))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp fdc60c06-30fa-4dfb-96b4-809b755999e1))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 319639ae-c2c5-486d-93b1-d03bb1b64252))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 3a70978e-dcc2-4620-a99c-514362812927))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp fc4ad874-c922-4070-89f9-7262080469d8))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 9 "col2") (tstamp 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp f447e585-df78-4239-b8cb-4653b3837bb1))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c2386ec)
(at 98 28.54)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2933")
(attr through_hole)
(fp_text reference "SW5" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6afc19cf-38b4-47a3-bc2b-445b18724310)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe14c012-3d58-4e5e-9a37-4b9765a7f764)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2c60448a-e30f-46b2-89e1-a44f51688efc)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d66d3c12-11ce-4566-9a45-962e329503d8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b1fce17-dec7-457e-ba3b-a77604e77dc9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 869d6302-ae22-478f-9723-3feacbb12eef)
)
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 07d160b6-23e1-4aa0-95cb-440482e6fc15))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 1e48966e-d29d-4521-8939-ec8ac570431d))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp a07b6b2b-7179-4297-b163-5e47ffbe76d3))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp a62609cd-29b7-4918-b97d-7b2404ba61cf))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp d1a9be32-38ba-44e6-bc35-f031541ab1fe))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp d692b5e6-71b2-4fa6-bc83-618add8d8fef))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 901440f4-e2a6-4447-83cc-f58a2b26f5c4))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp d7e5a060-eb57-4238-9312-26bc885fc97d))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 501880c3-8633-456f-9add-0e8fa1932ba6))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 91fe070a-a49b-4bc5-805a-42f23e10d114))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp d01102e9-b170-4eb1-a0a4-9a31feb850b7))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp f9b1563b-384a-447c-9f47-736504e995c8))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 7a879184-fad8-4feb-afb5-86fe8d34f1f7))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp c454102f-dc92-4550-9492-797fc8e6b49c))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp e413cfad-d7bd-41ab-b8dd-4b67484671a6))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 283c990c-ae5a-4e41-a3ad-b40ca29fe90e))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 49575217-40b0-4890-8acf-12982cca52b5))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 8 "col1") (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c238702)
(at 116 30.92)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e295e")
(attr through_hole)
(fp_text reference "SW6" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b686d17-1000-4762-ba31-589d599a3edf)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9286cf02-1563-41d2-9931-c192c33bab31)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9f782c92-a5e8-49db-bfda-752b35522ce4)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ccc4cc25-ac17-45ef-825c-e079951ffb21)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 626679e8-6101-4722-ac57-5b8d9dab4c8b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7bf6e08-7978-4190-aff5-c90d967f0f9c)
)
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 12a24e86-2c38-4685-bba9-fff8dddb4cb0))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp 3e0392c0-affc-4114-9de5-1f1cfe79418a))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 6513181c-0a6a-4560-9a18-17450c36ae2a))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 66218487-e316-4467-9eba-79d4626ab24e))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp cf815d51-c956-4c5a-adde-c373cb025b07))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp dca1d7db-c913-4d73-a2cc-fdc9651eda69))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 0ceb97d6-1b0f-4b71-921e-b0955c30c998))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp da6f4122-0ecc-496f-b0fd-e4abef534976))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 63c56ea4-91a3-4172-b9de-a4388cc8f894))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp 66bc2bca-dab7-4947-a0ff-403cdaf9fb89))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 9b6bb172-1ac4-440a-ac75-c1917d9d59c7))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 35ef9c4a-35f6-467b-a704-b1d9354880cf))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 8b290a17-6328-4178-9131-29524d345539))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp a7f25f41-0b4c-4430-b6cd-b2160b2db099))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp b8b961e9-8a60-45fc-999a-a7a3baff4e0d))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp f357ddb5-3f44-43b0-b00d-d64f5c62ba4a))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 04cf2f2c-74bf-400d-b4f6-201720df00ed))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 1bdd5841-68b7-42e2-9447-cbdb608d8a08))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 955cc99e-a129-42cf-abc7-aa99813fdb5f))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 2878a73c-5447-4cd9-8194-14f52ab9459c))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp c25449d6-d734-4953-b762-98f82a830248))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 53e34696-241f-47e5-a477-f469335c8a61))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 8cdc8ef9-532e-4bf5-9998-7213b9e692a2))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9390234f-bf3f-46cd-b6a0-8a438ec76e9f))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 5 "Net-(D20-Pad2)") (tstamp 88002554-c459-46e5-8b22-6ea6fe07fd4c))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 5a222fb6-5159-4931-9015-19df65643140))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 691af561-538d-4e8f-a916-26cad45eb7d6))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c23872e)
(at 42.4106 55.6994 5)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2d26")
(attr through_hole)
(fp_text reference "SW8" (at 4.6 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)
)
(fp_text value "SW_PUSH" (at -0.5 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd)
)
(fp_text user "${VALUE}" (at 0 8.255 5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 593b8647-0095-46cc-ba23-3cf2a86edb5e)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bde95c06-433a-4c03-bc48-e3abcdb4e054)
)
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 011ee658-718d-416a-85fd-961729cd1ee5))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 72508b1f-1505-46cb-9d37-2081c5a12aca))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 802c2dc3-ca9f-491e-9d66-7893e89ac34c))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp eed466bf-cd88-4860-9abf-41a594ca08bd))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 96de0051-7945-413a-9219-1ab367546962))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783))
(pad "" np_thru_hole circle locked (at 5.5 0 5) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 2035ea48-3ef5-4d7f-8c3c-50981b30c89a))
(pad "" np_thru_hole circle locked (at -5.22 -4.2 5) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 4e27930e-1827-4788-aa6b-487321d46602))
(pad "" np_thru_hole circle locked (at -5.5 0 5) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d))
(pad "" np_thru_hole circle locked (at 0 0 5) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp a5be2cb8-c68d-4180-8412-69a6b4c5b1d4))
(pad "" np_thru_hole circle locked (at 5.22 -4.2 5) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
(pad "1" thru_hole circle locked (at 0 5.9 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 11 "col4") (tstamp 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6))
(pad "2" thru_hole circle locked (at 5 3.8 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b))
(pad "2" thru_hole circle locked (at -5 3.8 5) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c238744)
(at 62 45.54)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2d32")
(attr through_hole)
(fp_text reference "SW9" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 935057d5-6882-4c15-9a35-54677912ba12)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e091e263-c616-48ef-a460-465c70218987)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe)
)
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 45884597-7014-4461-83ee-9975c42b9a53))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 12 "col5") (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c23875a)
(at 80 42.17)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2d3e")
(attr through_hole)
(fp_text reference "SW10" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00e38d63-5436-49db-81f5-697421f168fc)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8fd9dd3-06ad-4146-9239-0065013959ef)
)
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp af347946-e3da-4427-87ab-77b747929f50))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp b6cd701f-4223-4e72-a305-466869ccb250))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 18 "Net-(U1-Pad14)") (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c238770)
(at 98 45.54)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2d44")
(attr through_hole)
(fp_text reference "SW11" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c04386e0-b49e-4fff-b380-675af13a62cb)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f78e02cd-9600-4173-be8d-67e530b5d19f)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 088f77ba-fca9-42b3-876e-a6937267f957)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce)
)
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp b5071759-a4d7-4769-be02-251f23cd4454))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 19 "Net-(U1-Pad13)") (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c238786)
(at 116 47.92)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e2d4a")
(attr through_hole)
(fp_text reference "SW12" (at 4.6 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
)
(fp_text value "SW_PUSH" (at -0.5 6 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
)
(fp_text user "${REFERENCE}" (at 0 -8.255) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131)
)
(fp_text user "${VALUE}" (at 0 8.255) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 109caac1-5036-4f23-9a66-f569d871501b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23)
)
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(fp_line (start -7 7) (end -7 6) (layer "F.SilkS") (width 0.15) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(fp_line (start -7 -7) (end -6 -7) (layer "F.SilkS") (width 0.15) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start -6 7) (end -7 7) (layer "F.SilkS") (width 0.15) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start 7 6) (end 7 7) (layer "F.SilkS") (width 0.15) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(fp_line (start -9 -8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(fp_line (start -9 8.5) (end -9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(fp_line (start -9 8.5) (end 9 8.5) (layer "Eco1.User") (width 0.12) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(fp_line (start 9 8.5) (end 9 -8.5) (layer "Eco1.User") (width 0.12) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer "Eco2.User") (width 0.15) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer "Eco2.User") (width 0.15) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer "Eco2.User") (width 0.15) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer "Eco2.User") (width 0.15) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "B.Fab") (width 0.15) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "B.Fab") (width 0.15) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer "F.Fab") (width 0.15) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer "F.Fab") (width 0.15) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
(pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
(pad "" np_thru_hole circle locked (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp e5203297-b913-4288-a576-12a92185cb52))
(pad "" np_thru_hole circle locked (at -5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(pad "1" thru_hole circle locked (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 13 "LED") (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
(pad "2" thru_hole circle locked (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(pad "2" thru_hole circle locked (at 5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "GND") (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
)
(footprint "chocs:SW_PG1350_reversible_b2" (layer "F.Cu")
(tedit 5EF324D0) (tstamp 00000000-0000-0000-0000-00005c2387b2)
(at 43.8927 72.6397 5)
(descr "Kailh \"Choc\" PG1350 keyswitch, able to be mounted on front or back of PCB")
(tags "kailh,choc")
(path "/00000000-0000-0000-0000-00005a5e35b1")
(attr through_hole)
(fp_text reference "SW14" (at 4.6 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
)
(fp_text value "SW_PUSH" (at -0.5 6 185) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
)
(fp_text user "${VALUE}" (at 0 8.255 5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
)
(fp_text user "${REFERENCE}" (at 0 0 5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb614b23-9af3-4aec-bed8-c1374e001510)
)
(fp_line (start 6 -7) (end 7 -7) (layer "B.SilkS") (width 0.15) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(fp_line (start -7 -7) (end -6 -7) (layer "B.SilkS") (width 0.15) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start 7 6) (end 7 7) (layer "B.SilkS") (width 0.15) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(fp_line (start 7 7) (end 6 7) (layer "B.SilkS") (width 0.15) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(fp_line (start -7 7) (end -7 6) (layer "B.SilkS") (width 0.15) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start 7 -7) (end 7 -6) (layer "B.SilkS") (width 0.15) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(fp_line (start -6 7) (end -7 7) (layer "B.SilkS") (width 0.15) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start -7 -6) (end -7 -7) (layer "B.SilkS") (width 0.15) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start -7 -6) (end -7 -7) (layer "F.SilkS") (width 0.15) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_line (start 6 -7) (end 7 -7) (layer "F.SilkS") (width 0.15) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start 7 -7) (end 7 -6) (layer "F.SilkS") (width 0.15) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start 7 7) (end 6 7) (layer "F.SilkS") (width 0.15) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))