-
Notifications
You must be signed in to change notification settings - Fork 0
/
copy.kicad_pcb-bak
1077 lines (1054 loc) · 66.8 KB
/
copy.kicad_pcb-bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20171130) (host pcbnew "(5.1.9-0-10_14)")
(general
(thickness 1.6)
(drawings 63)
(tracks 109)
(zones 0)
(modules 15)
(nets 17)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user hide)
(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 hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.2)
(user_trace_width 0.4)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 GND)
(net 2 VCC)
(net 3 "Net-(C1-Pad2)")
(net 4 "Net-(C2-Pad2)")
(net 5 PIN-RST)
(net 6 PIN-SCK)
(net 7 PIN-MISO)
(net 8 PIN-MOSI)
(net 9 PIN-SCL)
(net 10 PIN-SDA)
(net 11 PIN-DQ)
(net 12 PIN-BTN-MODE)
(net 13 PIN-BTN-MINUS)
(net 14 PIN-BTN-PLUS)
(net 15 "Net-(D1-Pad2)")
(net 16 "Net-(R3-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 GND)
(add_net "Net-(C1-Pad2)")
(add_net "Net-(C2-Pad2)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(R3-Pad1)")
(add_net PIN-BTN-MINUS)
(add_net PIN-BTN-MODE)
(add_net PIN-BTN-PLUS)
(add_net PIN-DQ)
(add_net PIN-MISO)
(add_net PIN-MOSI)
(add_net PIN-RST)
(add_net PIN-SCK)
(add_net PIN-SCL)
(add_net PIN-SDA)
(add_net VCC)
)
(module Connector:LCD_Feather (layer F.Cu) (tedit 6403A7AC) (tstamp 6403DB17)
(at 92.71 63.246 90)
(descr "Through hole straight pin header, 2x16, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x16 2.54mm double row")
(path /64059638)
(fp_text reference LCD (at 0 -3.556 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LCD_Feather (at 17.78 34.29 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 -6.35) (end 21.59 -6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 21.59 -6.35) (end 21.59 44.45) (layer F.SilkS) (width 0.12))
(fp_line (start 21.59 44.45) (end -1.27 44.45) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 44.45) (end -1.27 -6.35) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 17.78 2.54 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 VCC))
(pad 4 thru_hole oval (at 20.32 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 PIN-SCL))
(pad 3 thru_hole oval (at 20.32 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 PIN-SDA))
(pad 2 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 5 thru_hole circle (at 20.32 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 6 thru_hole circle (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x16_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector:PushButton5mm (layer F.Cu) (tedit 64039225) (tstamp 6403DB5D)
(at 129.286 86.36)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /6406A5EF)
(fp_text reference SW2 (at 1.5 -4) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 3 4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2 2 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 13 PIN-BTN-MINUS))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector:PushButton5mm (layer F.Cu) (tedit 640391F2) (tstamp 6403DB69)
(at 122.174 86.36)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /6406B3AA)
(fp_text reference SW3 (at 1.5 -4) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 3 4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2 2 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 14 PIN-BTN-PLUS))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector:PushButton5mm (layer F.Cu) (tedit 64039188) (tstamp 6403DB51)
(at 112.776 86.36)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /6406336A)
(fp_text reference SW1 (at 1.5 -4) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_Push (at 3 4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2 2 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.5 1.5) (drill 0.7) (layers *.Cu *.Mask)
(net 12 PIN-BTN-MODE))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 64038F9E) (tstamp 6403DB0A)
(at 154.686 87.884 270)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(path /64037738)
(fp_text reference J1 (at 0 -2.33 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Port (at 0 15.03 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 6.35) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 6 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 PIN-RST))
(pad 5 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 PIN-SCK))
(pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 PIN-MISO))
(pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 PIN-MOSI))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 VCC))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Battery:BatteryHolder_Keystone_3002_1x2032 (layer F.Cu) (tedit 64038EE1) (tstamp 6403DAD2)
(at 99.06 78.74 180)
(descr https://www.tme.eu/it/Document/a823211ec201a9e209042d155fe22d2b/KEYS2996.pdf)
(tags "BR2016 CR2016 DL2016 BR2020 CL2020 BR2025 CR2025 DL2025 DR2032 CR2032 DL2032")
(path /63D8E0EA)
(attr smd)
(fp_text reference BT1 (at -9.15 9.7 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "3V Coin" (at 0 -11 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 15.55 -2.75) (end 10.75 -2.75) (layer F.SilkS) (width 0.12))
(fp_line (start 15.55 2.75) (end 15.55 -2.75) (layer F.SilkS) (width 0.12))
(fp_line (start 10.75 2.75) (end 15.55 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start -15.55 2.75) (end -10.75 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start -15.55 -2.75) (end -15.55 2.75) (layer F.SilkS) (width 0.12))
(fp_line (start -10.75 -2.75) (end -15.55 -2.75) (layer F.SilkS) (width 0.12))
(fp_line (start -15.85 3.05) (end -15.85 -3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.05 3.05) (end -15.85 3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.05 6.35) (end -11.05 3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.3 11.1) (end -11.05 6.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.3 11.1) (end -4.3 11.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.05 6.35) (end 4.3 11.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.05 3.05) (end 11.05 6.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.85 3.05) (end 11.05 3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.85 -3.05) (end 15.85 3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.05 -3.05) (end 15.85 -3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.05 -9.8) (end 11.05 -3.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.05 -9.8) (end 3.9 -9.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.05 -9.8) (end -3.9 -9.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -11.05 -3.05) (end -11.05 -9.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -15.85 -3.05) (end -11.05 -3.05) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 10 0) (layer Dwgs.User) (width 0.2))
(fp_line (start 10.55 5.9) (end 3.8 10.6) (layer F.Fab) (width 0.1))
(fp_line (start -10.55 5.85) (end -3.8 10.6) (layer F.Fab) (width 0.1))
(fp_line (start -10.55 -2.55) (end -10.55 -9.3) (layer F.Fab) (width 0.1))
(fp_line (start 10.55 -9.3) (end -10.55 -9.3) (layer F.Fab) (width 0.1))
(fp_line (start 10.55 -2.55) (end 10.55 -9.3) (layer F.Fab) (width 0.1))
(fp_line (start 15.35 -2.55) (end 10.55 -2.55) (layer F.Fab) (width 0.1))
(fp_line (start 15.35 2.55) (end 15.35 -2.55) (layer F.Fab) (width 0.1))
(fp_line (start 10.55 2.55) (end 15.35 2.55) (layer F.Fab) (width 0.1))
(fp_line (start -3.8 10.6) (end 3.8 10.6) (layer F.Fab) (width 0.1))
(fp_line (start 10.55 2.55) (end 10.55 5.9) (layer F.Fab) (width 0.1))
(fp_line (start -10.55 2.55) (end -10.55 5.85) (layer F.Fab) (width 0.1))
(fp_line (start -15.35 -2.55) (end -10.55 -2.55) (layer F.Fab) (width 0.1))
(fp_line (start -15.35 2.55) (end -10.55 2.55) (layer F.Fab) (width 0.1))
(fp_line (start -15.35 -2.55) (end -15.35 2.55) (layer F.Fab) (width 0.1))
(fp_arc (start 0 0) (end 3.9 -9.8) (angle -43.40107348) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at -9.15 9.7 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 smd circle (at 0 0 180) (size 17.8 17.8) (layers F.Cu F.Mask)
(net 1 GND))
(pad 1 smd rect (at -12.8 0 180) (size 5.1 5.1) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 1 smd rect (at 12.8 0 180) (size 5.1 5.1) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model ${KISYS3DMOD}/Battery.3dshapes/BatteryHolder_Keystone_3002_1x2032.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 6403F9D4)
(at 84.328 65.786 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6409FDC2)
(fp_text reference R3 (at -2.54 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 5.08 2.37 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(D1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R3-Pad1)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_THT:LED_D2.0mm_W4.0mm_H2.8mm_FlatTop (layer F.Cu) (tedit 5880A862) (tstamp 6403F91B)
(at 84.328 50.038 270)
(descr "LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf")
(tags "LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins")
(path /6409ED50)
(fp_text reference D1 (at -2.794 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LED (at 1.27 2.46 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 1.27 0) (end 2.27 0) (layer F.Fab) (width 0.1))
(fp_line (start -0.73 -1.4) (end -0.73 1.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.73 1.4) (end 3.27 1.4) (layer F.Fab) (width 0.1))
(fp_line (start 3.27 1.4) (end 3.27 -1.4) (layer F.Fab) (width 0.1))
(fp_line (start 3.27 -1.4) (end -0.73 -1.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.79 -1.46) (end 3.33 -1.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.79 1.46) (end 3.33 1.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.79 -1.46) (end -0.79 -1.08) (layer F.SilkS) (width 0.12))
(fp_line (start -0.79 1.08) (end -0.79 1.46) (layer F.SilkS) (width 0.12))
(fp_line (start 3.33 -1.46) (end 3.33 -0.825) (layer F.SilkS) (width 0.12))
(fp_line (start 3.33 0.825) (end 3.33 1.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.67 -1.46) (end -0.67 -1.08) (layer F.SilkS) (width 0.12))
(fp_line (start -0.67 1.08) (end -0.67 1.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.55 -1.46) (end -0.55 -1.08) (layer F.SilkS) (width 0.12))
(fp_line (start -0.55 1.08) (end -0.55 1.46) (layer F.SilkS) (width 0.12))
(fp_line (start -1.15 -1.75) (end -1.15 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.15 1.75) (end 3.7 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.7 1.75) (end 3.7 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.7 -1.75) (end -1.15 -1.75) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D2.0mm_W4.0mm_H2.8mm_FlatTop.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Crystal:Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal (layer F.Cu) (tedit 64037E05) (tstamp 6403DBC8)
(at 152.654 51.562 180)
(descr "Crystal THT C38-LF 8.0mm length 3.0mm diameter")
(tags ['C38-LF'])
(path /63D97EB5)
(fp_text reference XTAL (at -1.778 4.318 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 32kHz (at 3.97 2.25 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.55 2.5) (end -0.55 10.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.55 10.5) (end 2.45 10.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.45 10.5) (end 2.45 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.45 2.5) (end -0.55 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.405 2.5) (end 0 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 1.25) (end 0 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.495 2.5) (end 1.9 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.9 1.25) (end 1.9 0) (layer F.Fab) (width 0.1))
(fp_line (start -0.75 2.3) (end -0.75 10.7) (layer F.SilkS) (width 0.12))
(fp_line (start -0.75 10.7) (end 2.65 10.7) (layer F.SilkS) (width 0.12))
(fp_line (start 2.65 10.7) (end 2.65 2.3) (layer F.SilkS) (width 0.12))
(fp_line (start 2.65 2.3) (end -0.75 2.3) (layer F.SilkS) (width 0.12))
(fp_line (start 0.405 2.3) (end 0 1.15) (layer F.SilkS) (width 0.12))
(fp_line (start 0 1.15) (end 0 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.495 2.3) (end 1.9 1.15) (layer F.SilkS) (width 0.12))
(fp_line (start 1.9 1.15) (end 1.9 0.7) (layer F.SilkS) (width 0.12))
(fp_line (start -1.3 -0.8) (end -1.3 11.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 11.3) (end 3.2 11.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.2 11.3) (end 3.2 -0.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.2 -0.8) (end -1.3 -0.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.25 6.5 90) (layer F.Fab)
(effects (font (size 0.7 0.7) (thickness 0.105)))
)
(pad 2 thru_hole circle (at 0 0 180) (size 1 1) (drill 0.5) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad2)"))
(pad 1 thru_hole circle (at 1.905 0 180) (size 1 1) (drill 0.5) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)"))
(model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_THT:TO-92_Inline_Wide (layer F.Cu) (tedit 5A02FF81) (tstamp 6403DBAD)
(at 155.702 64.516 180)
(descr "TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /6405CC84)
(fp_text reference U2 (at 4.702 -2.984) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DS18B20 (at 2.54 2.79) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.01 -2.73) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.01 -2.73) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_arc (start 2.54 0) (end 4.34 1.85) (angle -20) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle 65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle -65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 0.74 1.85) (angle 20) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 24.384 0.254 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 3 thru_hole circle (at 5.08 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 2 VCC))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 11 PIN-DQ))
(model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-92_Inline_Wide.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_DIP:DIP-28_W7.62mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 6403DB99)
(at 147.955 74.549 180)
(descr "28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(path /63D8B760)
(fp_text reference U1 (at 4.699 0.889) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ATmega88V-10PU (at 3.81 35.35) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 34.29) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 34.29) (end 0.635 34.29) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 34.29) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 -1.33) (end 1.16 34.35) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 34.35) (end 6.46 34.35) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 34.35) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.1 -1.55) (end -1.1 34.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 34.55) (end 8.7 34.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 34.55) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 3.81 16.51) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(pad 28 thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 PIN-SCL))
(pad 14 thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 27 thru_hole oval (at 7.62 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 PIN-SDA))
(pad 13 thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 26 thru_hole oval (at 7.62 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 PIN-BTN-PLUS))
(pad 12 thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 25 thru_hole oval (at 7.62 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 PIN-BTN-MINUS))
(pad 11 thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 24 thru_hole oval (at 7.62 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 10 thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)"))
(pad 23 thru_hole oval (at 7.62 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 PIN-BTN-MODE))
(pad 9 thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad2)"))
(pad 22 thru_hole oval (at 7.62 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 8 thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 21 thru_hole oval (at 7.62 17.78 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 7 thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 VCC))
(pad 20 thru_hole oval (at 7.62 20.32 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 6 thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 19 thru_hole oval (at 7.62 22.86 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 PIN-SCK))
(pad 5 thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 18 thru_hole oval (at 7.62 25.4 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 PIN-MISO))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 17 thru_hole oval (at 7.62 27.94 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 PIN-MOSI))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 16 thru_hole oval (at 7.62 30.48 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 PIN-DQ))
(pad 15 thru_hole oval (at 7.62 33.02 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R3-Pad1)"))
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 PIN-RST))
(model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-28_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 6403DB45)
(at 154.178 68.834 270)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /6405E32E)
(fp_text reference R2 (at 12.446 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 5k (at 5.08 2.37 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 VCC))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 PIN-DQ))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 6403DB2E)
(at 149.352 78.994 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /63D92D6A)
(fp_text reference R1 (at 5.08 -2.37) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at 5.08 2.37) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 5.08 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 PIN-RST))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 VCC))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 6403DAF0)
(at 151.13 57.404 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(path /63D99A49)
(fp_text reference C2 (at -2.096 0.12) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 6pF (at 1.27 1.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0.8 0) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 0.92 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.92 0) (end 1.54 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.05) (end 3.49 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.49 1.05) (end 3.49 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 -1.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)"))
(pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 6403DAE1)
(at 153.924 57.404 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(path /63D990C6)
(fp_text reference C1 (at -2.096 0.076) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 6pF (at 1.27 1.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0.8 0) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 0.92 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.92 0) (end 1.54 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.05) (end -1.05 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.05) (end 3.49 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.49 1.05) (end 3.49 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 -1.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 2.54 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "Net-(C1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 120 75.5) (end 134.25 75.5) (layer F.SilkS) (width 0.4))
(gr_text "CALIBRATE ME!" (at 126.975 77.425) (layer F.SilkS) (tstamp 6415E9CA)
(effects (font (size 1.32 1.32) (thickness 0.17)))
)
(gr_line (start 125.35 73.375) (end 125.15 73.7) (layer F.SilkS) (width 0.4) (tstamp 6415E6F5))
(gr_line (start 132.196622 67.278843) (end 132.3 68) (layer F.SilkS) (width 0.4) (tstamp 6415E8C1))
(gr_line (start 133.218619 68.105105) (end 133 69.2) (layer F.SilkS) (width 0.4) (tstamp 6415E8BE))
(gr_line (start 131.19899 68.105105) (end 131.5 69.2) (layer F.SilkS) (width 0.4) (tstamp 6415E8BB))
(gr_line (start 132.213629 70.116522) (end 132.218474 73.5) (layer F.SilkS) (width 0.4) (tstamp 6415E89D))
(gr_line (start 134.2 73.6) (end 130.229506 73.597569) (layer F.SilkS) (width 0.4) (tstamp 6415E88D))
(gr_line (start 133.9 72.604539) (end 130.472184 72.606243) (layer F.SilkS) (width 0.4) (tstamp 6415E88A))
(gr_line (start 133.740423 70.209165) (end 133.739451 71.721059) (layer F.SilkS) (width 0.4) (tstamp 6415E85F))
(gr_line (start 130.700972 70.188106) (end 130.7 71.7) (layer F.SilkS) (width 0.4) (tstamp 6415E842))
(gr_line (start 133.704333 71.782059) (end 130.709774 71.783763) (layer F.SilkS) (width 0.4) (tstamp 6415E826))
(gr_line (start 133.7 70.901799) (end 130.705441 70.903503) (layer F.SilkS) (width 0.4) (tstamp 6415E824))
(gr_line (start 133.7 70.1) (end 130.705441 70.101704) (layer F.SilkS) (width 0.4) (tstamp 6415E821))
(gr_line (start 134.1 69.286029) (end 130.395427 69.286029) (layer F.SilkS) (width 0.4) (tstamp 6415E81E))
(gr_line (start 133.8 68.028728) (end 130.578904 68.028728) (layer F.SilkS) (width 0.4) (tstamp 6415E81B))
(gr_line (start 129.888444 68.415082) (end 129 67.7) (layer F.SilkS) (width 0.4) (tstamp 6415E7F1))
(gr_line (start 129 67.3) (end 128.518474 68.1) (layer F.SilkS) (width 0.4) (tstamp 6415E7AC))
(gr_line (start 128.5 68.1) (end 127.7 69.1) (layer F.SilkS) (width 0.4) (tstamp 6415E7A8))
(gr_line (start 129.707705 71.367609) (end 129.707705 72.4) (layer F.SilkS) (width 0.4) (tstamp 6415E7A6))
(gr_line (start 128.1 71.367609) (end 128.1 72.4) (layer F.SilkS) (width 0.4) (tstamp 6415E79E))
(gr_line (start 129.8 70.573204) (end 127.859082 70.573204) (layer F.SilkS) (width 0.4) (tstamp 6415E774))
(gr_line (start 129.7 69.358675) (end 128.19188 69.358675) (layer F.SilkS) (width 0.4) (tstamp 6415E756))
(gr_line (start 129.8 73.1) (end 127.858923 73.415935) (layer F.SilkS) (width 0.4) (tstamp 6415E71F))
(gr_line (start 128.895155 69.420387) (end 128.9 73.2) (layer F.SilkS) (width 0.4) (tstamp 6415E71C))
(gr_line (start 125.1 73.706549) (end 124.2 73.7) (layer F.SilkS) (width 0.4) (tstamp 6415E6FD))
(gr_line (start 123.6 72.8) (end 122.9 72) (layer F.SilkS) (width 0.4) (tstamp 6415E6F9))
(gr_line (start 125.360459 69.843865) (end 125.342265 73.4) (layer F.SilkS) (width 0.4) (tstamp 6415E6F2))
(gr_line (start 124.418194 67.393021) (end 124.4 69.7) (layer F.SilkS) (width 0.4) (tstamp 6415E6EE))
(gr_line (start 126.374816 71.207882) (end 122.496405 71.207882) (layer F.SilkS) (width 0.4) (tstamp 6415E6DF))
(gr_line (start 126.4 69.77154) (end 122.521589 69.77154) (layer F.SilkS) (width 0.4) (tstamp 6415E6DC))
(gr_line (start 126 68.371961) (end 122.826618 68.371961) (layer F.SilkS) (width 0.4) (tstamp 6415E6D9))
(gr_line (start 120.4 70.2) (end 121.7 70.2) (layer F.SilkS) (width 0.4))
(gr_line (start 120.3 68) (end 120.3 72.7) (layer F.SilkS) (width 0.4))
(gr_line (start 121.8 68) (end 120.3 68) (layer F.SilkS) (width 0.4))
(gr_line (start 121.8 72.7) (end 121.8 68) (layer F.SilkS) (width 0.4))
(gr_line (start 120.3 72.7) (end 121.8 72.7) (layer F.SilkS) (width 0.4))
(gr_text DN (at 131.75 83.75) (layer F.SilkS) (tstamp 64041ABA)
(effects (font (size 1.5 1.5) (thickness 0.15)))
)
(gr_text UP (at 124.75 83.75) (layer F.SilkS) (tstamp 64041A63)
(effects (font (size 1.5 1.5) (thickness 0.15)))
)
(gr_text MODE (at 115.25 83.75) (layer F.SilkS) (tstamp 640419FB)
(effects (font (size 1.5 1.5) (thickness 0.15)))
)
(gr_line (start 135 91) (end 158 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 118.5 91) (end 121.5 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 135 88) (end 135 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 121.5 88) (end 135 88) (layer Edge.Cuts) (width 0.05))
(gr_line (start 121.5 91) (end 121.5 88) (layer Edge.Cuts) (width 0.05))
(gr_line (start 118.5 88) (end 118.5 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 112 88) (end 118.5 88) (layer Edge.Cuts) (width 0.05))
(gr_line (start 112 91) (end 112 88) (layer Edge.Cuts) (width 0.05))
(gr_text "RST\n\nSCK\n\nMISO\n\nMOSI\n\nVCC\n\nGND\n" (at 148.336 86.106 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.15)) (justify left))
)
(gr_text + (at 113.792 73.914) (layer F.SilkS) (tstamp 640417A1)
(effects (font (size 1.5 1.5) (thickness 0.15)))
)
(gr_text + (at 84.328 73.914) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.15)))
)
(gr_line (start 158 83) (end 158 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 161 83) (end 158 83) (layer Edge.Cuts) (width 0.05))
(gr_line (start 158 47) (end 161 47) (layer Edge.Cuts) (width 0.05))
(gr_line (start 158 39) (end 158 47) (layer Edge.Cuts) (width 0.05))
(gr_line (start 82 83) (end 82 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 79 83) (end 82 83) (layer Edge.Cuts) (width 0.05))
(gr_line (start 82 47) (end 82 39) (layer Edge.Cuts) (width 0.05))
(gr_line (start 79 47) (end 82 47) (layer Edge.Cuts) (width 0.05))
(gr_line (start 79 83) (end 79 47) (layer Edge.Cuts) (width 0.05))
(gr_line (start 112 91) (end 82 91) (layer Edge.Cuts) (width 0.05))
(gr_line (start 161 47) (end 161 83) (layer Edge.Cuts) (width 0.05))
(gr_line (start 82 39) (end 158 39) (layer Edge.Cuts) (width 0.05))
(segment (start 148.59 57.404) (end 147.955 56.769) (width 0.2) (layer B.Cu) (net 1))
(segment (start 151.13 57.404) (end 148.59 57.404) (width 0.2) (layer B.Cu) (net 1))
(segment (start 153.924 57.404) (end 151.13 57.404) (width 0.2) (layer B.Cu) (net 1))
(segment (start 153.924 62.738) (end 155.702 64.516) (width 0.2) (layer B.Cu) (net 1))
(segment (start 153.924 57.404) (end 153.924 62.738) (width 0.2) (layer B.Cu) (net 1))
(segment (start 155.702 86.868) (end 154.686 87.884) (width 0.2) (layer B.Cu) (net 1))
(segment (start 155.702 64.516) (end 155.702 86.868) (width 0.2) (layer B.Cu) (net 1))
(segment (start 154.686 87.884) (end 148.844 82.042) (width 0.2) (layer F.Cu) (net 1))
(segment (start 148.844 82.042) (end 138.176 82.042) (width 0.2) (layer F.Cu) (net 1))
(segment (start 138.176 82.042) (end 138.176 82.042) (width 0.2) (layer F.Cu) (net 1) (tstamp 640412FC))
(via (at 138.176 82.042) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 138.176 82.042) (end 136.144 84.074) (width 0.2) (layer B.Cu) (net 1))
(segment (start 136.144 84.074) (end 136.144 84.074) (width 0.2) (layer B.Cu) (net 1) (tstamp 64041303))
(via (at 136.144 84.074) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 104.394 84.074) (end 99.06 78.74) (width 0.2) (layer F.Cu) (net 1))
(segment (start 136.144 84.502) (end 136.144 84.074) (width 0.2) (layer B.Cu) (net 1))
(segment (start 117.776 86.36) (end 117.776 84.154) (width 0.2) (layer F.Cu) (net 1))
(segment (start 117.776 84.154) (end 117.856 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 117.856 84.074) (end 104.394 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 127.174 84.154) (end 127.254 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 127.254 84.074) (end 117.856 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 127.174 86.36) (end 127.174 84.154) (width 0.2) (layer F.Cu) (net 1))
(segment (start 134.286 86.36) (end 134.286 84.248) (width 0.2) (layer F.Cu) (net 1))
(segment (start 134.112 84.074) (end 127.254 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 134.286 84.248) (end 134.112 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 136.144 84.074) (end 134.112 84.074) (width 0.2) (layer F.Cu) (net 1))
(segment (start 87.122 50.038) (end 100.33 63.246) (width 0.2) (layer F.Cu) (net 1))
(segment (start 84.328 50.038) (end 87.122 50.038) (width 0.2) (layer F.Cu) (net 1))
(segment (start 100.33 77.47) (end 99.06 78.74) (width 0.2) (layer F.Cu) (net 1))
(segment (start 100.33 63.246) (end 100.33 77.47) (width 0.2) (layer F.Cu) (net 1))
(segment (start 150.622 61.976) (end 150.622 64.516) (width 0.2) (layer B.Cu) (net 2))
(segment (start 147.955 59.309) (end 150.622 61.976) (width 0.2) (layer B.Cu) (net 2))
(segment (start 150.622 77.724) (end 149.352 78.994) (width 0.2) (layer B.Cu) (net 2))
(segment (start 150.622 64.516) (end 150.622 77.724) (width 0.2) (layer B.Cu) (net 2))
(segment (start 149.352 78.994) (end 154.178 78.994) (width 0.2) (layer B.Cu) (net 2))
(segment (start 152.146 87.884) (end 152.146 86.106) (width 0.2) (layer B.Cu) (net 2))
(segment (start 154.178 84.074) (end 154.178 78.994) (width 0.2) (layer B.Cu) (net 2))
(segment (start 152.146 86.106) (end 154.178 84.074) (width 0.2) (layer B.Cu) (net 2))
(segment (start 141.433999 86.733999) (end 133.44 78.74) (width 0.2) (layer F.Cu) (net 2))
(segment (start 150.995999 86.733999) (end 141.433999 86.733999) (width 0.2) (layer F.Cu) (net 2))
(segment (start 133.44 78.74) (end 111.86 78.74) (width 0.2) (layer F.Cu) (net 2))
(segment (start 152.146 87.884) (end 150.995999 86.733999) (width 0.2) (layer F.Cu) (net 2))
(segment (start 86.26 72.236) (end 95.25 63.246) (width 0.2) (layer F.Cu) (net 2))
(segment (start 86.26 78.74) (end 86.26 72.236) (width 0.2) (layer F.Cu) (net 2))
(segment (start 95.25 63.246) (end 98.298 60.198) (width 0.2) (layer B.Cu) (net 2))
(segment (start 98.298 60.198) (end 102.108 60.198) (width 0.2) (layer B.Cu) (net 2))
(segment (start 102.108 60.198) (end 105.029 63.119) (width 0.2) (layer B.Cu) (net 2))
(segment (start 105.029 63.119) (end 105.156 63.246) (width 0.2) (layer B.Cu) (net 2) (tstamp 6404130A))
(via (at 105.029 63.119) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 111.86 69.95) (end 111.86 78.74) (width 0.2) (layer F.Cu) (net 2))
(segment (start 105.029 63.119) (end 111.86 69.95) (width 0.2) (layer F.Cu) (net 2))
(segment (start 150.786999 53.429001) (end 152.654 51.562) (width 0.2) (layer F.Cu) (net 3))
(segment (start 148.754999 53.429001) (end 150.786999 53.429001) (width 0.2) (layer F.Cu) (net 3))
(segment (start 147.955 54.229) (end 148.754999 53.429001) (width 0.2) (layer F.Cu) (net 3))
(segment (start 153.924 52.832) (end 152.654 51.562) (width 0.2) (layer B.Cu) (net 3))
(segment (start 153.924 54.864) (end 153.924 52.832) (width 0.2) (layer B.Cu) (net 3))
(segment (start 150.622 51.689) (end 150.749 51.562) (width 0.2) (layer F.Cu) (net 4))
(segment (start 147.955 51.689) (end 150.622 51.689) (width 0.2) (layer F.Cu) (net 4))
(segment (start 151.13 54.864) (end 151.13 54.356) (width 0.2) (layer B.Cu) (net 4))
(segment (start 150.749 53.975) (end 150.749 51.562) (width 0.2) (layer B.Cu) (net 4))
(segment (start 151.13 54.356) (end 150.749 53.975) (width 0.2) (layer B.Cu) (net 4))
(segment (start 139.192 85.09) (end 141.986 87.884) (width 0.2) (layer B.Cu) (net 5))
(segment (start 139.192 78.994) (end 139.192 85.09) (width 0.2) (layer B.Cu) (net 5))
(segment (start 143.51 78.994) (end 147.955 74.549) (width 0.2) (layer F.Cu) (net 5))
(segment (start 139.192 78.994) (end 143.51 78.994) (width 0.2) (layer F.Cu) (net 5))
(segment (start 140.335 51.689) (end 144.272 55.626) (width 0.2) (layer B.Cu) (net 6))
(segment (start 144.272 87.63) (end 144.526 87.884) (width 0.2) (layer B.Cu) (net 6))
(segment (start 144.272 55.626) (end 144.272 87.63) (width 0.2) (layer B.Cu) (net 6))
(segment (start 140.335 49.149) (end 144.78 53.594) (width 0.2) (layer B.Cu) (net 7))
(segment (start 144.78 53.594) (end 144.78 80.518) (width 0.2) (layer B.Cu) (net 7))
(segment (start 147.066 82.804) (end 147.066 87.884) (width 0.2) (layer B.Cu) (net 7))
(segment (start 144.78 80.518) (end 147.066 82.804) (width 0.2) (layer B.Cu) (net 7))
(segment (start 145.288 78.486) (end 149.606 82.804) (width 0.2) (layer B.Cu) (net 8))
(segment (start 145.288 51.562) (end 145.288 78.486) (width 0.2) (layer B.Cu) (net 8))
(segment (start 149.606 82.804) (end 149.606 87.884) (width 0.2) (layer B.Cu) (net 8))
(segment (start 140.335 46.609) (end 145.288 51.562) (width 0.2) (layer B.Cu) (net 8))
(segment (start 137.983301 74.549) (end 140.335 74.549) (width 0.2) (layer F.Cu) (net 9))
(segment (start 128.27 64.835699) (end 137.983301 74.549) (width 0.2) (layer F.Cu) (net 9))
(segment (start 128.27 42.926) (end 128.27 64.835699) (width 0.2) (layer F.Cu) (net 9))
(segment (start 136.009 72.009) (end 140.335 72.009) (width 0.2) (layer F.Cu) (net 10))
(segment (start 128.75 62) (end 128.75 64.75) (width 0.2) (layer F.Cu) (net 10))
(segment (start 130.81 59.94) (end 128.75 62) (width 0.2) (layer F.Cu) (net 10))
(segment (start 128.75 64.75) (end 136.009 72.009) (width 0.2) (layer F.Cu) (net 10))
(segment (start 130.81 42.926) (end 130.81 59.94) (width 0.2) (layer F.Cu) (net 10))
(segment (start 153.162 67.818) (end 154.178 68.834) (width 0.2) (layer B.Cu) (net 11))
(segment (start 153.162 64.516) (end 153.162 67.818) (width 0.2) (layer B.Cu) (net 11))
(segment (start 151.003 72.009) (end 154.178 68.834) (width 0.2) (layer F.Cu) (net 11))
(segment (start 147.955 72.009) (end 151.003 72.009) (width 0.2) (layer F.Cu) (net 11))
(segment (start 112.776 86.36) (end 137.414 61.722) (width 0.2) (layer B.Cu) (net 12))
(segment (start 140.208 61.722) (end 140.335 61.849) (width 0.2) (layer B.Cu) (net 12))
(segment (start 137.414 61.722) (end 140.208 61.722) (width 0.2) (layer B.Cu) (net 12))
(segment (start 129.286 86.36) (end 129.286 76.454) (width 0.2) (layer B.Cu) (net 13))
(segment (start 138.811 66.929) (end 140.335 66.929) (width 0.2) (layer B.Cu) (net 13))
(segment (start 129.286 76.454) (end 138.811 66.929) (width 0.2) (layer B.Cu) (net 13))
(segment (start 122.174 86.36) (end 127.254 81.28) (width 0.2) (layer B.Cu) (net 14))
(segment (start 127.254 81.28) (end 128.016 81.28) (width 0.2) (layer B.Cu) (net 14))
(segment (start 128.016 81.28) (end 128.016 81.28) (width 0.2) (layer B.Cu) (net 14) (tstamp 64041305))
(via (at 128.016 81.28) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 128.016 81.28) (end 130.302 81.28) (width 0.2) (layer F.Cu) (net 14))
(segment (start 130.302 81.28) (end 130.302 81.28) (width 0.2) (layer F.Cu) (net 14) (tstamp 64041307))
(via (at 130.302 81.28) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 130.302 81.28) (end 130.302 77.47) (width 0.2) (layer B.Cu) (net 14))
(segment (start 138.303 69.469) (end 140.335 69.469) (width 0.2) (layer B.Cu) (net 14))
(segment (start 130.302 77.47) (end 138.303 69.469) (width 0.2) (layer B.Cu) (net 14))
(segment (start 84.328 52.578) (end 84.328 55.626) (width 0.2) (layer B.Cu) (net 15))
(segment (start 140.335 41.529) (end 132.842 49.022) (width 0.2) (layer B.Cu) (net 16))
(segment (start 132.842 49.022) (end 99.314 49.022) (width 0.2) (layer B.Cu) (net 16))
(segment (start 84.328 64.008) (end 84.328 65.786) (width 0.2) (layer B.Cu) (net 16))
(segment (start 99.314 49.022) (end 84.328 64.008) (width 0.2) (layer B.Cu) (net 16))
(zone (net 1) (net_name GND) (layer B.Cu) (tstamp 64041315) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 156.464 52.832) (xy 156.464 58.42) (xy 154.94 59.69) (xy 150.622 59.69) (xy 148.844 57.912)
(xy 146.05 57.912) (xy 146.05 50.292) (xy 149.352 50.292) (xy 150.114 49.276) (xy 153.416 49.276)
)
)
(filled_polygon
(pts
(xy 156.337 52.878981) (xy 156.337 58.360517) (xy 154.89402 59.563) (xy 150.674606 59.563) (xy 149.436875 58.325269)
(xy 150.388336 58.325269) (xy 150.447797 58.559037) (xy 150.686242 58.669934) (xy 150.94174 58.732183) (xy 151.204473 58.74339)
(xy 151.464344 58.703125) (xy 151.711366 58.612935) (xy 151.812203 58.559037) (xy 151.871664 58.325269) (xy 153.182336 58.325269)
(xy 153.241797 58.559037) (xy 153.480242 58.669934) (xy 153.73574 58.732183) (xy 153.998473 58.74339) (xy 154.258344 58.703125)
(xy 154.505366 58.612935) (xy 154.606203 58.559037) (xy 154.665664 58.325269) (xy 153.924 57.583605) (xy 153.182336 58.325269)
(xy 151.871664 58.325269) (xy 151.13 57.583605) (xy 150.388336 58.325269) (xy 149.436875 58.325269) (xy 148.933803 57.822197)
(xy 148.9263 57.81604) (xy 149.018519 57.732414) (xy 149.186037 57.50642) (xy 149.199245 57.478473) (xy 149.79061 57.478473)
(xy 149.830875 57.738344) (xy 149.921065 57.985366) (xy 149.974963 58.086203) (xy 150.208731 58.145664) (xy 150.950395 57.404)
(xy 151.309605 57.404) (xy 152.051269 58.145664) (xy 152.285037 58.086203) (xy 152.395934 57.847758) (xy 152.458183 57.59226)
(xy 152.463036 57.478473) (xy 152.58461 57.478473) (xy 152.624875 57.738344) (xy 152.715065 57.985366) (xy 152.768963 58.086203)
(xy 153.002731 58.145664) (xy 153.744395 57.404) (xy 154.103605 57.404) (xy 154.845269 58.145664) (xy 155.079037 58.086203)
(xy 155.189934 57.847758) (xy 155.252183 57.59226) (xy 155.26339 57.329527) (xy 155.223125 57.069656) (xy 155.132935 56.822634)
(xy 155.079037 56.721797) (xy 154.845269 56.662336) (xy 154.103605 57.404) (xy 153.744395 57.404) (xy 153.002731 56.662336)
(xy 152.768963 56.721797) (xy 152.658066 56.960242) (xy 152.595817 57.21574) (xy 152.58461 57.478473) (xy 152.463036 57.478473)
(xy 152.46939 57.329527) (xy 152.429125 57.069656) (xy 152.338935 56.822634) (xy 152.285037 56.721797) (xy 152.051269 56.662336)
(xy 151.309605 57.404) (xy 150.950395 57.404) (xy 150.208731 56.662336) (xy 149.974963 56.721797) (xy 149.864066 56.960242)
(xy 149.801817 57.21574) (xy 149.79061 57.478473) (xy 149.199245 57.478473) (xy 149.306246 57.252087) (xy 149.346904 57.118039)
(xy 149.224915 56.896) (xy 148.082 56.896) (xy 148.082 56.916) (xy 147.828 56.916) (xy 147.828 56.896)
(xy 146.685085 56.896) (xy 146.563096 57.118039) (xy 146.603754 57.252087) (xy 146.723963 57.50642) (xy 146.891481 57.732414)
(xy 146.94947 57.785) (xy 146.177 57.785) (xy 146.177 50.419) (xy 147.272759 50.419) (xy 147.040241 50.574363)
(xy 146.840363 50.774241) (xy 146.68332 51.009273) (xy 146.575147 51.270426) (xy 146.52 51.547665) (xy 146.52 51.830335)
(xy 146.575147 52.107574) (xy 146.68332 52.368727) (xy 146.840363 52.603759) (xy 147.040241 52.803637) (xy 147.272759 52.959)
(xy 147.040241 53.114363) (xy 146.840363 53.314241) (xy 146.68332 53.549273) (xy 146.575147 53.810426) (xy 146.52 54.087665)
(xy 146.52 54.370335) (xy 146.575147 54.647574) (xy 146.68332 54.908727) (xy 146.840363 55.143759) (xy 147.040241 55.343637)
(xy 147.275273 55.50068) (xy 147.285865 55.505067) (xy 147.099869 55.616615) (xy 146.891481 55.805586) (xy 146.723963 56.03158)
(xy 146.603754 56.285913) (xy 146.563096 56.419961) (xy 146.685085 56.642) (xy 147.828 56.642) (xy 147.828 56.622)
(xy 148.082 56.622) (xy 148.082 56.642) (xy 149.224915 56.642) (xy 149.346904 56.419961) (xy 149.306246 56.285913)
(xy 149.186037 56.03158) (xy 149.018519 55.805586) (xy 148.810131 55.616615) (xy 148.624135 55.505067) (xy 148.634727 55.50068)
(xy 148.869759 55.343637) (xy 149.069637 55.143759) (xy 149.22668 54.908727) (xy 149.334853 54.647574) (xy 149.39 54.370335)
(xy 149.39 54.087665) (xy 149.334853 53.810426) (xy 149.22668 53.549273) (xy 149.069637 53.314241) (xy 148.869759 53.114363)
(xy 148.637241 52.959) (xy 148.869759 52.803637) (xy 149.069637 52.603759) (xy 149.22668 52.368727) (xy 149.334853 52.107574)
(xy 149.39 51.830335) (xy 149.39 51.547665) (xy 149.370616 51.450212) (xy 149.614 51.450212) (xy 149.614 51.673788)
(xy 149.657617 51.893067) (xy 149.743176 52.099624) (xy 149.867388 52.28552) (xy 150.014001 52.432133) (xy 150.014 53.938895)
(xy 150.010444 53.975) (xy 150.024315 54.115839) (xy 149.946939 54.231641) (xy 149.846304 54.474595) (xy 149.795 54.732514)
(xy 149.795 54.995486) (xy 149.846304 55.253405) (xy 149.946939 55.496359) (xy 150.093038 55.715013) (xy 150.278987 55.900962)
(xy 150.497641 56.047061) (xy 150.711444 56.135621) (xy 150.548634 56.195065) (xy 150.447797 56.248963) (xy 150.388336 56.482731)
(xy 151.13 57.224395) (xy 151.871664 56.482731) (xy 151.812203 56.248963) (xy 151.573758 56.138066) (xy 151.554173 56.133294)
(xy 151.762359 56.047061) (xy 151.981013 55.900962) (xy 152.166962 55.715013) (xy 152.313061 55.496359) (xy 152.413696 55.253405)
(xy 152.465 54.995486) (xy 152.465 54.732514) (xy 152.413696 54.474595) (xy 152.313061 54.231641) (xy 152.166962 54.012987)
(xy 151.981013 53.827038) (xy 151.762359 53.680939) (xy 151.519405 53.580304) (xy 151.484 53.573261) (xy 151.484 52.432132)
(xy 151.630612 52.28552) (xy 151.7015 52.179429) (xy 151.772388 52.28552) (xy 151.93048 52.443612) (xy 152.116376 52.567824)
(xy 152.322933 52.653383) (xy 152.542212 52.697) (xy 152.749554 52.697) (xy 153.189001 53.136448) (xy 153.189001 53.749521)
(xy 153.072987 53.827038) (xy 152.887038 54.012987) (xy 152.740939 54.231641) (xy 152.640304 54.474595) (xy 152.589 54.732514)
(xy 152.589 54.995486) (xy 152.640304 55.253405) (xy 152.740939 55.496359) (xy 152.887038 55.715013) (xy 153.072987 55.900962)
(xy 153.291641 56.047061) (xy 153.505444 56.135621) (xy 153.342634 56.195065) (xy 153.241797 56.248963) (xy 153.182336 56.482731)
(xy 153.924 57.224395) (xy 154.665664 56.482731) (xy 154.606203 56.248963) (xy 154.367758 56.138066) (xy 154.348173 56.133294)
(xy 154.556359 56.047061) (xy 154.775013 55.900962) (xy 154.960962 55.715013) (xy 155.107061 55.496359) (xy 155.207696 55.253405)
(xy 155.259 54.995486) (xy 155.259 54.732514) (xy 155.207696 54.474595) (xy 155.107061 54.231641) (xy 154.960962 54.012987)
(xy 154.775013 53.827038) (xy 154.659 53.749521) (xy 154.659 52.868094) (xy 154.662555 52.831999) (xy 154.659 52.795904)
(xy 154.659 52.795895) (xy 154.648365 52.687915) (xy 154.606337 52.549367) (xy 154.538087 52.42168) (xy 154.446238 52.309762)
(xy 154.418193 52.286746) (xy 153.789 51.657554) (xy 153.789 51.450212) (xy 153.745383 51.230933) (xy 153.659824 51.024376)
(xy 153.535612 50.83848) (xy 153.37752 50.680388) (xy 153.191624 50.556176) (xy 152.985067 50.470617) (xy 152.765788 50.427)
(xy 152.542212 50.427) (xy 152.322933 50.470617) (xy 152.116376 50.556176) (xy 151.93048 50.680388) (xy 151.772388 50.83848)
(xy 151.7015 50.944571) (xy 151.630612 50.83848) (xy 151.47252 50.680388) (xy 151.286624 50.556176) (xy 151.080067 50.470617)