-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAMS1117.kicad_pcb
More file actions
1447 lines (1418 loc) · 105 KB
/
Copy pathAMS1117.kicad_pcb
File metadata and controls
1447 lines (1418 loc) · 105 KB
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.10-88a1d61d58~88~ubuntu20.04.1)
(general
(thickness 1.6)
(drawings 26)
(tracks 110)
(zones 0)
(modules 21)
(nets 9)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.1)
(segment_width 0.2)
(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 1.7 1.7)
(pad_drill 1)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFF77F)
(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 +12V)
(net 2 "Net-(C3-Pad1)")
(net 3 "Net-(C4-Pad1)")
(net 4 "Net-(D1-Pad2)")
(net 5 "Net-(D2-Pad2)")
(net 6 GND)
(net 7 +5V)
(net 8 +3V3)
(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 +12V)
(add_net +3V3)
(add_net +5V)
(add_net GND)
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
)
(module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 60E9927C)
(at 140.238 116.157 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /609BB785)
(attr smd)
(fp_text reference C1 (at 0 -1.85) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 0 -1.8428) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 1 +12V))
(pad 2 smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 6 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 60EA1F66)
(at 152.654 116.154 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /609CD42F)
(attr smd)
(fp_text reference C2 (at 0 -1.85) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 0 -1.8458) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 1 +12V))
(pad 2 smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 6 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 60E9929E)
(at 140.238 111.865 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /609BB82D)
(attr smd)
(fp_text reference C3 (at 0 -1.85) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 4.7uF (at 0 -2.1354) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 2 smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 6 GND))
(pad 1 smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 2 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 60EA1FCA)
(at 152.603 111.836 180)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path /609CD435)
(attr smd)
(fp_text reference C4 (at 0 -1.85) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 4.7uF (at 0 -2.1638) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.48 1.15) (end -2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.48 -1.15) (end 2.48 1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.48 1.15) (end -2.48 -1.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 2 smd roundrect (at 1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 6 GND))
(pad 1 smd roundrect (at -1.5625 0 180) (size 1.325 1.8) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.188679)
(net 3 "Net-(C4-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E94F25) (tstamp 60E99329)
(at 144.972 78.0796)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /60E9D9D7)
(fp_text reference J1 (at 1.2173 4.191) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.4205 -3.2004) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_text user "+12v GND" (at 1.2681 4.0386) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +12V))
(pad 2 thru_hole circle (at 2.5 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E94F0A) (tstamp 60E9A831)
(at 141.815 124.279 180)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /609F76CB)
(fp_text reference J3 (at 1.277 -3.2294) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.0611 -2.9881) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_text user "+5v GND" (at 1.5691 3.9842) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 +5V))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E94EFD) (tstamp 60E99369)
(at 153.601 124.279 180)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /609F572B)
(fp_text reference J2 (at 1.2516 -3.2294) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 0.7436 -3.0389) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_text user "+3.3v GND" (at 1.6326 3.8318) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 +3V3))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-223-3_TabPin2 (layer F.Cu) (tedit 5A02FF57) (tstamp 60E9D621)
(at 152.755 90.0842 90)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(path /609C6428)
(attr smd)
(fp_text reference U1 (at -5.6484 0.0004 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value AMS1117-5.0 (at 0 4.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer F.SilkS) (width 0.12))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer F.Fab) (width 0.1))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer F.SilkS) (width 0.12))
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer F.SilkS) (width 0.12))
(fp_text user AMS-5.0 (at -5.7754 -0.025) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd rect (at -3.15 -2.3 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 3 smd rect (at -3.15 2.3 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 1 +12V))
(pad 2 smd rect (at -3.15 0 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 2 "Net-(C3-Pad1)"))
(pad 2 smd rect (at 3.15 0 90) (size 2 3.8) (layers F.Cu F.Paste F.Mask)
(net 2 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:SOT-223-3_TabPin2 (layer F.Cu) (tedit 5A02FF57) (tstamp 60E99395)
(at 140.314 90.1288 90)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(path /609C52B2)
(attr smd)
(fp_text reference U2 (at -5.5276 0.0212 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value AMS1117-3.3 (at 0 4.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.91 3.41) (end 1.91 2.15) (layer F.SilkS) (width 0.12))
(fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer F.SilkS) (width 0.12))
(fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.4 3.6) (end 4.4 3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.85 3.41) (end 1.91 3.41) (layer F.SilkS) (width 0.12))
(fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer F.Fab) (width 0.1))
(fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.85 3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer F.Fab) (width 0.1))
(fp_text user AMS-3.3 (at -5.7054 -0.2836) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 2 smd rect (at 3.15 0 90) (size 2 3.8) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 2 smd rect (at -3.15 0 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C4-Pad1)"))
(pad 3 smd rect (at -3.15 2.3 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 1 +12V))
(pad 1 smd rect (at -3.15 -2.3 90) (size 2 1.5) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Fuse:Fuse_1206_3216Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 60E99BA5)
(at 140.238 107.877)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags fuse)
(path /609C1CF6)
(attr smd)
(fp_text reference F1 (at 0.0212 2.1052) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 750mA (at -0.1058 -2.2001) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 4 "Net-(D1-Pad2)"))
(pad 2 smd roundrect (at 1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 2 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Fuse:Fuse_1206_3216Metric (layer F.Cu) (tedit 5F68FEF1) (tstamp 60E9D5EC)
(at 152.603 107.874)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags fuse)
(path /609CD452)
(attr smd)
(fp_text reference F2 (at 0.0004 2.1336) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 750mA (at 0 1.82) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 2 smd roundrect (at 1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 3 "Net-(C4-Pad1)"))
(pad 1 smd roundrect (at -1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 5 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_SMD:D_SMA (layer F.Cu) (tedit 586432E5) (tstamp 60E99CBC)
(at 140.288 100.841 270)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(path /609D63F3)
(attr smd)
(fp_text reference D1 (at 0 -2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SS14 (at 0 2.6 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer F.Fab) (width 0.1))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer F.Fab) (width 0.1))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1))
(fp_line (start -3.4 1.65) (end 2 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 smd rect (at -2 0 270) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask)
(net 7 +5V))
(pad 2 smd rect (at 2 0 270) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SMA.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_SMD:D_SMA (layer F.Cu) (tedit 586432E5) (tstamp 60E9D5AE)
(at 152.679 100.847 270)
(descr "Diode SMA (DO-214AC)")
(tags "Diode SMA (DO-214AC)")
(path /609D6E92)
(attr smd)
(fp_text reference D2 (at 0 -2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SS14 (at 0 2.6 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.4 -1.65) (end 2 -1.65) (layer F.SilkS) (width 0.12))
(fp_line (start -3.4 1.65) (end 2 1.65) (layer F.SilkS) (width 0.12))
(fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) (layer F.Fab) (width 0.1))
(fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) (layer F.Fab) (width 0.1))
(fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) (layer F.Fab) (width 0.1))
(fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) (layer F.Fab) (width 0.1))
(fp_line (start -3.5 1.75) (end -3.5 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.5 1.75) (end -3.5 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.5 -1.75) (end 3.5 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.5 -1.75) (end 3.5 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.3 -1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.3 -1.5) (end 2.3 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.3 1.5) (end -2.3 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.3 1.5) (end -2.3 1.5) (layer F.Fab) (width 0.1))
(fp_line (start -3.4 -1.65) (end -3.4 1.65) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 0 -2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 smd rect (at 2 0 270) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(D2-Pad2)"))
(pad 1 smd rect (at -2 0 270) (size 2.5 1.8) (layers F.Cu F.Paste F.Mask)
(net 8 +3V3))
(model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SMA.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E955AE) (tstamp 60E9C050)
(at 161.672 111.114 90)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /60EB3B25)
(fp_text reference J4 (at 1.25 -2.8 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.3479 -3.646101 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_text user "+3.3v GND" (at 1.1828 4.189799 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 +3V3))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E94C3C) (tstamp 60E9D25B)
(at 161.672 93.614 90)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /60EB2142)
(fp_text reference J5 (at 1.158 4.138999 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.3866 -3.011101 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_text user "+5v GND" (at 1.0564 3.986599 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 +5V))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E955A4) (tstamp 60EA14A9)
(at 131 111.112 90)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /60EC63BE)
(fp_text reference "+3.3v GND" (at 1.1123 -4 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.25 3.4 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 +3V3))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_JST:JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical (layer F.Cu) (tedit 60E955C0) (tstamp 60EA0D19)
(at 131 93.6625 90)
(descr "JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator")
(tags "connector JST EH vertical")
(path /60EC4C3F)
(fp_text reference "+5v GND" (at 0.6625 -4 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02 (at 1.25 3.4 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -1.6) (end -2.5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.2) (end 5 2.2) (layer F.Fab) (width 0.1))
(fp_line (start 5 2.2) (end 5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 5 -1.6) (end -2.5 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start -3 -2.1) (end -3 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 2.7) (end 5.5 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 2.7) (end 5.5 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.5 -2.1) (end -3 -2.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.61 -1.71) (end -2.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.31) (end 5.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 2.31) (end 5.11 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 -1.71) (end -2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0) (end -2.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 0) (end -2.11 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start -2.11 -1.21) (end 4.61 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 -1.21) (end 4.61 0) (layer F.SilkS) (width 0.12))
(fp_line (start 4.61 0) (end 5.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 0.81) (end -1.61 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start -1.61 0.81) (end -1.61 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start 5.11 0.81) (end 4.11 0.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.11 0.81) (end 4.11 2.31) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.91 0.11) (end -2.91 2.61) (layer F.Fab) (width 0.1))
(fp_line (start -2.91 2.61) (end -0.41 2.61) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 +5V))
(model ${KISYS3DMOD}/Connector_JST.3dshapes/JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module MountingHole:MountingHole_2.5mm_Pad (layer F.Cu) (tedit 56D1B4CB) (tstamp 60EA1703)
(at 163 125)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /60ED4500)
(attr virtual)
(fp_text reference H1 (at 0 -3.5) (layer Dwgs.User) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole (at 0 3.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.75 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.5 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 5 5) (drill 2.5) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.5mm_Pad (layer F.Cu) (tedit 56D1B4CB) (tstamp 60EA170B)
(at 130 125)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /60ED4349)
(attr virtual)
(fp_text reference H2 (at 0 -4) (layer Dwgs.User) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole (at 0 3.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.5 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.75 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 5 5) (drill 2.5) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.5mm_Pad (layer F.Cu) (tedit 56D1B4CB) (tstamp 60EA181D)
(at 130 77)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /60ED4188)
(attr virtual)
(fp_text reference H3 (at 0 4) (layer Dwgs.User) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole (at 0 3.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.75 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 2.5 0) (layer Cmts.User) (width 0.15))
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0) (size 5 5) (drill 2.5) (layers *.Cu *.Mask))
)
(module MountingHole:MountingHole_2.5mm_Pad (layer F.Cu) (tedit 56D1B4CB) (tstamp 60EA19F7)
(at 163 77)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /60ED3DEA)
(attr virtual)
(fp_text reference H4 (at 0 4) (layer Dwgs.User) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole (at 0 3.5) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.5 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.75 0) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 5 5) (drill 2.5) (layers *.Cu *.Mask))
)
(gr_text "ProZ Solutions" (at 137 101 90) (layer B.SilkS)
(effects (font (size 5.7 4) (thickness 0.6)) (justify mirror))
)
(gr_arc (start 128.7464 126.114) (end 125.7464 126.114) (angle -90) (layer F.SilkS) (width 0.15))
(gr_arc (start 163.7464 126.114) (end 163.7464 129.114) (angle -90) (layer F.SilkS) (width 0.15))
(gr_arc (start 163.7464 76.114) (end 166.7464 76.114) (angle -90) (layer F.SilkS) (width 0.15))
(gr_arc (start 128.7464 76.114) (end 128.7464 73.114) (angle -90) (layer F.SilkS) (width 0.15))
(gr_line (start 125.7464 126.114) (end 125.7464 76.114) (layer F.SilkS) (width 0.15))
(gr_line (start 163.7464 129.114) (end 128.7464 129.114) (layer F.SilkS) (width 0.15))
(gr_line (start 166.7464 76.114) (end 166.7464 126.114) (layer F.SilkS) (width 0.15))
(gr_line (start 128.7464 73.114) (end 163.7464 73.114) (layer F.SilkS) (width 0.15))
(gr_arc (start 128.7464 126.114) (end 125.7464 126.114) (angle -90) (layer Dwgs.User) (width 0.15))
(gr_arc (start 163.7464 126.114) (end 163.7464 129.114) (angle -90) (layer Dwgs.User) (width 0.15))
(gr_arc (start 163.7464 76.114) (end 166.7464 76.114) (angle -90) (layer Dwgs.User) (width 0.15))
(gr_line (start 166.7464 77.114) (end 166.7464 76.114) (layer Dwgs.User) (width 0.15))
(gr_arc (start 128.7464 76.114) (end 128.7464 73.114) (angle -90) (layer Dwgs.User) (width 0.15))
(gr_line (start 125.7464 126.114) (end 125.7464 76.114) (layer Dwgs.User) (width 0.15))
(gr_line (start 163.7464 129.114) (end 128.7464 129.114) (layer Dwgs.User) (width 0.15))
(gr_line (start 166.7464 77.114) (end 166.7464 126.114) (layer Dwgs.User) (width 0.15))
(gr_line (start 128.7464 73.114) (end 163.7464 73.114) (layer Dwgs.User) (width 0.15))
(gr_arc (start 128.7464 76.114) (end 128.7464 72.114) (angle -90) (layer Edge.Cuts) (width 0.1))
(gr_arc (start 128.7464 126.114) (end 124.7464 126.114) (angle -90) (layer Edge.Cuts) (width 0.1))
(gr_arc (start 163.7464 126.114) (end 163.7464 130.114) (angle -90) (layer Edge.Cuts) (width 0.1))
(gr_arc (start 163.7464 76.114) (end 167.7464 76.114) (angle -90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 124.7464 126.114) (end 124.7464 76.114) (layer Edge.Cuts) (width 0.1))
(gr_line (start 163.7464 130.114) (end 128.7464 130.114) (layer Edge.Cuts) (width 0.1))
(gr_line (start 167.7464 76.114) (end 167.7464 126.114) (layer Edge.Cuts) (width 0.1))
(gr_line (start 128.7464 72.114) (end 163.7464 72.114) (layer Edge.Cuts) (width 0.1))
(segment (start 154.2165 113.0859) (end 153.538 113.0859) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.538 113.0859) (end 152.603 112.1509) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.603 112.1509) (end 152.603 111.4514) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.603 111.4514) (end 151.7595 110.6079) (width 0.25) (layer F.Cu) (net 1))
(segment (start 151.7595 110.6079) (end 147.3496 110.6079) (width 0.25) (layer F.Cu) (net 1))
(segment (start 147.3496 110.6079) (end 141.8005 116.157) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.9797 93.2342) (end 153.9797 94.3095) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.9797 94.3095) (end 151.4536 96.8356) (width 0.25) (layer F.Cu) (net 1))
(segment (start 151.4536 96.8356) (end 151.4536 100.3098) (width 0.25) (layer F.Cu) (net 1))
(segment (start 151.4536 100.3098) (end 152.3996 101.2558) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.3996 101.2558) (end 153.7162 101.2558) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.7162 101.2558) (end 153.9043 101.4439) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.9043 101.4439) (end 153.9043 105.7414) (width 0.25) (layer F.Cu) (net 1))
(segment (start 153.9043 105.7414) (end 155.1657 107.0028) (width 0.25) (layer F.Cu) (net 1))
(segment (start 155.1657 107.0028) (end 155.1657 112.73) (width 0.25) (layer F.Cu) (net 1))
(segment (start 155.1657 112.73) (end 154.8098 113.0859) (width 0.25) (layer F.Cu) (net 1))
(segment (start 154.8098 113.0859) (end 154.2165 113.0859) (width 0.25) (layer F.Cu) (net 1))
(segment (start 154.2165 113.0859) (end 154.2165 116.154) (width 0.25) (layer F.Cu) (net 1))
(segment (start 142.614 93.2788) (end 142.614 80.4376) (width 0.25) (layer F.Cu) (net 1))
(segment (start 142.614 80.4376) (end 144.972 78.0796) (width 0.25) (layer F.Cu) (net 1))
(segment (start 155.055 93.2342) (end 153.9797 93.2342) (width 0.25) (layer F.Cu) (net 1))
(segment (start 144.972 78.0796) (end 146.1508 76.9008) (width 0.25) (layer F.Cu) (net 1))
(segment (start 146.1508 76.9008) (end 148.0412 76.9008) (width 0.25) (layer F.Cu) (net 1))
(segment (start 148.0412 76.9008) (end 155.055 83.9146) (width 0.25) (layer F.Cu) (net 1))
(segment (start 155.055 83.9146) (end 155.055 93.2342) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.755 86.9342) (end 150.5297 86.9342) (width 0.25) (layer F.Cu) (net 2))
(segment (start 152.2174 93.2342) (end 152.2174 89.9472) (width 0.25) (layer F.Cu) (net 2))
(segment (start 152.2174 89.9472) (end 150.5297 88.2595) (width 0.25) (layer F.Cu) (net 2))
(segment (start 150.5297 88.2595) (end 150.5297 86.9342) (width 0.25) (layer F.Cu) (net 2))
(segment (start 141.638 107.877) (end 146.66 102.855) (width 0.25) (layer F.Cu) (net 2))
(segment (start 146.66 102.855) (end 146.66 100.117) (width 0.25) (layer F.Cu) (net 2))
(segment (start 146.66 100.117) (end 152.2174 94.5596) (width 0.25) (layer F.Cu) (net 2))
(segment (start 152.2174 94.5596) (end 152.2174 93.2342) (width 0.25) (layer F.Cu) (net 2))
(segment (start 152.755 93.2342) (end 152.2174 93.2342) (width 0.25) (layer F.Cu) (net 2))
(segment (start 141.638 107.877) (end 141.8005 108.0395) (width 0.25) (layer F.Cu) (net 2))
(segment (start 141.8005 108.0395) (end 141.8005 111.865) (width 0.25) (layer F.Cu) (net 2))
(segment (start 140.8517 93.2788) (end 140.8517 87.5165) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.8517 87.5165) (end 140.314 86.9788) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.8517 93.2788) (end 141.3893 93.2788) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.314 93.2788) (end 140.8517 93.2788) (width 0.25) (layer F.Cu) (net 3))
(segment (start 152.5102 109.7622) (end 146.3191 109.7622) (width 0.25) (layer F.Cu) (net 3))