-
Notifications
You must be signed in to change notification settings - Fork 0
/
spindle_controller.kicad_pcb
4226 lines (4145 loc) · 266 KB
/
spindle_controller.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 20170123) (host pcbnew "(2017-05-14 revision 14bb238b3)-makepkg")
(general
(links 147)
(no_connects 3)
(area 30.407667 34.864999 126.891001 166.69)
(thickness 1.6)
(drawings 16)
(tracks 581)
(zones 0)
(modules 72)
(nets 56)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.4)
(user_trace_width 0.25)
(user_trace_width 0.4)
(user_trace_width 0.5)
(user_trace_width 0.6)
(user_trace_width 0.8)
(user_trace_width 2)
(user_trace_width 2.5)
(user_trace_width 4)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 5.5 5.5)
(pad_drill 3.5)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 58.8264 162.0774)
(visible_elements 7FFFEF7F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory Production))
)
(net 0 "")
(net 1 "Net-(C11-Pad2)")
(net 2 "Net-(C11-Pad1)")
(net 3 "Net-(C10-Pad1)")
(net 4 "Net-(C10-Pad2)")
(net 5 GND)
(net 6 /RENC_A)
(net 7 /RENC_B)
(net 8 /SW1)
(net 9 "Net-(J5-Pad1)")
(net 10 "Net-(J5-Pad3)")
(net 11 "Net-(J5-Pad2)")
(net 12 "Net-(Q1-Pad3)")
(net 13 VCC)
(net 14 "Net-(R6-Pad1)")
(net 15 "Net-(R3-Pad1)")
(net 16 "Net-(R2-Pad1)")
(net 17 /ZCROSS_PULSE)
(net 18 /ROT_PULSE)
(net 19 "Net-(J6-Pad1)")
(net 20 "Net-(R10-Pad2)")
(net 21 /TRIAC_DRIVE)
(net 22 "Net-(R9-Pad1)")
(net 23 /TX)
(net 24 /RX)
(net 25 /SDA)
(net 26 /SCL)
(net 27 /RST)
(net 28 /MOSI)
(net 29 /SCK)
(net 30 /MISO)
(net 31 /DBG)
(net 32 /SEG_CS)
(net 33 "Net-(C9-Pad1)")
(net 34 "Net-(C7-Pad1)")
(net 35 "Net-(C8-Pad1)")
(net 36 /VAC_N)
(net 37 /VAC_L)
(net 38 /PD6)
(net 39 /PD7)
(net 40 "Net-(D2-Pad2)")
(net 41 "Net-(BR1-Pad1)")
(net 42 "Net-(BR1-Pad2)")
(net 43 "Net-(BR1-Pad3)")
(net 44 "Net-(C15-Pad2)")
(net 45 "Net-(TRIAC1-Pad3)")
(net 46 "Net-(C14-Pad2)")
(net 47 "Net-(C15-Pad1)")
(net 48 "Net-(U5-Pad3)")
(net 49 "Net-(U5-Pad5)")
(net 50 "Net-(U3-Pad11)")
(net 51 /PC3)
(net 52 /PB0)
(net 53 "Net-(R14-Pad1)")
(net 54 "Net-(R15-Pad1)")
(net 55 "Net-(R19-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /DBG)
(add_net /MISO)
(add_net /MOSI)
(add_net /PB0)
(add_net /PC3)
(add_net /PD6)
(add_net /PD7)
(add_net /RENC_A)
(add_net /RENC_B)
(add_net /ROT_PULSE)
(add_net /RST)
(add_net /RX)
(add_net /SCK)
(add_net /SCL)
(add_net /SDA)
(add_net /SEG_CS)
(add_net /SW1)
(add_net /TRIAC_DRIVE)
(add_net /TX)
(add_net /ZCROSS_PULSE)
(add_net GND)
(add_net "Net-(BR1-Pad1)")
(add_net "Net-(BR1-Pad2)")
(add_net "Net-(BR1-Pad3)")
(add_net "Net-(C10-Pad1)")
(add_net "Net-(C10-Pad2)")
(add_net "Net-(C14-Pad2)")
(add_net "Net-(C15-Pad1)")
(add_net "Net-(C15-Pad2)")
(add_net "Net-(C7-Pad1)")
(add_net "Net-(C8-Pad1)")
(add_net "Net-(C9-Pad1)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(J5-Pad1)")
(add_net "Net-(J5-Pad2)")
(add_net "Net-(J5-Pad3)")
(add_net "Net-(J6-Pad1)")
(add_net "Net-(Q1-Pad3)")
(add_net "Net-(R10-Pad2)")
(add_net "Net-(R14-Pad1)")
(add_net "Net-(R15-Pad1)")
(add_net "Net-(R19-Pad1)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(R3-Pad1)")
(add_net "Net-(R6-Pad1)")
(add_net "Net-(R9-Pad1)")
(add_net "Net-(TRIAC1-Pad3)")
(add_net "Net-(U3-Pad11)")
(add_net "Net-(U5-Pad3)")
(add_net "Net-(U5-Pad5)")
(add_net VCC)
)
(net_class VAC ""
(clearance 1.5)
(trace_width 1.2)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /VAC_L)
(add_net /VAC_N)
(add_net "Net-(C11-Pad1)")
(add_net "Net-(C11-Pad2)")
)
(module Buttons_Switches_ThroughHole:SW_PUSH_6mm (layer F.Cu) (tedit 5923F252) (tstamp 593935E8)
(at 110.744 55.626 180)
(descr https://www.omron.com/ecb/products/pdf/en-b3f.pdf)
(tags "tact sw push 6mm")
(path /59387C9F)
(fp_text reference SW2 (at 3.2512 2.2352 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_SPST (at 3.75 6.7 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -1) (end 1 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer F.SilkS) (width 0.12))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer F.SilkS) (width 0.12))
(fp_line (start 8 -1.25) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 6) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end 8 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.25 2.25 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 6.5 0 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 /RST))
(pad 2 thru_hole circle (at 6.5 4.5 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 55 "Net-(R19-Pad1)"))
(pad 1 thru_hole circle (at 0 0 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 27 /RST))
(pad 2 thru_hole circle (at 0 4.5 270) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 55 "Net-(R19-Pad1)"))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm.wrl
(at (xyz 0.005 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Angled_2x05_Pitch2.54mm (layer F.Cu) (tedit 58CD4EC5) (tstamp 58F2DAFF)
(at 108.7755 60.3885)
(descr "Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows")
(tags "Through hole angled pin header THT 2x05 2.54mm double row")
(path /58F251A0)
(fp_text reference J2 (at 0.0635 -2.3495) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value AUX/CONTROL (at 9.3345 5.1435 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.94 -1.27) (end 3.94 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 1.27) (end 6.44 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 1.27) (end 6.44 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 -1.27) (end 3.94 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.32) (end 12.44 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 0.32) (end 12.44 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 1.27) (end 3.94 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 3.81) (end 6.44 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 3.81) (end 6.44 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 1.27) (end 3.94 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.86) (end 12.44 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 2.86) (end 12.44 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 3.81) (end 3.94 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 6.35) (end 6.44 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 6.35) (end 6.44 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 3.81) (end 3.94 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.4) (end 12.44 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 5.4) (end 12.44 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 6.35) (end 3.94 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 8.89) (end 6.44 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 8.89) (end 6.44 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 6.35) (end 3.94 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.3) (end 0 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.94) (end 12.44 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 7.94) (end 12.44 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 7.3) (end 0 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 8.89) (end 3.94 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 3.94 11.43) (end 6.44 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 11.43) (end 6.44 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 6.44 8.89) (end 3.94 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 0 9.84) (end 0 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 0 10.48) (end 12.44 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 10.48) (end 12.44 9.84) (layer F.Fab) (width 0.1))
(fp_line (start 12.44 9.84) (end 0 9.84) (layer F.Fab) (width 0.1))
(fp_line (start 3.88 -1.33) (end 3.88 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 1.27) (end 6.5 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 1.27) (end 6.5 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -1.33) (end 3.88 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -0.38) (end 6.5 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 0.38) (end 12.5 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 0.38) (end 12.5 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 -0.38) (end 6.5 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 -0.38) (end 3.88 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 0.38) (end 3.88 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -0.38) (end 1.63 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.38) (end 1.63 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -0.26) (end 12.5 -0.26) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -0.14) (end 12.5 -0.14) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -0.02) (end 12.5 -0.02) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 0.1) (end 12.5 0.1) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 0.22) (end 12.5 0.22) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 0.34) (end 12.5 0.34) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 1.27) (end 3.88 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 3.81) (end 6.5 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 3.81) (end 6.5 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 1.27) (end 3.88 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 2.16) (end 6.5 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 2.92) (end 12.5 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 2.92) (end 12.5 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 2.16) (end 6.5 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 2.16) (end 3.88 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 2.92) (end 3.88 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.16) (end 1.63 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.92) (end 1.63 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 3.81) (end 3.88 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 6.35) (end 6.5 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 6.35) (end 6.5 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 3.81) (end 3.88 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 4.7) (end 6.5 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 5.46) (end 12.5 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 5.46) (end 12.5 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 4.7) (end 6.5 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 4.7) (end 3.88 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 5.46) (end 3.88 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 4.7) (end 1.63 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 5.46) (end 1.63 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 6.35) (end 3.88 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 8.89) (end 6.5 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 8.89) (end 6.5 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 6.35) (end 3.88 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 7.24) (end 6.5 8) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 8) (end 12.5 8) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 8) (end 12.5 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 7.24) (end 6.5 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 7.24) (end 3.88 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 8) (end 3.88 8) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 7.24) (end 1.63 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 8) (end 1.63 8) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 8.89) (end 3.88 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 3.88 11.49) (end 6.5 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 11.49) (end 6.5 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 8.89) (end 3.88 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 9.78) (end 6.5 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 10.54) (end 12.5 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 10.54) (end 12.5 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 12.5 9.78) (end 6.5 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 9.78) (end 3.88 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 3.45 10.54) (end 3.88 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 9.78) (end 1.63 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 10.54) (end 1.63 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 12.95 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 12.95 11.95) (end 12.95 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 12.95 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.585 -2.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 /SCL))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 VCC))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 /SDA))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 51 /PC3))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 /RX))
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 /TX))
(pad 7 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 52 /PB0))
(pad 8 thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(pad 9 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 38 /PD6))
(pad 10 thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 /PD7))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Angled_2x05_Pitch2.54mm.wrl
(at (xyz 0.05 -0.2 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59392C2F)
(at 88.9 61.722 270)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm")
(path /59387E1D)
(fp_text reference R19 (at 3.8608 -0.0508 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 360 (at -2.6416 -0.6604 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 5 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 55 "Net-(R19-Pad1)"))
(model Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Angled_1x03_Pitch2.54mm (layer F.Cu) (tedit 58CD4EC1) (tstamp 58F2DE8C)
(at 69.6595 93.4085 180)
(descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x03 2.54mm single row")
(path /58F20706)
(fp_text reference J6 (at 3.1115 7.8105 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 4.315 7.35 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.4 -1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 3.9 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 -1.27) (end 1.4 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.32) (end 9.9 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 0.32) (end 9.9 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 1.27) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 3.9 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 1.27) (end 1.4 1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.86) (end 9.9 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.86) (end 9.9 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 3.81) (end 1.4 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.4 6.35) (end 3.9 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 6.35) (end 3.9 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 3.9 3.81) (end 1.4 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.4) (end 9.9 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 5.4) (end 9.9 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 9.9 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 1.34 -1.33) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 3.96 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -1.33) (end 1.34 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.38) (end 3.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.38) (end 9.96 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 0.38) (end 9.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 -0.38) (end 3.96 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -0.38) (end 1.34 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.38) (end 1.34 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.26) (end 9.96 -0.26) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.14) (end 9.96 -0.14) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -0.02) (end 9.96 -0.02) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.1) (end 9.96 0.1) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.22) (end 9.96 0.22) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 0.34) (end 9.96 0.34) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 1.27) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 3.96 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 1.27) (end 1.34 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.16) (end 3.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 2.92) (end 9.96 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.92) (end 9.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 2.16) (end 3.96 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.16) (end 1.34 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 2.92) (end 1.34 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 3.81) (end 1.34 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 1.34 6.41) (end 3.96 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 6.41) (end 3.96 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 3.81) (end 1.34 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 4.7) (end 3.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 5.46) (end 9.96 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 5.46) (end 9.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 9.96 4.7) (end 3.96 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 4.7) (end 1.34 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 5.46) (end 1.34 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 10.4 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 6.85) (end 10.4 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.4 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 4.315 -2.27 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(J6-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 /ROT_PULSE))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Angled_1x03_Pitch2.54mm.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module iotta_footprints:JUMPER_PIN (layer F.Cu) (tedit 58F34C99) (tstamp 592107F9)
(at 70.1675 55.118)
(path /58F34CD2)
(fp_text reference J8 (at 0 0.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value VCC_JUMPER (at 0 -0.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 VCC))
)
(module w_misc_comp:encoder_alps-ec12d (layer F.Cu) (tedit 58F36AFC) (tstamp 58F2F596)
(at 80.4545 59.2455)
(descr "12mm rotary encoder, Alps EC12D")
(tags encoder)
(path /58F17210)
(autoplace_cost180 10)
(fp_text reference SW1 (at 0.0635 0.5715) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Rotary_Encoder_Switch (at 0 -7.80034) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.20014 -6.59892) (end -6.20014 6.59892) (layer F.SilkS) (width 0.381))
(fp_line (start 6.20014 -6.59892) (end -6.20014 -6.59892) (layer F.SilkS) (width 0.381))
(fp_line (start 6.20014 6.59892) (end 6.20014 -6.59892) (layer F.SilkS) (width 0.381))
(fp_line (start -6.20014 6.59892) (end 6.20014 6.59892) (layer F.SilkS) (width 0.381))
(fp_circle (center 0 0) (end -3.40106 0) (layer F.SilkS) (width 0.381))
(fp_circle (center 0 0) (end -2.99974 0) (layer F.SilkS) (width 0.381))
(fp_line (start -2.60096 -1.50114) (end 2.60096 -1.50114) (layer F.SilkS) (width 0.381))
(fp_circle (center -4.09956 -5.10032) (end -4.50088 -5.10032) (layer F.SilkS) (width 0.381))
(fp_circle (center 4.09956 -5.10032) (end 3.70078 -5.10032) (layer F.SilkS) (width 0.381))
(fp_circle (center -4.09956 5.10032) (end -4.50088 5.10032) (layer F.SilkS) (width 0.381))
(fp_circle (center 4.09956 5.10032) (end 4.50088 5.10032) (layer F.SilkS) (width 0.381))
(pad 4 thru_hole oval (at 2.49936 -7.00024) (size 1.50114 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 8 /SW1))
(pad 5 thru_hole oval (at -2.49936 -7.00024) (size 1.50114 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 13 VCC))
(pad "" thru_hole circle (at 6.20014 0) (size 3.50012 3.50012) (drill 2.19964) (layers *.Cu *.Mask F.SilkS))
(pad "" thru_hole circle (at -6.20014 0) (size 3.50012 3.50012) (drill 2.19964) (layers *.Cu *.Mask F.SilkS))
(pad 3 thru_hole oval (at 2.49936 7.50062) (size 1.50114 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 53 "Net-(R14-Pad1)"))
(pad 2 thru_hole oval (at 0 7.50062) (size 1.50114 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 5 GND))
(pad 1 thru_hole oval (at -2.49936 7.50062) (size 1.50114 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 54 "Net-(R15-Pad1)"))
(model walter/misc_comp/encoder_alps-ec12d.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module iotta_footprints:CASE_KEMO_G085N+BREAKAWAY_SENSOR locked (layer F.Cu) (tedit 58F377B5) (tstamp 5920F78B)
(at 55.316 164.94)
(path /58F16C0B)
(fp_text reference CASE1 (at -21 -1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Case (at -16 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 45.5 -116.5) (end 45 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 45.5 -116.5) (end 45.5 -116) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -124) (end 39 -124) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -124) (end 39.5 -124.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -118.5) (end 39 -118.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -118.5) (end 39.5 -119) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -121.5) (end 40 -121.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -121.5) (end 39.5 -121) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -127) (end 40 -127) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 39.5 -127) (end 39.5 -126.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 16.5 -116.5) (end 16.5 -116) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 16.5 -116.5) (end 16 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 58.5 -116.5) (end 58.5 -116) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 58.5 -116.5) (end 58 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 55.5 -116.5) (end 55.5 -117) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 55.5 -116.5) (end 56 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 13.5 -116.5) (end 14 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 13.5 -116.5) (end 13.5 -117) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 32.5 -116.5) (end 32.5 -117) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 32.5 -116.5) (end 33 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 35.5 -116.5) (end 35.5 -116) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 35.5 -116.5) (end 35 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 42.5 -116.5) (end 43 -116.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 42.5 -116.5) (end 42.5 -117) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_line (start 42.5 -117) (end 42.5 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 13.5 -116) (end 9 -116) (layer Edge.Cuts) (width 0.15))
(fp_line (start 42.5 -116) (end 35.5 -116) (layer Edge.Cuts) (width 0.15))
(fp_line (start 32.5 -116) (end 16.5 -116) (layer Edge.Cuts) (width 0.15))
(fp_line (start 55.5 -116) (end 45.5 -116) (layer Edge.Cuts) (width 0.15))
(fp_line (start 61 -116) (end 58.5 -116) (layer Edge.Cuts) (width 0.15))
(fp_line (start 55.5 -117) (end 45.5 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 61 -117) (end 58.5 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 40 -128.5) (end 40 -127) (layer Edge.Cuts) (width 0.15))
(fp_line (start 40 -118.5) (end 40 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 40 -124) (end 40 -121.5) (layer Edge.Cuts) (width 0.15))
(fp_line (start 42.5 -117) (end 40 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 32.5 -117) (end 16.5 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 39 -117) (end 35.5 -117) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 10 -118) (end 10 -117) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 10 -127.5) (end 9 -127.5) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_line (start 39 -118.5) (end 39 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 39 -124) (end 39 -121.5) (layer Edge.Cuts) (width 0.15))
(fp_line (start 39 -128.5) (end 39 -127) (layer Edge.Cuts) (width 0.15))
(fp_line (start 61 -128.5) (end 40 -128.5) (layer Edge.Cuts) (width 0.15))
(fp_line (start 13.5 -117) (end 10 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 61 -128.5) (end 61 -117) (layer Edge.Cuts) (width 0.15))
(fp_line (start 10 -128.5) (end 39 -128.5) (layer Edge.Cuts) (width 0.15))
(fp_line (start 9 -118) (end 9 -127.5) (layer Edge.Cuts) (width 0.15))
(fp_circle (center 66 -4) (end 67.25 -4) (layer F.Fab) (width 0.15))
(fp_circle (center 4 -4) (end 5.25 -4) (layer F.Fab) (width 0.15))
(fp_circle (center 4 -116) (end 5.25 -116) (layer F.Fab) (width 0.15))
(fp_arc (start 66 -116) (end 66 -112) (angle 90) (layer F.Fab) (width 0.15))
(fp_arc (start 4 -116) (end 8 -116) (angle 90) (layer F.Fab) (width 0.15))
(fp_arc (start 4 -4) (end 4 -8) (angle 90) (layer F.Fab) (width 0.15))
(fp_line (start 0 -4) (end 0 -116) (layer F.Fab) (width 0.15))
(fp_arc (start 4 -116) (end 0 -116) (angle 90) (layer F.Fab) (width 0.15))
(fp_line (start 4 -120) (end 66 -120) (layer F.Fab) (width 0.15))
(fp_arc (start 66 -116) (end 66 -120) (angle 90) (layer F.Fab) (width 0.15))
(fp_line (start 70 -116) (end 70 -4) (layer F.Fab) (width 0.15))
(fp_arc (start 66 -4) (end 70 -4) (angle 90) (layer F.Fab) (width 0.15))
(fp_line (start 66 0) (end 4 0) (layer F.Fab) (width 0.15))
(fp_arc (start 4 -4) (end 4 0) (angle 90) (layer F.Fab) (width 0.15))
(fp_arc (start 66 -4) (end 62 -4) (angle 90) (layer F.Fab) (width 0.15))
(fp_line (start 62 -117) (end 8 -117) (layer F.Fab) (width 0.15))
(fp_line (start 8 -117) (end 8 -116) (layer F.Fab) (width 0.15))
(fp_line (start 4 -112) (end 3 -112) (layer F.Fab) (width 0.15))
(fp_line (start 3 -112) (end 3 -8) (layer F.Fab) (width 0.15))
(fp_line (start 3 -8) (end 4 -8) (layer F.Fab) (width 0.15))
(fp_line (start 8 -4) (end 8 -3) (layer F.Fab) (width 0.15))
(fp_line (start 8 -3) (end 62 -3) (layer F.Fab) (width 0.15))
(fp_line (start 62 -3) (end 62 -4) (layer F.Fab) (width 0.15))
(fp_line (start 66 -8) (end 67 -8) (layer F.Fab) (width 0.15))
(fp_line (start 67 -8) (end 67 -112) (layer F.Fab) (width 0.15))
(fp_line (start 67 -112) (end 66 -112) (layer F.Fab) (width 0.15))
(fp_line (start 62 -116) (end 62 -117) (layer F.Fab) (width 0.15))
(fp_arc (start 4 -116) (end 9 -116) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 66 -116) (end 66 -111) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 66 -4) (end 61 -4) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_arc (start 4 -4) (end 4 -9) (angle 90) (layer Edge.Cuts) (width 0.15))
(fp_line (start 9 -4) (end 61 -4) (layer Edge.Cuts) (width 0.15))
(fp_line (start 66 -9) (end 66 -111) (layer Edge.Cuts) (width 0.15))
(fp_line (start 4 -111) (end 4 -9) (layer Edge.Cuts) (width 0.15))
(fp_circle (center 66 -116) (end 67.25 -116) (layer F.Fab) (width 0.15))
(pad "" np_thru_hole circle (at 37.5 -120.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 32.5 -120.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 32.5 -125.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 37.5 -125.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 57.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 56.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 44.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 43.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 39.5 -126) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 39.5 -125) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 39.5 -120.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 39.5 -119.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 34.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 33.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 15.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 14.5 -116.5) (size 0.5 0.5) (drill 0.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 60 -110) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 10 -110) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 10 -10) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 60 -10) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 60 -60) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 10 -60) (size 3 3) (drill 3) (layers *.Cu *.Mask)
(clearance 1.75))
(pad "" np_thru_hole circle (at 48 -125.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 43 -125.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 48 -120.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 43 -120.5) (size 2 2) (drill 2) (layers *.Cu *.Mask))
)
(module Capacitors_ThroughHole:C_Rect_L7.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 58765D05) (tstamp 58F300FD)
(at 79.883 71.6915 270)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor")
(path /58F1C311)
(fp_text reference C13 (at 2.4765 -0.0165 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100n (at 8.5725 0.127 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.35 -1.6) (end -1.35 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.35 1.6) (end 6.35 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.35 1.6) (end 6.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.06 -1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 -1.31) (end -1.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 -1.31) (end 6.06 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -1.25) (end -1 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6 1.25) (end 6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 1.25) (end 6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 -1.25) (end -1 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 VCC))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(model Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 58F2F9EF)
(at 76.9747 71.2597 270)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm")
(path /58F1AECF)
(fp_text reference R14 (at 4.0005 -0.0635 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at -2.1717 0.0127 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12))
(fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 53 "Net-(R14-Pad1)"))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 13 VCC))
(model Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 58F2F82F)
(at 74.549 71.2597 270)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm")
(path /58F1AF4F)
(fp_text reference R15 (at 4.0005 -0.0635 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at -2.1717 -0.127 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 13 VCC))
(pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 54 "Net-(R15-Pad1)"))
(model Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 59203989)
(at 82.804 71.3105 270)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.16666666666666666W = 1/6W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.16666666666666666W = 1/6W length 3.6mm diameter 1.6mm")
(path /591DA5C4)
(fp_text reference R18 (at 3.81 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2k2 (at -2.2225 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.6 -1.15) (end -0.95 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.6 1.15) (end 8.6 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.15) (end 8.6 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.15) (end -0.95 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.74 0) (end 5.67 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.88 0) (end 1.95 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 -0.86) (end 1.95 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 0.86) (end 5.67 -0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 0.86) (end 5.67 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 1.95 -0.86) (end 1.95 0.86) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 6 /RENC_A))
(pad 1 thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 54 "Net-(R15-Pad1)"))
(model Resistors_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Crystals:Crystal_HC49-U_Vertical (layer F.Cu) (tedit 58CD2E9C) (tstamp 58F2FEB7)
(at 89.587 76.5283 270)
(descr "Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf")
(tags "THT crystalHC-49/U")
(path /58F2C410)
(fp_text reference Y1 (at 2.3387 -0.075 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 16MHz (at 6.7837 3.481 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.44 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.685 -2.325) (end 5.565 -2.325) (layer F.Fab) (width 0.1))
(fp_line (start -0.685 2.325) (end 5.565 2.325) (layer F.Fab) (width 0.1))
(fp_line (start -0.56 -2) (end 5.44 -2) (layer F.Fab) (width 0.1))
(fp_line (start -0.56 2) (end 5.44 2) (layer F.Fab) (width 0.1))
(fp_line (start -0.685 -2.525) (end 5.565 -2.525) (layer F.SilkS) (width 0.12))
(fp_line (start -0.685 2.525) (end 5.565 2.525) (layer F.SilkS) (width 0.12))
(fp_line (start -3.5 -2.8) (end -3.5 2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.5 2.8) (end 8.4 2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.4 2.8) (end 8.4 -2.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.4 -2.8) (end -3.5 -2.8) (layer F.CrtYd) (width 0.05))
(fp_arc (start -0.685 0) (end -0.685 -2.325) (angle -180) (layer F.Fab) (width 0.1))
(fp_arc (start 5.565 0) (end 5.565 -2.325) (angle 180) (layer F.Fab) (width 0.1))
(fp_arc (start -0.56 0) (end -0.56 -2) (angle -180) (layer F.Fab) (width 0.1))
(fp_arc (start 5.44 0) (end 5.44 -2) (angle 180) (layer F.Fab) (width 0.1))
(fp_arc (start -0.685 0) (end -0.685 -2.525) (angle -180) (layer F.SilkS) (width 0.12))
(fp_arc (start 5.565 0) (end 5.565 -2.525) (angle 180) (layer F.SilkS) (width 0.12))
(pad 1 thru_hole circle (at 0 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "Net-(C7-Pad1)"))
(pad 2 thru_hole circle (at 4.88 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "Net-(C9-Pad1)"))
(model ${KISYS3DMOD}/Crystals.3dshapes/Crystal_HC49-U_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Rect_L7.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 58765D05) (tstamp 59203F13)
(at 78.232 90.297)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor")
(path /591DA6A8)
(fp_text reference C16 (at 2.5 0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47n (at 8.128 0.127) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 -1.25) (end -1 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 1.25) (end 6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6 1.25) (end 6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6 -1.25) (end -1 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1.06 -1.31) (end 6.06 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 -1.31) (end -1.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 6.06 -1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.35 1.6) (end 6.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.35 1.6) (end 6.35 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.35 -1.6) (end -1.35 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(pad 2 thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 /RENC_A))
(model Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Rect_L7.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 58765D05) (tstamp 59203EDF)
(at 78.232 87.0585)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor")
(path /591DA742)
(fp_text reference C17 (at 2.54 0.0635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47n (at 0.254 -2.2225) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.35 -1.6) (end -1.35 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.35 1.6) (end 6.35 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.35 1.6) (end 6.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.06 -1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 -1.31) (end -1.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 1.31) (end 6.06 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start -1.06 -1.31) (end 6.06 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -1.25) (end -1 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6 1.25) (end 6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 1.25) (end 6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 -1.25) (end -1 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 /RENC_B))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(model Capacitors_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)