-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMicroKeypad.kicad_pcb
8203 lines (8176 loc) · 334 KB
/
ProMicroKeypad.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 20210424) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00330ff_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer false)
(plotframeref true)
(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 true)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/LedC1")
(net 2 "Net-(R1-Pad2)")
(net 3 "/LedC2")
(net 4 "Net-(R2-Pad2)")
(net 5 "/LedC3")
(net 6 "Net-(R3-Pad2)")
(net 7 "Net-(R4-Pad2)")
(net 8 "Net-(R5-Pad2)")
(net 9 "Net-(R6-Pad2)")
(net 10 "Net-(R7-Pad2)")
(net 11 "Net-(R8-Pad2)")
(net 12 "Net-(R9-Pad2)")
(net 13 "/EncSw")
(net 14 "GND")
(net 15 "/EncB")
(net 16 "/EncA")
(net 17 "/SwC1")
(net 18 "/SwR1")
(net 19 "/LedR1")
(net 20 "/SwC2")
(net 21 "/SwC3")
(net 22 "/SwR2")
(net 23 "/LedR2")
(net 24 "/SwR3")
(net 25 "/LedR3")
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp 103059ec-159a-4a16-a953-d57e0098702d)
(at 141.5 71.5)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/96d4d289-dd94-45ee-bb23-40240f29137b")
(attr through_hole)
(fp_text reference "U4" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6aa3d52f-399b-482f-b0bf-0a84bcf5816e)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b81c2622-d949-4573-936d-b188a21ce2b9)
)
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 18f4f8ba-56d9-49d3-96c9-6c1b2e505cf0))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp 67b448f7-0780-46fc-93a7-876ab086a3ec))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp 7ce33e95-8d0e-4c5f-aa58-462592336912))
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp b74c595d-8c31-4a34-affe-2b44cad0618a))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 0f229cc9-89b2-43e7-8c25-5b93c6e3d81c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 3fa28d68-78c0-489c-8bd1-871897453207))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 8bbc6d0f-3917-4cf3-8c88-5ed0c08918f2))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp b1c4e71a-92ae-46d1-83f8-3d2b25c1eacd))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 08b5ed5f-b220-4a41-886c-661bdbf95ded))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 341e9af3-c667-4ab7-aacb-27ad588793d3))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp c45414b8-eb6a-4390-9276-5a599b9f0469))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp cd366875-26ae-48fc-b98b-707f1e7efd13))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 101a5733-163b-4b4c-bd08-8470285789d0))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 32c4dabd-983d-43d7-b355-6929aedd9a48))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 5023ab25-45a8-4eee-b94a-f29865bc17b8))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 17 "/SwC1") (pintype "passive") (tstamp 9e8b7ee1-6516-4c10-a197-844842898333))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 22 "/SwR2") (pintype "passive") (tstamp 6a6c78c6-f5d3-4a22-9b53-79ffa420008b))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 7 "Net-(R4-Pad2)") (pinfunction "K") (pintype "passive") (tstamp b97d5b2c-fdc5-4026-9c75-cad25a6144e2))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 23 "/LedR2") (pinfunction "A") (pintype "passive") (tstamp a1bca540-b282-442d-9c31-5f487e56268c))
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp 16b555f4-cfb2-4474-bae7-6d5dcb31dba1)
(at 161.5 92)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/440972dd-4f00-4f04-8166-5aac20e77b16")
(attr through_hole)
(fp_text reference "U2" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14877b50-178c-4236-ab8f-aa4c851e472c)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ae17e4d-d179-4ed4-a2f7-327f72ad6d9f)
)
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 201dfdac-441a-40e2-b776-1ceb6f67b23e))
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 32ccd749-98a7-46e2-956c-7b4fbcbf0037))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp 8405010b-0374-4dec-bfb2-ab2692e8f3ce))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp ed1178bb-fe3b-4030-aec1-e37b343d6ffc))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 53c3d417-dcbd-4f9b-bf4d-0fe397b8ebf4))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 646c3209-94da-4be0-acf0-bc526a71b9eb))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp f68922b4-4ce5-4f3f-8586-3ccdc12a8f1f))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp fc16026a-1457-4e67-a3ef-c2bbca289026))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 09a5e021-1f62-41aa-8453-af160ee44659))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 3e75ba1f-d8f5-49dc-bcb1-87e20b68244e))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 46304ded-e125-4ef0-b135-d14ab289f916))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp c6b4523a-bd3c-4a8d-bb31-cc6ef03e53d0))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 1e5321ce-dde2-41a4-9d3b-54b4e4bdfd20))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 389d187e-3fdf-42e3-8578-06bf26412f4e))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp a62bf95b-4613-410d-9a71-b15059f1d293))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 20 "/SwC2") (pintype "passive") (tstamp 428f5760-b0f0-4b7f-8f9f-abf2a26c3b72))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 18 "/SwR1") (pintype "passive") (tstamp 5e9ffb49-25e9-49d1-b8e0-5bb4af335658))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 4 "Net-(R2-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 456709b4-1835-46c3-96ce-cda0e159f1ac))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 19 "/LedR1") (pinfunction "A") (pintype "passive") (tstamp e5d75255-8929-488d-8d1e-ae7bb01970d4))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1f2ace2b-7330-4aff-b776-5b31e19cf4ef)
(at 163.55 47)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/89c14a73-a277-4c29-b9f5-7b4a99fbdd12")
(attr smd)
(fp_text reference "R8" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b2e7de9-1859-4e2d-b5a3-f8a81ba941b9)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7edd0594-26fe-4c4f-9567-43d167373407)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1a62c8fd-1e8f-45ec-ac93-331d1b3182d2)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp b4b8b565-1c42-425f-a2a8-7b0c53f26bc8))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp e1deb366-19c8-4ba3-b474-20c3c2a7474d))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5a9dd1d9-6ef0-4148-8c4b-a93a913b98be))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 93f26734-f7cb-4088-8e53-84dca2ccee92))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp abc32705-062d-4eee-b312-f6e0535729cd))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c2921d84-1351-4003-a7ad-649da2202a59))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0528207f-262f-4c36-a8f0-7d4cac123c84))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 471da804-e68b-449f-bae9-d871deb55960))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 5092b31b-12a5-41f7-8061-f74d2afb8208))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp b5d99085-f599-4e79-9c7a-efc142b0c4c8))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 3 "/LedC2") (pintype "passive") (tstamp d24c20e1-dc7d-40a2-b591-47b3d1260207))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 11 "Net-(R8-Pad2)") (pintype "passive") (tstamp b76ee341-6988-47f6-8de2-0bbc728c95c6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp 30905005-61a2-4886-99f9-897e9bda3ec5)
(at 181.5 92)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/dd93ea7c-16ba-48b3-8bbd-e26fe9855cd0")
(attr through_hole)
(fp_text reference "U3" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a01c07f9-a85c-48c0-b62f-7391d9ea26a9)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9c0c5f1-d10d-4bce-adfb-0cf1696d6af5)
)
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 0dc23bb4-0130-4266-bcf8-b2ff83e30223))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp 2a376f4c-c127-440b-93cd-732087ecebce))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp a3721332-f720-4a81-b665-d7adf7505e9d))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp ce14544b-8c2e-4efc-b736-e8fffe91d3ec))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 1ef19fa3-c6df-49f3-b7a5-b8b222a7fa5a))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 4166be9d-6ea8-4346-a830-6f920b7d5f8a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 7889b3ba-8324-48bf-89af-8639ad346d9d))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9d7cdc65-cb62-4495-bcdd-7eb846b4462a))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 33ea4b23-c34b-42ff-8a31-942af7baad36))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 812b1a77-8f84-4db9-aa64-eef50a168f24))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp c327ae4a-da3c-4eec-a802-ebb8409c205b))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp c765559c-6b4c-48ba-ac33-7f8e260e1cca))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 4d9cd901-3168-4c61-a71b-28493869e9b1))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 95628021-8e95-4b9a-a213-c61229c1703e))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp fe9d85f6-66b4-4e3b-8f4c-3a52c7a9f19d))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 21 "/SwC3") (pintype "passive") (tstamp 73400579-cb87-4c51-9359-28c4980bff71))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 18 "/SwR1") (pintype "passive") (tstamp 57c0289a-5653-4953-815e-06de46cbd02c))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 6 "Net-(R3-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 97d8eee2-2035-4902-ba2e-6798995d72b8))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 19 "/LedR1") (pinfunction "A") (pintype "passive") (tstamp fac27567-d60b-47d4-9e0e-65b527633c3e))
)
(footprint "promicro:ProMicro" (layer "F.Cu")
(tedit 5A06A962) (tstamp 5d185367-fbd2-4991-b976-767d95e8011a)
(at 138.5 49)
(descr "Pro Micro footprint")
(tags "promicro ProMicro")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/5c21ea68-bbc5-40d3-8b92-7e076036556f")
(attr through_hole)
(fp_text reference "U10" (at 0 -10.16) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b24d131c-a27c-49f5-9ba7-c7b0e1c36341)
)
(fp_text value "ProMicro" (at 0 10.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 861fd0d7-2b55-48f5-822c-836949d2de3d)
)
(fp_line (start 15.24 -8.89) (end 15.24 8.89) (layer "B.SilkS") (width 0.15) (tstamp 003bf642-08f0-4052-8c2f-088f013bab52))
(fp_line (start -17.78 -3.81) (end -15.24 -3.81) (layer "B.SilkS") (width 0.15) (tstamp 1bea15a6-46fb-429d-a605-e2e413bd5839))
(fp_line (start -15.24 3.81) (end -17.78 3.81) (layer "B.SilkS") (width 0.15) (tstamp 81bc75fa-f0a7-4dcf-8478-59cb17b68a52))
(fp_line (start -17.78 3.81) (end -17.78 -3.81) (layer "B.SilkS") (width 0.15) (tstamp 86f0c29d-fada-4996-b583-952fcc8a3a18))
(fp_line (start 15.24 8.89) (end -15.24 8.89) (layer "B.SilkS") (width 0.15) (tstamp 8c9a6178-c946-465d-8c1a-49cc1285843a))
(fp_line (start -15.24 8.89) (end -15.24 3.81) (layer "B.SilkS") (width 0.15) (tstamp 9209366a-71ee-4d0f-9314-1c0df40b4906))
(fp_line (start -15.24 -8.89) (end 15.24 -8.89) (layer "B.SilkS") (width 0.15) (tstamp a6bb73b0-903b-4293-8de6-dd943a44f9e2))
(fp_line (start -15.24 -3.81) (end -15.24 -8.89) (layer "B.SilkS") (width 0.15) (tstamp c569a816-e219-42a2-9feb-b0b39b617813))
(fp_line (start 15.24 -8.89) (end 15.24 8.89) (layer "F.SilkS") (width 0.15) (tstamp 1159c8c7-6caf-4020-ad69-5103bcbe3996))
(fp_line (start -15.24 8.89) (end -15.24 3.81) (layer "F.SilkS") (width 0.15) (tstamp 2c2830ee-7401-48d1-9764-4ae521d88d53))
(fp_line (start -15.24 -8.89) (end 15.24 -8.89) (layer "F.SilkS") (width 0.15) (tstamp 3561bff6-43eb-4b38-9150-6b9e8ef45aa9))
(fp_line (start -17.78 3.81) (end -17.78 -3.81) (layer "F.SilkS") (width 0.15) (tstamp 52d3596a-27b4-4764-8d29-0390d848f1a0))
(fp_line (start -17.78 -3.81) (end -15.24 -3.81) (layer "F.SilkS") (width 0.15) (tstamp 91219395-cb8e-41d8-91ff-44f49b7e8f7c))
(fp_line (start -15.24 8.89) (end 15.24 8.89) (layer "F.SilkS") (width 0.15) (tstamp 91734b57-95e6-4296-9de5-86d258646da0))
(fp_line (start -15.24 -3.81) (end -15.24 -8.89) (layer "F.SilkS") (width 0.15) (tstamp 97313953-aa9e-4078-bd3a-b8d6c4396101))
(fp_line (start -15.24 3.81) (end -17.78 3.81) (layer "F.SilkS") (width 0.15) (tstamp c1cfa204-31ec-4490-a74b-f0860736a507))
(pad "1" thru_hole rect locked (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "TX") (pintype "bidirectional+no_connect") (tstamp 1dac11f0-ce3d-4fba-814c-0ef5839a45da))
(pad "2" thru_hole circle locked (at -11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "RX") (pintype "bidirectional+no_connect") (tstamp 4e2bbd48-349b-45b1-99db-e6f56b3028a7))
(pad "3" thru_hole circle locked (at -8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 14 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 22643410-21d5-4f5f-a37d-f31577ba8d04))
(pad "4" thru_hole circle locked (at -6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "GND") (pintype "power_in+no_connect") (tstamp a99d0f94-4ad6-49f3-be8e-6769748327bc))
(pad "5" thru_hole circle locked (at -3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 18 "/SwR1") (pinfunction "SCL") (pintype "bidirectional") (tstamp dae7b216-2a9c-45a6-8fdb-eb38f2f3b9c5))
(pad "6" thru_hole circle locked (at -1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 22 "/SwR2") (pinfunction "SDA") (pintype "bidirectional") (tstamp 10682981-1362-45fe-8bb2-0670282b0c1b))
(pad "7" thru_hole circle locked (at 1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 24 "/SwR3") (pinfunction "D4") (pintype "bidirectional") (tstamp 20d8d9e6-9d82-4550-a365-8a0b99a1f965))
(pad "8" thru_hole circle locked (at 3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 17 "/SwC1") (pinfunction "C6") (pintype "bidirectional") (tstamp baa3c9d6-67c0-476c-8d22-620b3ddf90d2))
(pad "9" thru_hole circle locked (at 6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 20 "/SwC2") (pinfunction "D7") (pintype "bidirectional") (tstamp 62324730-d4ca-4606-ab33-1e8a37696447))
(pad "10" thru_hole circle locked (at 8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 21 "/SwC3") (pinfunction "E6") (pintype "bidirectional") (tstamp cdba32e2-e949-4e12-b288-e55488f09f9f))
(pad "11" thru_hole circle locked (at 11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 19 "/LedR1") (pinfunction "B4") (pintype "bidirectional") (tstamp ec64e3ea-13d3-404d-a328-dfe1c5eda533))
(pad "12" thru_hole circle locked (at 13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 23 "/LedR2") (pinfunction "B5") (pintype "bidirectional") (tstamp e244298e-9323-4d4c-b91f-19cb93fdcdc9))
(pad "13" thru_hole circle locked (at 13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 25 "/LedR3") (pinfunction "B6") (pintype "bidirectional") (tstamp 044d6983-ff4c-491e-abce-05042a904971))
(pad "14" thru_hole circle locked (at 11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 1 "/LedC1") (pinfunction "B2") (pintype "bidirectional") (tstamp d43c1688-f93b-42d8-9090-53f61ef2d20a))
(pad "15" thru_hole circle locked (at 8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 3 "/LedC2") (pinfunction "B3") (pintype "bidirectional") (tstamp e055f8f0-419b-4b03-8a4f-2044c112f17b))
(pad "16" thru_hole circle locked (at 6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 5 "/LedC3") (pinfunction "B1") (pintype "bidirectional") (tstamp 6232f352-ca31-4358-b963-497cf9145b50))
(pad "17" thru_hole circle locked (at 3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 13 "/EncSw") (pinfunction "F7") (pintype "bidirectional") (tstamp 7790e52e-bce1-48a5-b2c2-20356d05c33e))
(pad "18" thru_hole circle locked (at 1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 16 "/EncA") (pinfunction "F6") (pintype "bidirectional") (tstamp ea983688-049b-4af0-bb11-753375d8b589))
(pad "19" thru_hole circle locked (at -1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(net 15 "/EncB") (pinfunction "F5") (pintype "bidirectional") (tstamp ae15a0e9-4e8e-482f-b9cb-21dbd62d5dcd))
(pad "20" thru_hole circle locked (at -3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "F4") (pintype "bidirectional+no_connect") (tstamp c61b5984-aba9-4d2f-970b-09aecf7f60d8))
(pad "21" thru_hole circle locked (at -6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "VCC") (pintype "power_in+no_connect") (tstamp fa6868e8-d6c3-4d0d-b6c9-cb649adcc8ca))
(pad "22" thru_hole circle locked (at -8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "RST") (pintype "input+no_connect") (tstamp c41973fb-184c-4d04-ab05-03b80503438c))
(pad "23" thru_hole circle locked (at -11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "GND") (pintype "power_in+no_connect") (tstamp ce13261e-3193-44ce-b01e-24aaf9b5554a))
(pad "24" thru_hole circle locked (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask "F.SilkS")
(pinfunction "RAW") (pintype "power_out+no_connect") (tstamp 5902f64c-4241-41fd-9b24-8c20afad26c6))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 6e381219-cd16-4848-8bd7-2a3cc4a82bd9)
(at 126.95 91.5)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/351b70ed-c13b-46a8-8941-3ab562c275d4")
(attr smd)
(fp_text reference "R1" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 756d1fb9-04b8-463e-b91b-8fce0f78b3f2)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89b6fabd-d99c-4c51-8af4-9552325ae540)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6ab7386b-5080-4fb6-a2ea-c2b18a69c891)
)
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp a01a424e-db80-48da-91b0-c8caa5e404e9))
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp d47e3548-3764-4cf6-9570-d1e6698cda2a))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 4907e92e-26a1-4eab-b0e2-b80a144e6699))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 554470cf-ee4b-44f7-80c2-80a482cf4cea))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 932e8b4f-c48d-40c4-be9e-5c1327ed70ca))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp d41c3f47-0309-48a0-a0d7-9c23083ecc4d))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 08f051e4-cf20-49f3-84f6-ecde96bebddc))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 7f115633-72bd-44f5-804c-2556736b5422))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 90cea6e0-8ab9-449a-b9d9-14021a27f1c2))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp ed21dbb1-27c2-440d-87ee-873bb77ee390))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/LedC1") (pintype "passive") (tstamp 4e2e1af2-befe-4435-996c-51a66fd55fb0))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 2 "Net-(R1-Pad2)") (pintype "passive") (tstamp 68de44d8-0bc4-4709-a9e4-466dd1b971cf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 7273dfac-0421-4bd6-b3de-a10f2f1cbf81)
(at 126.95 65.5)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/0971de84-0630-4777-a19a-6ea79ad7a11a")
(attr smd)
(fp_text reference "R5" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9185ecc-35e6-46e6-b8a4-87382679c260)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fd6f1b2-005d-4c71-9fad-470d1a1ca501)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 54d67c68-df09-4a3c-9b83-93bc77a4d067)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 431dbdae-4113-49ae-bee7-07c4e5ee204c))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 888bdd64-3a2a-4fce-b5d0-97df0ba37737))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 21b13fae-ba2e-4e4f-b8a2-b000e3387382))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 791f37fa-3f31-439c-be91-10a831107d55))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp ba355312-441e-4eed-a0e9-2a3286755115))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c6bd7910-0d15-460d-9bec-0fb233b083ab))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3b906efe-ad10-49d9-8796-624a76f26982))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 880e6185-38e9-4271-b72f-19ee0002571b))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp ce3c7b27-1258-4580-bf50-88c87de854ef))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d7a0a111-544d-4341-8fce-12009f90be54))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 3 "/LedC2") (pintype "passive") (tstamp 5ce6cbb4-4437-4e98-a48f-d4fba26fac5f))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 8 "Net-(R5-Pad2)") (pintype "passive") (tstamp ada6be54-e568-4beb-9077-10f19dacd217))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 808067c2-532b-4249-a2d4-7ba8f361304a)
(at 163.5 41.5)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/59a8b4c5-b3da-4a62-bfdc-cc6ce6358f61")
(attr smd)
(fp_text reference "R9" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd17aed4-9376-4e97-a3a9-60542e7529e9)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a513b49c-ae36-49e5-980e-9a1fac2a08d8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 7fd106e9-bd7d-4603-9872-28f5368a53da)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 290a25f2-a97f-486d-a175-c929cf8e4c8a))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 662680df-2438-49e0-991b-bec14fcddee9))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 01ddf27f-962e-427e-a2f2-aa38ae0d8559))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 32342394-b6c7-44cb-b13b-1b5d30ada18b))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp ae28ce92-b434-490f-96a2-34382ed01266))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp d61c9936-b6cd-49b8-b6c4-3c2fdb53e0d2))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 20741b6b-ef77-4a59-ac6b-a728a8b6bf97))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp c768a781-84a4-41a6-80f7-fde8e80a7331))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d1144eea-a114-49dd-843c-502deb85e493))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp d2d2407f-7899-4f31-8067-7c07c95c7f28))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 5 "/LedC3") (pintype "passive") (tstamp 501429e9-54a3-43d3-99f0-43f2e37a49f9))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 12 "Net-(R9-Pad2)") (pintype "passive") (tstamp 3bf063f7-b704-48bd-90c2-deba105cb63b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp 899b6354-38da-4a0e-aac5-025dbf544cbb)
(at 141.5 92)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/960674e8-41b4-4b73-900b-bc27e0d0b667")
(attr through_hole)
(fp_text reference "U1" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51324343-72f7-4854-8965-5553f98331d0)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0418d60f-ac7b-4cba-b186-28f7d21dabf4)
)
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 24bde329-dcfd-4fac-bdcb-b62a33bdcaa8))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp 28b63055-42f0-4884-83e5-f984e3d1943c))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 845bd136-aa6c-4d1b-ad63-d7166a973bfa))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp d41d3e2f-d962-41ec-a799-0e25b5f47f55))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 3b507509-1bb5-4706-b3d6-6f7c9178d00d))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9fa1d17a-142c-4b71-b1bc-6e2c8fc600a4))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9fbb382f-75ce-4539-9f53-2fa3cdd0d169))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp f5399d9c-c06d-49f5-b18f-30bade42540c))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 05ce30be-0419-4d54-b3d6-c5adaf84a170))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 2a997210-9dd5-4030-8514-ae964c7769cd))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 4744c5f3-73a9-4a44-ba45-bc89b0f049e1))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 5118e6f9-2b29-4b30-b911-b1acc2bf02b4))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 8ed65698-c065-4b10-86f5-df5779444e21))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp b465aac8-3a63-49d5-8896-9284d6bc43e1))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cdaf3711-0fe5-4abb-a2f7-8c21ccfdb0ed))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 17 "/SwC1") (pintype "passive") (tstamp 6007a173-0f06-4682-8fcf-ed5cf9380e00))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 18 "/SwR1") (pintype "passive") (tstamp 965fad5f-dabe-4ddf-b62a-37324a6922a9))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 2 "Net-(R1-Pad2)") (pinfunction "K") (pintype "passive") (tstamp aaadc4a8-14c4-4009-ad22-4c816c95bc9c))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 19 "/LedR1") (pinfunction "A") (pintype "passive") (tstamp 29d51271-06b2-4999-afaa-a860044d94b6))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 8fb71023-bc22-47d5-9f4b-b5f73691fcf8)
(at 163.5 52.5)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/979c3d9a-74c0-46f2-9389-40004f617709")
(attr smd)
(fp_text reference "R7" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c98ad23-64f2-4a9c-bb05-47b09d5f842c)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3ea3f89-181d-444a-8cb2-10b66ffe5959)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9e1985f1-9b79-4961-a7be-b1f99c3cb01f)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 2ad22c06-c392-4935-b729-5588a551bfc5))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 629a193d-9867-4dbb-b4c9-b7c3fa13e2a8))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2c6b6e49-c9a4-4922-a6d1-2389bcc824d9))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5aa7fade-7aad-48fd-8f7f-c7320a82508b))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 743b0841-43e4-4379-b587-616e00806a32))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c8d54a99-1547-415c-989e-d9bce1633fc4))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 40d63d03-2886-4a29-be5f-88077a8a2891))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 62a81396-43ec-4050-a705-26d6b8c38331))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b7ae10c9-b348-47bc-bc8e-8a1b21b0dfed))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp da3ed6be-94e3-4c68-ac16-c0076426985b))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/LedC1") (pintype "passive") (tstamp 8242b299-fdd4-498a-9bb5-732c709e0615))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 10 "Net-(R7-Pad2)") (pintype "passive") (tstamp 3460a7f4-ad72-40a7-aeed-5d92dbfbb719))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp a844fca1-3aa9-465a-a454-1464d4cc7c4f)
(at 161.5 71.5)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/16e39a47-9fb2-4b3f-8c92-709bafb71261")
(attr through_hole)
(fp_text reference "U5" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 348fe583-8538-4089-942b-33e43709a076)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69f4de55-e75a-4edd-8f54-23b4604b202e)
)
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp 191951e7-edcb-43f3-bd2d-359b91fbb603))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 48c1777d-946c-4f63-9c06-285572912c1b))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp e526fe46-533d-402d-893c-b1dafcf1f20e))
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp e7e5f5ef-c076-412c-a37b-08581a86deec))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 3b56c9ab-723f-434a-ba79-a3edc572f2bd))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 7a165a39-f447-46df-80f6-fe71d584a5fc))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 7bd8424a-523e-464e-aac4-9a347bd3676c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9b1304ac-054e-4a01-ab1c-377fb5b49ec8))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 261ef722-0ff0-4a35-aa5d-5b3f0f608e1d))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 3eb5f0aa-da6f-41c2-b0a2-404ddbfa7b5f))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp bcca1eb8-c68c-4f29-8597-7517d72f37e4))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp f99cdc73-704b-429e-b21e-b0c93a4adfd8))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 33c0b479-d697-44aa-bc51-6fc647ccb7ca))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 4af777d8-7f27-447c-a618-1bdb0e5bf364))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cac7e8f6-4f4b-4f8b-9ff4-4bbdc6e8ceb6))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 20 "/SwC2") (pintype "passive") (tstamp cf1978d5-e5a5-449b-8930-7895a21f2d1e))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 22 "/SwR2") (pintype "passive") (tstamp c35cd898-350a-4d4e-9fa6-c472ba8ac21a))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 8 "Net-(R5-Pad2)") (pinfunction "K") (pintype "passive") (tstamp aa2adfcd-c82e-4540-9675-4529512ca0ab))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 23 "/LedR2") (pinfunction "A") (pintype "passive") (tstamp 5cc292c8-1ab2-4219-a5ae-9226500cc30e))
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp ade1aa65-1b9a-4b6a-9d6b-f5ed516a5e7a)
(at 202.5 71.5)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/7e733368-775f-4d9b-a5e5-11c7e3005f96")
(attr through_hole)
(fp_text reference "U8" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7b3d57c-6c9e-4710-ae1d-6362a697abac)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3e9455b-e2ca-44a9-83ac-888ae1421947)
)
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp 267f4cd5-1871-478c-a6ba-9124e5fe8356))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 557ff6e7-54d6-4ebb-b122-b4773d077d2d))
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 69160f0a-1d42-4a73-b970-8d3e4de01f0a))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp 94230897-79cf-4ee3-9614-24b2019e243a))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 2d17dced-39a6-4d4c-bbc6-b3fddccad81a))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 4b50c0c5-0803-4dac-84eb-b6026549d210))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 69c7eb4d-f604-4020-a063-471dc621ab1d))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 72199b46-ad73-48ef-b9df-6d2e787f44c0))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 336dfda6-de23-4f9b-a2fa-26d42dce1376))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 40dfe002-80dc-468e-a40d-d57ea5336859))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp aabc4fbe-47c6-4c72-ac0c-770a557a7f91))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp de16ab3e-6030-46be-bfef-7e93c2adaab4))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 8639d270-e4a8-4929-816a-4cb1a2179eae))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp ad80f9d8-a84b-4c4f-80e9-b266f0b6a3be))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp bed0f848-d5b9-4662-bf64-03fc0a9b028a))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 20 "/SwC2") (pintype "passive") (tstamp 416fb758-827b-4500-84c1-7da817661744))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 24 "/SwR3") (pintype "passive") (tstamp 53f86a2b-5e91-4382-abad-8f4983850388))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 11 "Net-(R8-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 556869a3-5570-43fc-ade7-1a04b114ac58))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 25 "/LedR3") (pinfunction "A") (pintype "passive") (tstamp 85b922da-9965-4f1c-b0d6-1ce716bae7f0))
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp af1ca18f-b664-4e9d-9e30-9418ad4b128b)
(at 202.5 92)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/41d139fc-5ac0-40a5-a521-ca204781898b")
(attr through_hole)
(fp_text reference "U9" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baf75569-ae41-4878-94e6-599c2255fee1)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3b972f6-9b5c-4caa-9c84-53405a803637)
)
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 44c4de2b-55e0-4deb-9525-b495d59fa8db))
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 47d265e2-f659-4b8a-b582-736a9b01a923))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp 548e4bf8-aa06-4362-be88-0bcc5ce941cd))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp 73719ffd-b496-4f7f-b9a3-bfb73649aa63))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 41c6f507-c50b-4184-8c18-cc37d85b4f66))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 6425fc5b-d037-4469-a987-d637577ed02b))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp fb1bb2a0-f97f-418a-bd58-3e3209614c0a))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp fcbf47f7-267a-4fa3-8db8-bbe005197a9d))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 235b39e1-1d51-42ad-a1d1-172eca099f83))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp db88daa8-d575-4e36-ad7f-3d9b93380f5e))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp df0d48d7-a5c7-48cd-b7af-c1f68280b3ee))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp f1fdccce-aebc-4b71-a415-5400791c57c9))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 0333952e-4773-459a-83b7-651fe7a4272a))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 76fd8a87-98a7-40c8-a7a8-4766a902ba82))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 9a205b83-abbf-48a6-98d1-25b1258b7ecf))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 21 "/SwC3") (pintype "passive") (tstamp 105d0b70-ac99-4af2-93a5-d8957a638000))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 24 "/SwR3") (pintype "passive") (tstamp 3cc5a4ff-2101-436f-97f9-cf018d034435))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 12 "Net-(R9-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 9609f37a-1f12-4634-9608-fd7a30517abf))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 25 "/LedR3") (pinfunction "A") (pintype "passive") (tstamp 00743d64-ef78-4706-ae65-77d052ec8d69))
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp b768a364-cf05-4cbd-a5a6-aa2860cf20bb)
(at 202.5 51)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/0b966148-a687-4ec5-bf4b-d53940071f06")
(attr through_hole)
(fp_text reference "U7" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74398ac0-8bc8-48de-b6d6-0faa973efe84)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06f00cec-1d49-40dd-b82b-8c1f60ceb583)
)
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 717bca62-effb-472c-86ab-34ba18a6878c))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp 8b66f54c-5ee5-4994-8501-a335e72e4956))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp b4b812d2-57e4-487f-a54f-73f7dd7c788c))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp c73e0107-a408-44f7-aa05-b082346484b0))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 2b918099-910f-4f5d-8d46-20d92c5eb88a))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp a7dce4ed-bf4b-45c1-bfca-66790ee7b5b4))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp b96d2a0e-9b10-4b91-9d83-84df8b487fbd))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp febba96f-c9f1-43a7-aa6d-19621afc18ff))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 51a7cccd-90c1-4748-a780-8389e851e834))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 914c4ae7-19b7-418b-8224-0f871de11aa3))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp a48cea90-755c-4f21-9d07-d4e10b612083))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp c72d4925-f4d0-41c1-a72e-a24c7aa5f243))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 2ee52b88-341c-469b-9538-e153acea011d))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 4499b7e2-fa08-40d9-bd33-8069ddda0f9a))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cc6f7dab-59cb-4420-aa34-7d877f68e24e))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 17 "/SwC1") (pintype "passive") (tstamp 9459ad42-a5b0-4ce8-ba82-c7ec8f12a355))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 24 "/SwR3") (pintype "passive") (tstamp 95b872e6-8eda-49eb-b258-058f2e08650d))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 10 "Net-(R7-Pad2)") (pinfunction "K") (pintype "passive") (tstamp cd03c167-4631-423c-bbac-3c0ab1fabee1))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 25 "/LedR3") (pinfunction "A") (pintype "passive") (tstamp 81c8cdb3-a126-4e16-997e-00d60df72409))
)
(footprint "Rotary_Encoder:RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm" (layer "F.Cu")
(tedit 5A74C8CB) (tstamp bc8072c8-1b4b-4b69-86f1-4475219afc17)
(at 172.25 47.5)
(descr "Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html")
(tags "rotary encoder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/4e36b6be-8bd1-4745-a208-8aa940204660")
(attr through_hole)
(fp_text reference "SW1" (at 2.8 -4.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ffca83d-d7b1-40de-ae82-adddf2b827d7)
)
(fp_text value "RotaryEncoder_Switch" (at 7.5 10.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec1633f4-5d8c-4aa5-8840-94eb6b8f1a40)
)
(fp_text user "${REFERENCE}" (at 11.1 6.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc1fc006-976f-4403-a33e-940aeebef2db)
)
(fp_line (start 1.4 -3.4) (end 1.4 8.4) (layer "F.SilkS") (width 0.12) (tstamp 00fd0fae-f796-4715-b2b1-fc6355af7fa1))
(fp_line (start 13.6 6) (end 13.6 8.4) (layer "F.SilkS") (width 0.12) (tstamp 28734eaf-707d-423d-9a56-1a602dfec91a))
(fp_line (start 5.5 -3.4) (end 1.4 -3.4) (layer "F.SilkS") (width 0.12) (tstamp 29e0fce6-d3ac-489a-9b16-e57df8591c5f))
(fp_line (start 13.6 1.2) (end 13.6 3.8) (layer "F.SilkS") (width 0.12) (tstamp 2f66e0ac-592d-4e96-a6f1-7a25dc0528f3))
(fp_line (start 5.5 8.4) (end 1.4 8.4) (layer "F.SilkS") (width 0.12) (tstamp 35a1c35c-d989-4529-8a7a-9beb2b1f57a0))
(fp_line (start 13.6 8.4) (end 9.5 8.4) (layer "F.SilkS") (width 0.12) (tstamp 3a754c70-d825-43ee-8564-d5ed0ce3110e))
(fp_line (start 0 -1.3) (end -0.3 -1.6) (layer "F.SilkS") (width 0.12) (tstamp 3e67e8f6-b186-4cd5-9ebb-6b1a166b4358))
(fp_line (start -0.3 -1.6) (end 0.3 -1.6) (layer "F.SilkS") (width 0.12) (tstamp 6be4ce1a-c2d5-417a-9292-12c18ae53e55))
(fp_line (start 9.5 -3.4) (end 13.6 -3.4) (layer "F.SilkS") (width 0.12) (tstamp 6d71fda4-c8a3-4c66-b9a6-d4ba1decb228))
(fp_line (start 13.6 -3.4) (end 13.6 -1) (layer "F.SilkS") (width 0.12) (tstamp 85eedfed-6bd2-4cc4-9f33-bd435240d411))
(fp_line (start 7 2.5) (end 8 2.5) (layer "F.SilkS") (width 0.12) (tstamp dc9154cb-dd5b-436d-a730-188637a52e67))
(fp_line (start 7.5 2) (end 7.5 3) (layer "F.SilkS") (width 0.12) (tstamp dff624ab-1ba8-4d2b-8b0f-4ed408679b4a))
(fp_line (start 0.3 -1.6) (end 0 -1.3) (layer "F.SilkS") (width 0.12) (tstamp e1cef3a0-84c0-47bc-8d07-f7e11b768561))
(fp_circle (center 7.5 2.5) (end 10.5 2.5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 20dd58c1-22c8-46bf-9a86-b5764d27bee2))
(fp_line (start 16 9.6) (end 16 -4.6) (layer "F.CrtYd") (width 0.05) (tstamp 2f67ef4f-560b-4c34-9ab1-37a39d037c72))
(fp_line (start 16 9.6) (end -1.5 9.6) (layer "F.CrtYd") (width 0.05) (tstamp 546478a1-bec0-4bd6-a51b-9e9629be34e0))
(fp_line (start -1.5 -4.6) (end -1.5 9.6) (layer "F.CrtYd") (width 0.05) (tstamp 98f55ded-5a1b-43a2-a4c3-c73c3db3d872))
(fp_line (start -1.5 -4.6) (end 16 -4.6) (layer "F.CrtYd") (width 0.05) (tstamp f60e0946-7dde-4b9f-9f58-e1b97d8c3caa))
(fp_line (start 13.5 8.3) (end 1.5 8.3) (layer "F.Fab") (width 0.12) (tstamp 1ac0b636-22b9-4c06-8824-eaf2865f6836))
(fp_line (start 13.5 -3.3) (end 13.5 8.3) (layer "F.Fab") (width 0.12) (tstamp 21dff6cb-3141-4230-b6a5-b5d4f3f46dc8))
(fp_line (start 1.5 -2.2) (end 2.5 -3.3) (layer "F.Fab") (width 0.12) (tstamp 3a853e54-e4c1-4c79-8106-dd1d0e5acdcf))
(fp_line (start 7.5 -0.5) (end 7.5 5.5) (layer "F.Fab") (width 0.12) (tstamp 4c16b218-a05e-4908-9693-2ae04e2e7f62))
(fp_line (start 4.5 2.5) (end 10.5 2.5) (layer "F.Fab") (width 0.12) (tstamp 852c45c3-d500-4d3e-b6c4-21851aca4d3d))
(fp_line (start 1.5 8.3) (end 1.5 -2.2) (layer "F.Fab") (width 0.12) (tstamp 9f7f373b-2e94-4f05-929f-900256160f33))
(fp_line (start 2.5 -3.3) (end 13.5 -3.3) (layer "F.Fab") (width 0.12) (tstamp ecb80eed-5582-4eab-b560-cfb481400cba))
(fp_circle (center 7.5 2.5) (end 10.5 2.5) (layer "F.Fab") (width 0.12) (fill none) (tstamp 80ad295c-608a-4e8e-b8cd-744f8e51e6ae))
(pad "A" thru_hole rect locked (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 16 "/EncA") (pinfunction "A") (pintype "passive") (tstamp 2bced797-a1bf-4236-b521-6ebfc051c985))
(pad "B" thru_hole circle locked (at 0 5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 "/EncB") (pinfunction "B") (pintype "passive") (tstamp 34988e9c-20bc-438c-aaf0-03c5e7a956ba))
(pad "C" thru_hole circle locked (at 0 2.5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 14 "GND") (pinfunction "C") (pintype "passive") (tstamp 412e4603-b783-4e3d-be48-362d1c49d546))
(pad "MP" thru_hole rect locked (at 7.5 8.1) (size 3.2 2) (drill oval 2.8 1.5) (layers *.Cu *.Mask) (tstamp 137c1483-88df-44be-a557-272eefea7674))
(pad "MP" thru_hole rect locked (at 7.5 -3.1) (size 3.2 2) (drill oval 2.8 1.5) (layers *.Cu *.Mask) (tstamp 5d2118db-5e9d-4249-9e9a-851e3c7bf307))
(pad "S1" thru_hole circle locked (at 14.5 5) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 13 "/EncSw") (pinfunction "S1") (pintype "passive") (tstamp e9113ad5-0b94-4e10-bddd-f61d58e45ae9))
(pad "S2" thru_hole circle locked (at 14.5 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 14 "GND") (pinfunction "S2") (pintype "passive") (tstamp 1e44899a-b818-4633-a139-54aabb3cfb56))
(model "${KICAD6_3DMODEL_DIR}/Rotary_Encoder.3dshapes/RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Cherry MX Full:CherryMX_1.00u_PCB_LED" (layer "F.Cu")
(tedit 5E866FEB) (tstamp d21b95e4-817d-4767-9746-a98e0e945f0f)
(at 181.5 71.5)
(descr "Cherry MX switch footprint. Size: 1.00u, Mount type: PCB, Using Kailh Socket: no, Stabilizer: n/a, Lighting: 2 pin LED")
(tags "CherryMX 1.00u PCB LED")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/c82ee088-bc6b-4faa-9112-451570a1d158")
(attr through_hole)
(fp_text reference "U6" (at 0 -8.6625) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d929de5-0866-44e8-b873-de516904b95c)
)
(fp_text value "CherryMX_LED" (at 0 8.6625) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b47d3d54-8ecb-422d-84de-abec19fb74dd)
)
(fp_line (start 7 7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp c8cbd5bf-c63a-440e-b453-edf964ebf17c))
(fp_line (start -7 -7) (end -7 7) (layer "F.SilkS") (width 0.12) (tstamp c9b8950f-c6ba-432b-a64b-48cf4340acfb))
(fp_line (start -7 -7) (end 7 -7) (layer "F.SilkS") (width 0.12) (tstamp cf94b743-2d64-452c-8bb2-d4bff00ec018))
(fp_line (start 7 -7) (end 7 7) (layer "F.SilkS") (width 0.12) (tstamp d00a7c3e-9ea0-4136-99c4-ee529afcef2b))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 08dada1d-12ec-41ae-8c51-72b2628b47ca))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 1586dff6-c8c0-4935-8058-09716d88849a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 621207c6-e55e-4f61-b92f-6eb157fafed6))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 97a6b7c9-f333-4675-bdcc-b742228d3f1f))
(fp_line (start -7.8 -7.8) (end 7.8 -7.8) (layer "F.Fab") (width 0.12) (tstamp 292bbf75-bede-4b6a-a34d-c9d2340d5a56))
(fp_line (start -7.8 7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 6736ac61-1174-4787-9294-71a2d45e31dc))
(fp_line (start 7.8 -7.8) (end 7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp 6e0d171d-3e60-4e3f-8059-74358eb26500))
(fp_line (start -7.8 -7.8) (end -7.8 7.8) (layer "F.Fab") (width 0.12) (tstamp f86f8345-9807-46cb-8164-2826745639e9))
(pad "" np_thru_hole circle locked (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1adaaa9f-64ba-4043-b59d-97cfe97ae852))
(pad "" np_thru_hole circle locked (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 6c44396d-6d5e-41d8-b7da-ce3ab2922cbc))
(pad "" np_thru_hole circle locked (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 6d7e6d22-bb96-49ee-87f8-6b0666fb819f))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 21 "/SwC3") (pintype "passive") (tstamp 9c810371-aa80-43d4-924f-7045010f6a49))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 22 "/SwR2") (pintype "passive") (tstamp 8bf86969-9c4a-4ecc-b339-259d333cbfb5))
(pad "3" thru_hole circle locked (at -1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 9 "Net-(R6-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 4694e736-1e0c-4f78-9ae3-512e7a0e757c))
(pad "4" thru_hole circle locked (at 1.27 5.08) (size 1.6906 1.6906) (drill 0.9906) (layers *.Cu *.Mask)
(net 23 "/LedR2") (pinfunction "A") (pintype "passive") (tstamp e08a9a2b-7cc8-4693-8e80-a52b36328a7d))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp e56c635b-c963-4ec6-a5df-3a17a71324b0)
(at 126.95 72)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/01891dfa-6656-439e-ab0f-063a3e6baff6")
(attr smd)
(fp_text reference "R4" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebd8b996-0db3-4f49-a7ce-3dc3d11461e5)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75a96328-844a-438e-b85f-eb3d54dc30d7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1b889643-eec8-42e7-a8db-7b57373eda29)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp b606bed4-0f94-4985-8853-2ae350c66ffa))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp c3ace73e-d681-4890-bb47-28da4f45d377))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2f107362-5120-4466-9987-760396b4e811))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 6a4bd910-f5f1-44ce-838f-409e3b39d83e))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp ba25d0f5-52c9-436a-b9b5-eb126afc0b5a))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp be89b035-c189-4e37-b9a7-edc78ada925c))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 0dbaf1e1-843e-4fb3-b64e-d2b0aa96f4f4))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp bffea964-73cf-473b-8c7c-66eb70d2cd98))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp cfe8f82f-c024-4d5a-8732-74c443044e7e))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp fa5680f6-7871-4112-926e-9224c41c6478))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/LedC1") (pintype "passive") (tstamp a4f10de7-92ad-45e1-876f-fc92b0807205))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 7 "Net-(R4-Pad2)") (pintype "passive") (tstamp c1ff2dbf-9e67-416f-b40f-00ef89acc2d3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp eaafa5b8-7079-42d6-82c2-5f7e9968a2bf)
(at 126.95 85)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/779575d9-a748-4b72-a2cb-7ef0c22a5685")
(attr smd)
(fp_text reference "R2" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fc2124e-7109-4aa3-9633-55a9ef993654)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ac34488-8436-4672-accb-5d38fb2b9a84)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9db67916-6a4c-47f4-8876-c2b18aa22317)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 041f8f9a-2d4f-41b4-958a-15db6deb573b))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 5a6c05fb-d0ba-4649-9ede-84f717a5acaa))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 1f62ae12-96fb-4a67-93eb-145a9a27f98d))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 4705a4f9-dd08-4b46-915b-a9e4ee3c13a8))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 9f8c14a1-e307-4440-9909-99ed76b96ed0))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp b48ec31e-eb27-4876-ad77-40eea2f9130e))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 312cfed1-8091-45ea-9ca8-f2380c90a06b))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 81efc474-cd54-4535-b055-5ccdc491603f))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9e4ed1ff-02f4-4d09-811d-ee2fe5744041))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e4d0bd65-53fe-45d4-9b5b-1e876f4caec7))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 3 "/LedC2") (pintype "passive") (tstamp 13c2b78d-2f3d-4abe-ae2c-7285c43eb5d8))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "Net-(R2-Pad2)") (pintype "passive") (tstamp a1b88c77-29a4-4476-ae8e-a5bed74047c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f1960a44-4a07-434c-8f6b-11ba1ae633ea)
(at 163.5 58)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/4908ec67-6565-4568-96fc-9f28b6e82acf")
(attr smd)
(fp_text reference "R6" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a0fdd3c-272f-446b-ab42-481970e5623e)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15d09213-ed1c-40e3-9c47-ff52e6e11ba8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8e17e834-fc19-4946-881a-88770c1aa5d3)
)
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp a5d0cbec-66a4-4475-a276-65d9a859ade5))
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp c78f1799-136e-4da1-b80e-222973eb0bab))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 732619c5-be61-4a85-a9b3-43a0fce291c2))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 85c5e860-5a80-47eb-9359-3f89cc5c69b7))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp cbdca635-4d96-4cc4-8f9d-c0e29f5ca4fd))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp e89dba37-db2c-45e4-a3fe-b993fe67f600))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 492417c3-3b8a-48f5-8676-e5392f2af2a1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 93ca8437-7938-40cd-a6d4-29c9a87b39e8))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 9700382f-b7e6-4b4c-a60e-e9698350be91))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b83ea94f-7cdd-4322-9dd3-d15d180878ef))
(pad "1" smd roundrect locked (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 5 "/LedC3") (pintype "passive") (tstamp 6c223787-d34d-46a0-8157-856218059d16))
(pad "2" smd roundrect locked (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 9 "Net-(R6-Pad2)") (pintype "passive") (tstamp 628f344a-c8dc-4a0c-8d31-d49418f71567))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f6af1dbe-d6d1-4543-840f-602f8649e787)
(at 126.95 78.5)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ProMicroKeypad.kicad_sch")
(property "Sheetname" "")
(path "/8781b9d0-81cc-4663-a0a7-9496fc9ab29d")
(attr smd)
(fp_text reference "R3" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85e820c2-04f9-4da3-bad2-7aa1864997b3)
)
(fp_text value "150R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28b37c6a-c70a-477e-9903-3e11fc577a37)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 0abf6029-69e0-43ac-a1ef-67a830f857a9)
)