-
Notifications
You must be signed in to change notification settings - Fork 0
/
mxnatee.kicad_pcb
8183 lines (8125 loc) · 868 KB
/
mxnatee.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 20171130) (host pcbnew "(5.1.4-0)")
(general
(thickness 1.6)
(drawings 143)
(tracks 439)
(zones 0)
(modules 50)
(nets 42)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/"))
)
(net 0 "")
(net 1 ROW0)
(net 2 "Net-(D1-Pad2)")
(net 3 "Net-(D2-Pad2)")
(net 4 "Net-(D3-Pad2)")
(net 5 "Net-(D4-Pad2)")
(net 6 "Net-(D5-Pad2)")
(net 7 ROW1)
(net 8 "Net-(D6-Pad2)")
(net 9 "Net-(D7-Pad2)")
(net 10 "Net-(D8-Pad2)")
(net 11 "Net-(D9-Pad2)")
(net 12 "Net-(D10-Pad2)")
(net 13 ROW2)
(net 14 "Net-(D11-Pad2)")
(net 15 "Net-(D12-Pad2)")
(net 16 "Net-(D13-Pad2)")
(net 17 "Net-(D14-Pad2)")
(net 18 "Net-(D15-Pad2)")
(net 19 ROW3)
(net 20 "Net-(D16-Pad2)")
(net 21 "Net-(D17-Pad2)")
(net 22 "Net-(D18-Pad2)")
(net 23 "Net-(D19-Pad2)")
(net 24 GND)
(net 25 RESET)
(net 26 COL0)
(net 27 COL1)
(net 28 COL2)
(net 29 COL3)
(net 30 COL4)
(net 31 DATA1)
(net 32 VCC)
(net 33 DATA2)
(net 34 "Net-(U1-Pad24)")
(net 35 "Net-(U1-Pad14)")
(net 36 "Net-(U1-Pad13)")
(net 37 "Net-(U1-Pad1)")
(net 38 "Net-(U1-Pad2)")
(net 39 ROW4)
(net 40 "Net-(U1-Pad12)")
(net 41 "Net-(U1-Pad9)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net COL0)
(add_net COL1)
(add_net COL2)
(add_net COL3)
(add_net COL4)
(add_net DATA1)
(add_net DATA2)
(add_net GND)
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D10-Pad2)")
(add_net "Net-(D11-Pad2)")
(add_net "Net-(D12-Pad2)")
(add_net "Net-(D13-Pad2)")
(add_net "Net-(D14-Pad2)")
(add_net "Net-(D15-Pad2)")
(add_net "Net-(D16-Pad2)")
(add_net "Net-(D17-Pad2)")
(add_net "Net-(D18-Pad2)")
(add_net "Net-(D19-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(D5-Pad2)")
(add_net "Net-(D6-Pad2)")
(add_net "Net-(D7-Pad2)")
(add_net "Net-(D8-Pad2)")
(add_net "Net-(D9-Pad2)")
(add_net "Net-(U1-Pad1)")
(add_net "Net-(U1-Pad12)")
(add_net "Net-(U1-Pad13)")
(add_net "Net-(U1-Pad14)")
(add_net "Net-(U1-Pad2)")
(add_net "Net-(U1-Pad24)")
(add_net "Net-(U1-Pad9)")
(add_net RESET)
(add_net ROW0)
(add_net ROW1)
(add_net ROW2)
(add_net ROW3)
(add_net ROW4)
(add_net VCC)
)
(module Keybage_MountingHoles:MountingHole_2.2mm_M2_Pad_NoSilk (layer F.Cu) (tedit 5F1091AD) (tstamp 607825E6)
(at 120.234999 56.16575)
(descr "Mounting Hole 2.2mm, M2, No Silk Ref")
(tags "mounting hole 2.2mm m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2_Pad_NoSilk (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask))
)
(module Keybage_MountingHoles:MountingHole_2.2mm_M2_Pad_NoSilk (layer F.Cu) (tedit 5F1091AD) (tstamp 607824DB)
(at 120.234999 94.26575)
(descr "Mounting Hole 2.2mm, M2, No Silk Ref")
(tags "mounting hole 2.2mm m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2_Pad_NoSilk (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 4.4 4.4) (drill 2.2) (layers *.Cu *.Mask))
)
(module Connector_Audio:MJ-4PP-9 (layer F.Cu) (tedit 5FBD3FDF) (tstamp 6077AA00)
(at 144.02 98.51 260)
(path /601F2EB1)
(fp_text reference U2 (at -0.85 4.95 80) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TRRS (at 0 14 80) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user TRRS (at -0.8255 6.4135 80) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.75 12) (end -4.75 0) (layer B.SilkS) (width 0.15))
(fp_line (start 1.25 12) (end -4.75 12) (layer B.SilkS) (width 0.15))
(fp_line (start 1.25 0) (end 1.25 12) (layer B.SilkS) (width 0.15))
(fp_line (start -4.75 0) (end 1.25 0) (layer B.SilkS) (width 0.15))
(fp_line (start -3 0) (end 3 0) (layer F.SilkS) (width 0.15))
(fp_line (start 3 0) (end 3 12) (layer F.SilkS) (width 0.15))
(fp_line (start 3 12) (end -3 12) (layer F.SilkS) (width 0.15))
(fp_line (start -3 12) (end -3 0) (layer F.SilkS) (width 0.15))
(fp_text user TRRS (at -0.75 6.45 80) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at -1.75 8.5 260) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask F.SilkS))
(pad "" np_thru_hole circle (at -1.75 1.5 260) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask F.SilkS))
(pad 2 thru_hole oval (at -3.85 10.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 32 VCC) (clearance 0.15))
(pad 1 thru_hole oval (at 0.35 11.8 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 24 GND) (clearance 0.15))
(pad 4 thru_hole oval (at -3.85 3.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 33 DATA2))
(pad 3 thru_hole oval (at -3.85 6.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 31 DATA1))
(pad "" np_thru_hole circle (at 0 1.5 260) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask F.SilkS))
(pad "" np_thru_hole circle (at 0 8.5 260) (size 1.2 1.2) (drill 1.2) (layers *.Cu *.Mask F.SilkS))
(pad 4 thru_hole oval (at 2.1 3.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 33 DATA2))
(pad 3 thru_hole oval (at 2.1 6.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 31 DATA1))
(pad 2 thru_hole oval (at 2.1 10.3 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 32 VCC) (clearance 0.15))
(pad 1 thru_hole oval (at -2.1 11.8 260) (size 1.7 2.5) (drill oval 1 1.5) (layers *.Cu *.Mask F.SilkS)
(net 24 GND) (clearance 0.15))
(model "../../../../../../Users/pluis/Documents/Magic Briefcase/Documents/KiCad/3d/AB2_TRS_3p5MM_PTH.wrl"
(at (xyz 0 0 0))
(scale (xyz 0.42 0.42 0.42))
(rotate (xyz 0 0 90))
)
)
(module Keybage_Hardware:ArduinoProMicro-Reversible (layer F.Cu) (tedit 601B7972) (tstamp 6077BC29)
(at 130.84 73.91 270)
(path /6018D389)
(fp_text reference U1 (at 0 1.625 90) (layer F.SilkS)
(effects (font (size 1.27 1.524) (thickness 0.2032)))
)
(fp_text value ProMicro (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
)
(fp_text user TX0 (at -12.63 -6.913 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user RAW (at -12.63 2.187 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user TX0 (at -12.63 -7.013 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "Arduino Pro Micro" (at 1.27 -2.413 270) (layer F.SilkS) hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
)
(fp_text user RAW (at -12.63 2.287 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 16.51 -11.303) (end 16.383 8.89) (layer F.SilkS) (width 0.381))
(fp_line (start -15.24 -11.303) (end 16.51 -11.303) (layer F.SilkS) (width 0.381))
(fp_line (start -15.24 8.89) (end 16.383 8.89) (layer F.SilkS) (width 0.381))
(fp_line (start -15.24 -11.303) (end -15.24 8.89) (layer F.SilkS) (width 0.381))
(fp_text user TX0 (at -13.9 4.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user RAW (at -13.9 -4.6) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user RAW (at -13.9 -4.7) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user TX0 (at -13.9 4.6) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 6 thru_hole circle (at 0 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 31 DATA1))
(pad 1 thru_hole rect (at -12.7 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 37 "Net-(U1-Pad1)"))
(pad 14 thru_hole circle (at 12.7 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 35 "Net-(U1-Pad14)"))
(pad 11 thru_hole circle (at 12.7 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 26 COL0))
(pad 5 thru_hole circle (at -2.54 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 33 DATA2))
(pad 13 thru_hole circle (at 15.24 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 36 "Net-(U1-Pad13)"))
(pad 16 thru_hole circle (at 7.62 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 29 COL3))
(pad 17 thru_hole circle (at 5.08 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 27 COL1))
(pad 8 thru_hole circle (at 5.08 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 28 COL2))
(pad 9 thru_hole circle (at 7.62 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 41 "Net-(U1-Pad9)"))
(pad 15 thru_hole circle (at 10.16 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 39 ROW4))
(pad 4 thru_hole circle (at -5.08 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 7 thru_hole circle (at 2.54 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 13 ROW2))
(pad 10 thru_hole circle (at 10.16 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 19 ROW3))
(pad 3 thru_hole circle (at -7.62 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 12 thru_hole circle (at 15.24 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 40 "Net-(U1-Pad12)"))
(pad 24 thru_hole circle (at -12.7 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 34 "Net-(U1-Pad24)"))
(pad 21 thru_hole circle (at -5.08 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 32 VCC))
(pad 22 thru_hole circle (at -7.62 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 25 RESET))
(pad 23 thru_hole circle (at -10.16 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 18 thru_hole circle (at 2.54 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 30 COL4))
(pad 19 thru_hole circle (at 0 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 7 ROW1))
(pad 20 thru_hole circle (at -2.54 5.207 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 1 ROW0))
(pad 2 thru_hole circle (at -10.16 -10.033 90) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 38 "Net-(U1-Pad2)"))
(pad 24 thru_hole circle (at -13.97 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 34 "Net-(U1-Pad24)"))
(pad 12 thru_hole circle (at 13.97 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 40 "Net-(U1-Pad12)"))
(pad 23 thru_hole circle (at -11.43 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 22 thru_hole circle (at -8.89 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 25 RESET))
(pad 21 thru_hole circle (at -6.35 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 32 VCC))
(pad 20 thru_hole circle (at -3.81 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 1 ROW0))
(pad 19 thru_hole circle (at -1.27 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 7 ROW1))
(pad 18 thru_hole circle (at 1.27 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 30 COL4))
(pad 17 thru_hole circle (at 3.81 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 27 COL1))
(pad 16 thru_hole circle (at 6.35 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 29 COL3))
(pad 15 thru_hole circle (at 8.89 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 39 ROW4))
(pad 14 thru_hole circle (at 11.43 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 35 "Net-(U1-Pad14)"))
(pad 13 thru_hole circle (at 13.97 -7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 36 "Net-(U1-Pad13)"))
(pad 11 thru_hole circle (at 11.43 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 26 COL0))
(pad 10 thru_hole circle (at 8.89 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 19 ROW3))
(pad 9 thru_hole circle (at 6.35 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 41 "Net-(U1-Pad9)"))
(pad 8 thru_hole circle (at 3.81 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 28 COL2))
(pad 7 thru_hole circle (at 1.27 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 13 ROW2))
(pad 6 thru_hole circle (at -1.27 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 31 DATA1))
(pad 5 thru_hole circle (at -3.81 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 33 DATA2))
(pad 4 thru_hole circle (at -6.35 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 3 thru_hole circle (at -8.89 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 24 GND))
(pad 2 thru_hole circle (at -11.43 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 38 "Net-(U1-Pad2)"))
(pad 1 thru_hole rect (at -13.97 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
(net 37 "Net-(U1-Pad1)"))
(model /Users/danny/Documents/proj/custom-keyboard/kicad-libs/3d_models/Pro_Micro.wrl
(offset (xyz 15.23999977111816 -8.889999866485596 1.269999980926514))
(scale (xyz 0.395 0.395 0.395))
(rotate (xyz 0 0 270))
)
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE5BB)
(at 127.9525 120.3325 90)
(path /6029D666)
(attr smd)
(fp_text reference D19 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 39 ROW4))
(pad 2 thru_hole rect (at 1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 23 "Net-(D19-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE5A2)
(at 112.9665 119.1895 180)
(path /6029AC7F)
(attr smd)
(fp_text reference D18 (at 0 -1.925) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 180) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 39 ROW4))
(pad 2 thru_hole rect (at 1.7 0 180) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 22 "Net-(D18-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE589)
(at 112.9665 121.7295 180)
(path /602986D1)
(attr smd)
(fp_text reference D17 (at 0 -1.925) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 180) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 39 ROW4))
(pad 2 thru_hole rect (at 1.7 0 180) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 21 "Net-(D17-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE570)
(at 120.8405 123.6345 270)
(path /602958FD)
(attr smd)
(fp_text reference D16 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 39 ROW4))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 20 "Net-(D16-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE557)
(at 124.9045 123.6345 270)
(path /60274353)
(attr smd)
(fp_text reference D15 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 39 ROW4))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 18 "Net-(D15-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE53E)
(at 111.9505 88.9635 270)
(path /6026DBBC)
(attr smd)
(fp_text reference D14 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 19 ROW3))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 17 "Net-(D14-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE525)
(at 92.9005 88.9645 270)
(path /6026BE04)
(attr smd)
(fp_text reference D13 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 19 ROW3))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 16 "Net-(D13-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE50C)
(at 70.2945 90.6145 90)
(path /6026A101)
(attr smd)
(fp_text reference D12 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 19 ROW3))
(pad 2 thru_hole rect (at 1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 15 "Net-(D12-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE4F3)
(at 35.6235 90.6145 90)
(path /60261E4A)
(attr smd)
(fp_text reference D11 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 19 ROW3))
(pad 2 thru_hole rect (at 1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 14 "Net-(D11-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE4DA)
(at 110.9345 69.7865 270)
(path /6025FB39)
(attr smd)
(fp_text reference D10 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 13 ROW2))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 12 "Net-(D10-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE4C1)
(at 92.9005 70.0405 270)
(path /6025DBDB)
(attr smd)
(fp_text reference D9 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 13 ROW2))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "Net-(D9-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE4A8)
(at 73.7235 66.7385 90)
(path /6025BD85)
(attr smd)
(fp_text reference D8 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 13 ROW2))
(pad 2 thru_hole rect (at 1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "Net-(D8-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE48F)
(at 54.61 72.16775 270)
(path /6025A25B)
(attr smd)
(fp_text reference D7 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 13 ROW2))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 9 "Net-(D7-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE476)
(at 110.96625 50.7365 270)
(path /6024A257)
(attr smd)
(fp_text reference D6 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 7 ROW1))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 8 "Net-(D6-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE45D)
(at 92.71 50.7365 270)
(path /60248C5B)
(attr smd)
(fp_text reference D5 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 7 ROW1))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 6 "Net-(D5-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE444)
(at 73.66 47.5615 90)
(path /602477CE)
(attr smd)
(fp_text reference D4 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 7 ROW1))
(pad 2 thru_hole rect (at 1.7 0 90) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 5 "Net-(D4-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE412)
(at 91.1225 30.099 270)
(path /6023EA9C)
(attr smd)
(fp_text reference D2 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 thru_hole rect (at -1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 1 ROW0))
(pad 2 thru_hole rect (at 1.7 0 270) (size 1.2 1.4) (drill 0.4) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad2)"))
)
(module s8erdude-keyboard-parts:D_SOD123_thruhole (layer B.Cu) (tedit 5F9D6BFB) (tstamp 601CE3F9)
(at 73.66 26.924 90)
(path /6023DA35)
(attr smd)
(fp_text reference D1 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D_Small (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text user VAL** (at 0 1.93 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.085 1.2) (end -3.085 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.81 -1.2) (end -2.81 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 -1.2) (end 2.79 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -2.935 -1.2) (end -2.935 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 1.2) (end -3.21 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.21 1.2) (end -3.21 -1.2) (layer F.SilkS) (width 0.2))
(fp_line (start 2.79 -1.2) (end 2.79 1.2) (layer F.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))