-
Notifications
You must be signed in to change notification settings - Fork 4
/
anavi-macro-pad-8.kicad_pcb
9516 lines (9459 loc) · 410 KB
/
anavi-macro-pad-8.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots/anavi-macro-pad-8-10")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(C3-Pad2)")
(net 5 "+5V")
(net 6 "Net-(J1-Pad2)")
(net 7 "Net-(J1-Pad3)")
(net 8 "Net-(J2-Pad3)")
(net 9 "Net-(J2-Pad4)")
(net 10 "Net-(J3-Pad2)")
(net 11 "Net-(L1-Pad2)")
(net 12 "Net-(L2-Pad2)")
(net 13 "Net-(L3-Pad2)")
(net 14 "Net-(L4-Pad2)")
(net 15 "Net-(L5-Pad2)")
(net 16 "Net-(L6-Pad2)")
(net 17 "Net-(L7-Pad2)")
(net 18 "Net-(L8-Pad2)")
(net 19 "/BACKLIT")
(net 20 "Net-(Q1-Pad2)")
(net 21 "Net-(R1-Pad1)")
(net 22 "Net-(R2-Pad1)")
(net 23 "Net-(R4-Pad2)")
(net 24 "Net-(SW1-Pad1)")
(net 25 "Net-(SW2-Pad1)")
(net 26 "Net-(SW3-Pad1)")
(net 27 "Net-(SW4-Pad1)")
(net 28 "Net-(SW5-Pad1)")
(net 29 "Net-(SW6-Pad1)")
(net 30 "Net-(SW7-Pad1)")
(net 31 "Net-(SW8-Pad1)")
(net 32 "Net-(R13-Pad2)")
(net 33 "Net-(R14-Pad2)")
(net 34 "Net-(J5-Pad1)")
(net 35 "Net-(J5-Pad3)")
(net 36 "Net-(J5-Pad4)")
(net 37 "Net-(J5-Pad5)")
(net 38 "Net-(D1-Pad2)")
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005ead67a6)
(at 54.45 80.8 180)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-00005ead7877")
(attr smd)
(fp_text reference "C1" (at -0.05 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
)
(fp_text value "22pF" (at 3.35 -0.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 097edb1b-8998-4e70-b670-bba125982348)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(pad "1" smd roundrect locked (at -0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(pad "2" smd roundrect locked (at 0.7875 0 180) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005ead67b7)
(at 65 82.4875 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-00005ead7f28")
(attr smd)
(fp_text reference "C2" (at 0 -1.43 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34a74736-156e-4bf3-9200-cd137cfa59da)
)
(fp_text value "22pF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb)
)
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "F.SilkS") (width 0.12) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "F.SilkS") (width 0.12) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(fp_line (start 0.8 0.4) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(pad "1" smd roundrect locked (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad1)") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(pad "2" smd roundrect locked (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TO_SOT_Packages_SMD:SOT-23_Handsoldering" (layer "F.Cu")
(tedit 54E9291B) (tstamp 00000000-0000-0000-0000-00005ead6953)
(at 82.8 92.00178 180)
(descr "SOT-23, Handsoldering")
(tags "SOT-23")
(path "/00000000-0000-0000-0000-00005eae2c7d")
(attr smd)
(fp_text reference "Q1" (at 0 3.40178) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5)
)
(fp_text value "BC817 NPN" (at 0 -3.19822) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595)
)
(fp_line (start 1.49982 -0.65024) (end 1.49982 0.0508) (layer "F.SilkS") (width 0.15) (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(fp_line (start 1.29916 -0.65024) (end 1.49982 -0.65024) (layer "F.SilkS") (width 0.15) (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(fp_line (start -1.49982 -0.65024) (end -1.2509 -0.65024) (layer "F.SilkS") (width 0.15) (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(fp_line (start -1.49982 0.0508) (end -1.49982 -0.65024) (layer "F.SilkS") (width 0.15) (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(pad "1" smd rect locked (at -0.95 1.50114 180) (size 0.8001 1.80086) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/BACKLIT") (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(pad "2" smd rect locked (at 0.95 1.50114 180) (size 0.8001 1.80086) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q1-Pad2)") (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(pad "3" smd rect locked (at 0 -1.50114 180) (size 0.8001 1.80086) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(model "TO_SOT_Packages_SMD.3dshapes/SOT-23_Handsoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005ead695f)
(at 66.8 66.6 90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ead6b83")
(attr smd)
(fp_text reference "R1" (at 0 1.7 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13475e15-f37c-4de8-857e-1722b0c39513)
)
(fp_text value "20R" (at 3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2732632c-4768-42b6-bf7f-14643424019e)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(R1-Pad1)") (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005ead696b)
(at 74.2 66.65 90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ead71b1")
(attr smd)
(fp_text reference "R2" (at 0 -1.6 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 128e34ce-eee7-477d-b905-a493e98db783)
)
(fp_text value "20R" (at 0 1.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55)
)
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(R2-Pad1)") (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J1-Pad2)") (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005ead6983)
(at 55 72.35 90)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ecaf71e")
(attr smd)
(fp_text reference "R4" (at 0 1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(fp_text value "470R" (at -0.05 -1.7 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(pad "1" smd rect locked (at -1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(J3-Pad2)") (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(pad "2" smd rect locked (at 1.1 0 90) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(R4-Pad2)") (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_QFP:TQFP-44_10x10mm_P0.8mm" (layer "F.Cu")
(tedit 5A02F146) (tstamp 00000000-0000-0000-0000-00005ead6ae6)
(at 76.5 79.2)
(descr "44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(path "/00000000-0000-0000-0000-00005eb8f703")
(attr smd)
(fp_text reference "U1" (at 0 -7.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
)
(fp_text value "ATmega32U4-AU" (at 0 7.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6983918-fe05-46ea-b355-bc522ec53440)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
)
(fp_line (start 5.175 -5.175) (end 4.5 -5.175) (layer "F.SilkS") (width 0.15) (tstamp 01f82238-6335-48fe-8b0a-6853e227345a))
(fp_line (start -5.175 -4.6) (end -6.45 -4.6) (layer "F.SilkS") (width 0.15) (tstamp 0e249018-17e7-42b3-ae5d-5ebf3ae299ae))
(fp_line (start -5.175 -5.175) (end -4.5 -5.175) (layer "F.SilkS") (width 0.15) (tstamp 13bbfffc-affb-4b43-9eb1-f2ed90a8a919))
(fp_line (start 5.175 -5.175) (end 5.175 -4.5) (layer "F.SilkS") (width 0.15) (tstamp 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa))
(fp_line (start -5.175 5.175) (end -4.5 5.175) (layer "F.SilkS") (width 0.15) (tstamp 71f8d568-0f23-4ff2-8e60-1600ce517a48))
(fp_line (start 5.175 5.175) (end 4.5 5.175) (layer "F.SilkS") (width 0.15) (tstamp 7c00778a-4692-4f9b-87d5-2d355077ce1e))
(fp_line (start -5.175 5.175) (end -5.175 4.5) (layer "F.SilkS") (width 0.15) (tstamp 97581b9a-3f6b-4e88-8768-6fdb60e6aca6))
(fp_line (start -5.175 -5.175) (end -5.175 -4.6) (layer "F.SilkS") (width 0.15) (tstamp c71f56c1-5b7c-4373-9716-fffac482104c))
(fp_line (start 5.175 5.175) (end 5.175 4.5) (layer "F.SilkS") (width 0.15) (tstamp dbe92a0d-89cb-4d3f-9497-c2c1d93a3018))
(fp_line (start 6.7 -6.7) (end 6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 319639ae-c2c5-486d-93b1-d03bb1b64252))
(fp_line (start -6.7 -6.7) (end -6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp 3a70978e-dcc2-4620-a99c-514362812927))
(fp_line (start -6.7 6.7) (end 6.7 6.7) (layer "F.CrtYd") (width 0.05) (tstamp a5c8e189-1ddc-4a66-984b-e0fd1529d346))
(fp_line (start -6.7 -6.7) (end 6.7 -6.7) (layer "F.CrtYd") (width 0.05) (tstamp fc4ad874-c922-4070-89f9-7262080469d8))
(fp_line (start 5 -5) (end 5 5) (layer "F.Fab") (width 0.15) (tstamp 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
(fp_line (start 5 5) (end -5 5) (layer "F.Fab") (width 0.15) (tstamp 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
(fp_line (start -5 -4) (end -4 -5) (layer "F.Fab") (width 0.15) (tstamp 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2))
(fp_line (start -4 -5) (end 5 -5) (layer "F.Fab") (width 0.15) (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
(fp_line (start -5 5) (end -5 -4) (layer "F.Fab") (width 0.15) (tstamp f447e585-df78-4239-b8cb-4653b3837bb1))
(pad "1" smd rect locked (at -5.7 -4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(SW3-Pad1)") (tstamp 63489ebf-0f52-43a6-a0ab-158b1a7d4988))
(pad "2" smd rect locked (at -5.7 -3.2) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp e6d68f56-4a40-4849-b8d1-13d5ca292900))
(pad "3" smd rect locked (at -5.7 -2.4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(R2-Pad1)") (tstamp cd5e758d-cb66-484a-ae8b-21f53ceee49e))
(pad "4" smd rect locked (at -5.7 -1.6) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(R1-Pad1)") (tstamp 7db990e4-92e1-4f99-b4d2-435bbec1ba83))
(pad "5" smd rect locked (at -5.7 -0.8) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 8efee08b-b92e-4ba6-8722-c058e18114fe))
(pad "6" smd rect locked (at -5.7 0) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(C3-Pad2)") (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
(pad "7" smd rect locked (at -5.7 0.8) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1))
(pad "8" smd rect locked (at -5.7 1.6) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
(pad "9" smd rect locked (at -5.7 2.4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "Net-(J5-Pad3)") (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
(pad "10" smd rect locked (at -5.7 3.2) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "Net-(J5-Pad4)") (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
(pad "11" smd rect locked (at -5.7 4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(J5-Pad1)") (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
(pad "12" smd rect locked (at -4 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7c411b3e-aca2-424f-b644-2d21c9d80fa7))
(pad "13" smd rect locked (at -3.2 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "Net-(J5-Pad5)") (tstamp 6d0c9e39-9878-44c8-8283-9a59e45006fa))
(pad "14" smd rect locked (at -2.4 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp 9c607e49-ee5c-4e85-a7da-6fede9912412))
(pad "15" smd rect locked (at -1.6 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp e5e5220d-5b7e-47da-a902-b997ec8d4d58))
(pad "16" smd rect locked (at -0.8 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad1)") (tstamp 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c))
(pad "17" smd rect locked (at 0 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad1)") (tstamp f345e52a-8e0a-425a-b438-90809dd3b799))
(pad "18" smd rect locked (at 0.8 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(R13-Pad2)") (tstamp 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b))
(pad "19" smd rect locked (at 1.6 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(R14-Pad2)") (tstamp f2480d0c-9b08-4037-9175-b2369af04d4c))
(pad "20" smd rect locked (at 2.4 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eac8d865-0226-4958-b547-6b5592f39713))
(pad "21" smd rect locked (at 3.2 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b))
(pad "22" smd rect locked (at 4 5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
(pad "23" smd rect locked (at 5.7 4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
(pad "24" smd rect locked (at 5.7 3.2) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
(pad "25" smd rect locked (at 5.7 2.4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(SW1-Pad1)") (tstamp 014d13cd-26ad-4d0e-86ad-a43b541cab14))
(pad "26" smd rect locked (at 5.7 1.6) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
(pad "27" smd rect locked (at 5.7 0.8) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/BACKLIT") (tstamp 633292d3-80c5-4986-be82-ce926e9f09f4))
(pad "28" smd rect locked (at 5.7 0) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(SW4-Pad1)") (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
(pad "29" smd rect locked (at 5.7 -0.8) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "Net-(SW5-Pad1)") (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
(pad "30" smd rect locked (at 5.7 -1.6) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b854a395-bfc6-4140-9640-75d4f9296771))
(pad "31" smd rect locked (at 5.7 -2.4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(SW2-Pad1)") (tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6))
(pad "32" smd rect locked (at 5.7 -3.2) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
(pad "33" smd rect locked (at 5.7 -4) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
(pad "34" smd rect locked (at 4 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0))
(pad "35" smd rect locked (at 3.2 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0))
(pad "36" smd rect locked (at 2.4 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(SW6-Pad1)") (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde))
(pad "37" smd rect locked (at 1.6 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(SW7-Pad1)") (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4))
(pad "38" smd rect locked (at 0.8 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "Net-(SW8-Pad1)") (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
(pad "39" smd rect locked (at 0 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(R4-Pad2)") (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
(pad "40" smd rect locked (at -0.8 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f7447e92-4293-41c4-be3f-69b30aad1f17))
(pad "41" smd rect locked (at -1.6 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8))
(pad "42" smd rect locked (at -2.4 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp 5ff19d63-2cb4-438b-93c4-e66d37a05329))
(pad "43" smd rect locked (at -3.2 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
(pad "44" smd rect locked (at -4 -5.7 90) (size 1.5 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "+5V") (tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f))
(model "${KISYS3DMOD}/Package_QFP.3dshapes/TQFP-44_10x10mm_P0.8mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_Micro-B_Molex-105017-0001" (layer "F.Cu")
(tedit 5A1DC0BE) (tstamp 00000000-0000-0000-0000-00005ead7877)
(at 72.5 57.6875 180)
(descr "http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf")
(tags "Micro-USB SMD Typ-B")
(path "/00000000-0000-0000-0000-00005eace252")
(attr smd)
(fp_text reference "J1" (at 0 -3.1125) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb16d05e-318b-4e51-867b-70d791d75bea)
)
(fp_text value "USB_B_Micro" (at 0.3 4.3375) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)
)
(fp_text user "PCB Edge" (at 0 2.6875) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756)
)
(fp_text user "${REFERENCE}" (at 0 0.8875) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c)
)
(fp_line (start -3.9 -1.7625) (end -3.45 -1.7625) (layer "F.SilkS") (width 0.12) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start -1.7 -2.3125) (end -1.7 -1.8625) (layer "F.SilkS") (width 0.12) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(fp_line (start 3.9 -1.7625) (end 3.45 -1.7625) (layer "F.SilkS") (width 0.12) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(fp_line (start 3.9 0.0875) (end 3.9 -1.7625) (layer "F.SilkS") (width 0.12) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(fp_line (start -3.9 2.6375) (end -3.9 2.3875) (layer "F.SilkS") (width 0.12) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(fp_line (start 3.9 2.6375) (end 3.9 2.3875) (layer "F.SilkS") (width 0.12) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -1.7 -2.3125) (end -1.25 -2.3125) (layer "F.SilkS") (width 0.12) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(fp_line (start -3.9 0.0875) (end -3.9 -1.7625) (layer "F.SilkS") (width 0.12) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start 4.4 -2.46) (end 4.4 3.64) (layer "F.CrtYd") (width 0.05) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(fp_line (start -4.4 3.64) (end 4.4 3.64) (layer "F.CrtYd") (width 0.05) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(fp_line (start -4.4 -2.46) (end 4.4 -2.46) (layer "F.CrtYd") (width 0.05) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start -4.4 3.64) (end -4.4 -2.46) (layer "F.CrtYd") (width 0.05) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start -1.1 -2.1225) (end -1.1 -1.9125) (layer "F.Fab") (width 0.1) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start -3.75 3.3875) (end -3.75 -1.6125) (layer "F.Fab") (width 0.1) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(fp_line (start -1.3 -1.7125) (end -1.5 -1.9125) (layer "F.Fab") (width 0.1) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(fp_line (start -1.1 -1.9125) (end -1.3 -1.7125) (layer "F.Fab") (width 0.1) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(fp_line (start -1.5 -2.1225) (end -1.1 -2.1225) (layer "F.Fab") (width 0.1) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(fp_line (start 3.75 3.3875) (end 3.75 -1.6125) (layer "F.Fab") (width 0.1) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start -3.75 3.389204) (end 3.75 3.389204) (layer "F.Fab") (width 0.1) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(fp_line (start -3.75 -1.6125) (end 3.75 -1.6125) (layer "F.Fab") (width 0.1) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(fp_line (start -1.5 -2.1225) (end -1.5 -1.9125) (layer "F.Fab") (width 0.1) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(fp_line (start -3 2.689204) (end 3 2.689204) (layer "F.Fab") (width 0.1) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(pad "1" smd rect locked (at -1.3 -1.4625 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "Net-(D1-Pad2)") (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(pad "2" smd rect locked (at -0.65 -1.4625 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J1-Pad2)") (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(pad "3" smd rect locked (at 0 -1.4625 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(pad "4" smd rect locked (at 0.65 -1.4625 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(pad "5" smd rect locked (at 1.3 -1.4625 180) (size 0.4 1.35) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(pad "6" thru_hole oval locked (at -3.5 1.2375) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(pad "6" thru_hole oval locked (at 3.5 1.2375 180) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(pad "6" smd rect locked (at -1 1.2375 180) (size 1.5 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(pad "6" smd rect locked (at 2.9 1.2375 180) (size 1.2 1.9) (layers "F.Cu" "F.Mask")
(net 2 "GND") (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(pad "6" smd rect locked (at 1 1.2375 180) (size 1.5 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(pad "6" thru_hole circle locked (at 2.5 -1.4625 180) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(pad "6" smd rect locked (at -2.9 1.2375 180) (size 1.2 1.9) (layers "F.Cu" "F.Mask")
(net 2 "GND") (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "6" thru_hole circle locked (at -2.5 -1.4625 180) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_Micro-B_Molex-105017-0001.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eae6fe4)
(at 63.65 92.8)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005eaf8e5f")
(attr smd)
(fp_text reference "R13" (at -0.05 -1.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da469d11-a8a4-414b-9449-d151eeaf4853)
)
(fp_text value "24R" (at 3.05 -0.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J2-Pad3)") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "Net-(R13-Pad2)") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 5EAE7C52) (tstamp 00000000-0000-0000-0000-00005eaee706)
(at 175 60)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(pad "2" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
)
(footprint "MountingHole:MountingHole_3.2mm_M3_DIN965_Pad" (layer "F.Cu")
(tedit 5EAE7C69) (tstamp 00000000-0000-0000-0000-00005eaee733)
(at 50 97.03)
(descr "Mounting Hole 3.2mm, M3, DIN965")
(tags "mounting hole 3.2mm m3 din965")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -3.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
)
(fp_text value "MountingHole_3.2mm_M3_DIN965_Pad" (at 0 3.8) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45)
)
(fp_circle (center 0 0) (end 2.8 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_circle (center 0 0) (end 3.05 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(pad "3" thru_hole circle locked (at 0 0) (size 5.6 5.6) (drill 3.2) (layers *.Cu *.Mask) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005eaee9ec)
(at 72 97.14 -90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path "/00000000-0000-0000-0000-00005ec82683")
(attr through_hole)
(fp_text reference "J2" (at -2.64 3.95 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865)
)
(fp_text value "Conn_01x04_Female" (at 42.9 16.34 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88668202-3f0b-4d07-84d4-dcd790f57272)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 065b9982-55f2-4822-977e-07e8a06e7b35)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+5V") (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(J2-Pad3)") (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J2-Pad4)") (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eaeea99)
(at 71.25 92.8)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005eaf97ba")
(attr smd)
(fp_text reference "R14" (at 0 -2.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)
)
(fp_text value "24R" (at 3.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J2-Pad4)") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "Net-(R14-Pad2)") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 00000000-0000-0000-0000-00005eaf07a2)
(at 159 73.3)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(path "/00000000-0000-0000-0000-00005ed347ec")
(attr through_hole)
(fp_text reference "L4" (at -2.25 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422)
)
(fp_text value "LED" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
(pad "1" thru_hole rect locked (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(pad "2" thru_hole circle locked (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 14 "Net-(L4-Pad2)") (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(model "${KISYS3DMOD}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 00000000-0000-0000-0000-00005eaf07d8)
(at 98.6 93.5)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(path "/00000000-0000-0000-0000-00005ed37479")
(attr through_hole)
(fp_text reference "L5" (at -2.2 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af347946-e3da-4427-87ab-77b747929f50)
)
(fp_text value "LED" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7e08b48-3d04-49da-8349-6de530a20c67)
)
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
(pad "1" thru_hole rect locked (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(pad "2" thru_hole circle locked (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "Net-(L5-Pad2)") (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(model "${KISYS3DMOD}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eaf083d)
(at 160.25 99)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ed3fcd3")
(attr smd)
(fp_text reference "R12" (at -3.3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66043bca-a260-4915-9fce-8a51d324c687)
)
(fp_text value "68R" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d6db888-4e40-41c8-b701-07170fc894bc)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q1-Pad2)") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(L8-Pad2)") (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eaf085e)
(at 161 57.5)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ed347f2")
(attr smd)
(fp_text reference "R8" (at -3 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(fp_text value "68R" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q1-Pad2)") (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(L4-Pad2)") (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eaf087f)
(at 140.25 57.5)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ed319c9")
(attr smd)
(fp_text reference "R7" (at -3.25 0.1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f71da641-16e6-4257-80c3-0b9d804fee4f)
)
(fp_text value "68R" (at 0 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(fp_line (start 0.5 0.675) (end -0.5 0.675) (layer "F.SilkS") (width 0.15) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(fp_line (start -0.5 -0.675) (end 0.5 -0.675) (layer "F.SilkS") (width 0.15) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(fp_line (start 2 -0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start -2 -0.8) (end -2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start -2 -0.8) (end 2 -0.8) (layer "F.CrtYd") (width 0.05) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(fp_line (start -2 0.8) (end 2 0.8) (layer "F.CrtYd") (width 0.05) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(pad "1" smd rect locked (at -1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q1-Pad2)") (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(pad "2" smd rect locked (at 1.1 0) (size 1.2 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(L3-Pad2)") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(model "Resistors_SMD.3dshapes/R_0603_HandSoldering.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_Plate" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 00000000-0000-0000-0000-00005eaf08ac)
(at 102.440001 83.020001)
(descr "Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u plate")
(path "/00000000-0000-0000-0000-00005ead50df")
(attr through_hole)
(fp_text reference "SW8" (at -2.54 -2.794) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59fc765e-1357-4c94-9529-5635418c7d73)
)
(fp_text value "SW_DIP_x01" (at -2.54 12.954) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89a8e170-a222-41c0-b545-c9f4c5604011)
)
(fp_text user "${REFERENCE}" (at -2.740001 1.929999) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6)
)
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp b13e8448-bf35-4ec0-9c70-3f2250718cc2))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 5c7d6eaf-f256-4349-8203-d2e836872231))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp c7df8431-dcf5-4ab4-b8f8-21c1cafc5246))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp d38aa458-d7c4-47af-ba08-2b6be506a3fd))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp dde8619c-5a8c-40eb-9845-65e6a654222d))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 3a41dd27-ec14-44d5-b505-aad1d829f79a))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 98fe66f3-ec8b-4515-ae34-617f2124a7ec))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp e7d81bce-286e-41e4-9181-3511e9c0455e))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 252f1275-081d-4d77-8bd5-3b9e6916ef42))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 62e8c4d4-266c-4e53-8981-1028251d724c))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp fc3d51c1-8b35-4da3-a742-0ebe104989d7))
(pad "" np_thru_hole circle locked (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 10e52e95-44f3-4059-a86d-dcda603e0623))
(pad "1" thru_hole circle locked (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 31 "Net-(SW8-Pad1)") (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
(pad "2" thru_hole circle locked (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
(model "${KISYS3DMOD}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_Plate.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_Plate" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 00000000-0000-0000-0000-00005eaf08f1)
(at 142.840001 83.020001)
(descr "Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u plate")
(path "/00000000-0000-0000-0000-00005ead3c38")
(attr through_hole)
(fp_text reference "SW4" (at -2.54 -2.794) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33)
)
(fp_text value "SW_DIP_x01" (at -2.54 12.954) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281)
)
(fp_text user "${REFERENCE}" (at -2.54 1.979999) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d)
)
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp 8b290a17-6328-4178-9131-29524d345539))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 3e0392c0-affc-4114-9de5-1f1cfe79418a))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 66218487-e316-4467-9eba-79d4626ab24e))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp cf815d51-c956-4c5a-adde-c373cb025b07))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp dca1d7db-c913-4d73-a2cc-fdc9651eda69))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 12a24e86-2c38-4685-bba9-fff8dddb4cb0))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 35ef9c4a-35f6-467b-a704-b1d9354880cf))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 6513181c-0a6a-4560-9a18-17450c36ae2a))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp f357ddb5-3f44-43b0-b00d-d64f5c62ba4a))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 0ceb97d6-1b0f-4b71-921e-b0955c30c998))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp a7f25f41-0b4c-4430-b6cd-b2160b2db099))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp b8b961e9-8a60-45fc-999a-a7a3baff4e0d))
(pad "" np_thru_hole circle locked (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226))
(pad "1" thru_hole circle locked (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 27 "Net-(SW4-Pad1)") (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
(pad "2" thru_hole circle locked (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
(model "${KISYS3DMOD}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_Plate.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_Keyboard:SW_Cherry_MX_1.00u_Plate" (layer "F.Cu")
(tedit 5A02FE24) (tstamp 00000000-0000-0000-0000-00005eaf0957)
(at 122.640001 62.820001)
(descr "Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "Cherry MX keyswitch 1.00u plate")
(path "/00000000-0000-0000-0000-00005ead4c49")
(attr through_hole)
(fp_text reference "SW7" (at -2.54 -2.794) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b1fce17-dec7-457e-ba3b-a77604e77dc9)
)
(fp_text value "SW_DIP_x01" (at -2.54 12.954) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 869d6302-ae22-478f-9723-3feacbb12eef)
)
(fp_text user "${REFERENCE}" (at -2.640001 1.979999) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4)
)
(fp_line (start -9.525 12.065) (end -9.525 -1.905) (layer "F.SilkS") (width 0.12) (tstamp 9aaeec6e-84fe-4644-b0bc-5de24626ff48))
(fp_line (start 4.445 12.065) (end -9.525 12.065) (layer "F.SilkS") (width 0.12) (tstamp d3e133b7-2c84-4206-a2b1-e693cb57fe56))
(fp_line (start -9.525 -1.905) (end 4.445 -1.905) (layer "F.SilkS") (width 0.12) (tstamp da481376-0e49-44d3-91b8-aaa39b869dd1))
(fp_line (start 4.445 -1.905) (end 4.445 12.065) (layer "F.SilkS") (width 0.12) (tstamp f988d6ea-11c5-4837-b1d1-5c292ded50c6))
(fp_line (start -12.065 14.605) (end -12.065 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp 269f19c3-6824-45a8-be29-fa58d70cbb42))
(fp_line (start 6.985 14.605) (end -12.065 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
(fp_line (start 6.985 -4.445) (end 6.985 14.605) (layer "Dwgs.User") (width 0.15) (tstamp 5889287d-b845-4684-b23e-663811b25d27))
(fp_line (start -12.065 -4.445) (end 6.985 -4.445) (layer "Dwgs.User") (width 0.15) (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648))
(fp_line (start 4.06 11.68) (end -9.14 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 283c990c-ae5a-4e41-a3ad-b40ca29fe90e))
(fp_line (start 4.06 -1.52) (end 4.06 11.68) (layer "F.CrtYd") (width 0.05) (tstamp 49575217-40b0-4890-8acf-12982cca52b5))
(fp_line (start -9.14 -1.52) (end 4.06 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 4cafb73d-1ad8-4d24-acf7-63d78095ae46))
(fp_line (start -9.14 11.68) (end -9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
(fp_line (start 3.81 11.43) (end -8.89 11.43) (layer "F.Fab") (width 0.1) (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
(fp_line (start -8.89 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba))
(fp_line (start 3.81 -1.27) (end 3.81 11.43) (layer "F.Fab") (width 0.1) (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
(fp_line (start -8.89 11.43) (end -8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
(pad "" np_thru_hole circle locked (at -2.54 5.08) (size 4 4) (drill 4) (layers *.Cu *.Mask) (tstamp 1dfbf353-5b24-4c0f-8322-8fcd514ae75e))
(pad "1" thru_hole circle locked (at 0 0) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 30 "Net-(SW7-Pad1)") (tstamp 2e0a9f64-1b78-4597-8d50-d12d2268a95a))
(pad "2" thru_hole circle locked (at -6.35 2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 582622a2-fad4-4737-9a80-be9fffbba8ab))
(model "${KISYS3DMOD}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX_1.00u_Plate.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_SMD:R_0603_HandSoldering" (layer "F.Cu")
(tedit 5418A00F) (tstamp 00000000-0000-0000-0000-00005eaf0990)
(at 100 99)
(descr "Resistor SMD 0603, hand soldering")
(tags "resistor 0603")
(path "/00000000-0000-0000-0000-00005ed3747f")
(attr smd)
(fp_text reference "R9" (at -3 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c43663ee-9a0d-4f27-a292-89ba89964065)
)