-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSU.kicad_pcb-bak
1370 lines (1343 loc) · 101 KB
/
PSU.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.10)-1")
(general
(thickness 1.6)
(drawings 14)
(tracks 61)
(zones 0)
(modules 18)
(nets 14)
)
(page A4)
(title_block
(title "Layout for Variable DC Power Supply with Regulation")
(date 30/12/2021)
(rev Final)
(company XXGurjot07)
)
(layers
(0 F.Cu signal hide)
(31 B.Cu signal hide)
(33 F.Adhes user)
(35 F.Paste 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)
(49 F.Fab user)
)
(setup
(last_trace_width 1.4)
(user_trace_width 1.4)
(user_trace_width 3.5)
(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.5)
(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 7FFFFFFF)
(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 0)
(scaleselection 1)
(outputdirectory "./"))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C3-Pad1)")
(net 4 "Net-(C4-Pad1)")
(net 5 "Net-(D1-Pad2)")
(net 6 "Net-(D1-Pad4)")
(net 7 "Net-(D2-Pad1)")
(net 8 "Net-(J1-Pad2)")
(net 9 "Net-(J2-Pad1)")
(net 10 "Net-(R1-Pad2)")
(net 11 "Net-(R3-Pad1)")
(net 12 "Net-(RV1-Pad2)")
(net 13 "Net-(U2-Pad5)")
(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-Pad1)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D1-Pad4)")
(add_net "Net-(D2-Pad1)")
(add_net "Net-(J1-Pad2)")
(add_net "Net-(J2-Pad1)")
(add_net "Net-(R1-Pad2)")
(add_net "Net-(R3-Pad1)")
(add_net "Net-(RV1-Pad2)")
(add_net "Net-(U2-Pad5)")
)
(module Potentiometer_THT:Potentiometer_Bourns_3299Y_Vertical (layer F.Cu) (tedit 5A3D4994) (tstamp 61CCC559)
(at 209.55 88.9 270)
(descr "Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf")
(tags "Potentiometer vertical Bourns 3299Y")
(path /61D04C22)
(fp_text reference RV1 (at -2.54 -3.16 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0-10k (at -2.54 5.44 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at -2.54 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0.955 2.92) (end 2.05 2.92) (layer F.Fab) (width 0.1))
(fp_line (start -7.305 -1.91) (end -7.305 4.19) (layer F.Fab) (width 0.1))
(fp_line (start -7.305 4.19) (end 2.225 4.19) (layer F.Fab) (width 0.1))
(fp_line (start 2.225 4.19) (end 2.225 -1.91) (layer F.Fab) (width 0.1))
(fp_line (start 2.225 -1.91) (end -7.305 -1.91) (layer F.Fab) (width 0.1))
(fp_line (start 0.955 4.005) (end 0.956 1.836) (layer F.Fab) (width 0.1))
(fp_line (start 0.955 4.005) (end 0.956 1.836) (layer F.Fab) (width 0.1))
(fp_line (start -7.425 -2.03) (end 2.345 -2.03) (layer F.SilkS) (width 0.12))
(fp_line (start -7.425 4.31) (end 2.345 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -7.425 -2.03) (end -7.425 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start 2.345 -2.03) (end 2.345 4.31) (layer F.SilkS) (width 0.12))
(fp_line (start -7.6 -2.2) (end -7.6 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -7.6 4.45) (end 2.5 4.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.5 4.45) (end 2.5 -2.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.5 -2.2) (end -7.6 -2.2) (layer F.CrtYd) (width 0.05))
(pad 3 thru_hole circle (at -5.08 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(R3-Pad1)"))
(pad 2 thru_hole circle (at -2.54 2.54 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(RV1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(D2-Pad1)"))
(model ${KISYS3DMOD}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3299Y_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal (layer F.Cu) (tedit 5B294EE5) (tstamp 61CCB124)
(at 91.44 118.11)
(descr "Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm")
(path /61CF6080)
(fp_text reference J2 (at -2.54 -7.62) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 5 5.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 5 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 0 0) (end -0.684 1.535) (angle -25) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -1.535 -0.684) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 0.684 -1.535) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 1.535 0.684) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 0 1.68) (angle -24) (layer F.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 5 0) (end 6.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 10 0) (end 11.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 10 0) (end 11.68 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -5.2) (end 12.5 -5.2) (layer F.Fab) (width 0.1))
(fp_line (start 12.5 -5.2) (end 12.5 4.6) (layer F.Fab) (width 0.1))
(fp_line (start 12.5 4.6) (end -2 4.6) (layer F.Fab) (width 0.1))
(fp_line (start -2 4.6) (end -2.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 4.1) (end -2.5 -5.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 4.1) (end 12.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 4.1) (end 12.56 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 2.6) (end 12.5 2.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 2.6) (end 12.56 2.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -2.3) (end 12.5 -2.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 -2.301) (end 12.56 -2.301) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end 12.56 -5.261) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 4.66) (end 12.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end -2.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.56 -5.261) (end 12.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 6.138 -0.955) (end 4.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 5.955 -1.138) (end 3.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 3.966 1.239) (end 3.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 8.966 1.239) (end 8.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start -2.8 4.16) (end -2.8 4.9) (layer F.SilkS) (width 0.12))
(fp_line (start -2.8 4.9) (end -2.3 4.9) (layer F.SilkS) (width 0.12))
(fp_line (start -3 -5.71) (end -3 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 5.1) (end 13 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 13 5.1) (end 13 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start 13 -5.71) (end -3 -5.71) (layer F.CrtYd) (width 0.05))
(pad 3 thru_hole circle (at 10 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)"))
(pad 1 thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 9 "Net-(J2-Pad1)"))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal (layer F.Cu) (tedit 5B294EE5) (tstamp 61CCB0EF)
(at 80.01 82.55 270)
(descr "Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm")
(path /61CC0DA9)
(fp_text reference J1 (at -3.81 3.81 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 5 5.66 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 5 3.2 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 0 0) (end -0.684 1.535) (angle -25) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -1.535 -0.684) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 0.684 -1.535) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 1.535 0.684) (angle -48) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 0 1.68) (angle -24) (layer F.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 5 0) (end 6.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 10 0) (end 11.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 10 0) (end 11.68 0) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -5.2) (end 12.5 -5.2) (layer F.Fab) (width 0.1))
(fp_line (start 12.5 -5.2) (end 12.5 4.6) (layer F.Fab) (width 0.1))
(fp_line (start 12.5 4.6) (end -2 4.6) (layer F.Fab) (width 0.1))
(fp_line (start -2 4.6) (end -2.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 4.1) (end -2.5 -5.2) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 4.1) (end 12.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 4.1) (end 12.56 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 2.6) (end 12.5 2.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 2.6) (end 12.56 2.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -2.3) (end 12.5 -2.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 -2.301) (end 12.56 -2.301) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end 12.56 -5.261) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 4.66) (end 12.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end -2.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.56 -5.261) (end 12.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 6.138 -0.955) (end 4.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 5.955 -1.138) (end 3.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 3.966 1.239) (end 3.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 8.966 1.239) (end 8.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start -2.8 4.16) (end -2.8 4.9) (layer F.SilkS) (width 0.12))
(fp_line (start -2.8 4.9) (end -2.3 4.9) (layer F.SilkS) (width 0.12))
(fp_line (start -3 -5.71) (end -3 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 5.1) (end 13 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 13 5.1) (end 13 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start 13 -5.71) (end -3 -5.71) (layer F.CrtYd) (width 0.05))
(pad 3 thru_hole circle (at 10 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 5 "Net-(D1-Pad2)"))
(pad 2 thru_hole circle (at 5 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 8 "Net-(J1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 6 "Net-(D1-Pad4)"))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal.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 61CCFBE7)
(at 74.93 121.92)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /61E0A4C0)
(attr virtual)
(fp_text reference H2 (at 0 -3.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_Pad (at 0 3.5) (layer F.Fab)
(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)
(net 4 "Net-(C4-Pad1)"))
)
(module MountingHole:MountingHole_2.5mm_Pad (layer F.Cu) (tedit 56D1B4CB) (tstamp 61CCFBDF)
(at 212.09 68.58)
(descr "Mounting Hole 2.5mm")
(tags "mounting hole 2.5mm")
(path /61E09FA5)
(attr virtual)
(fp_text reference H1 (at 0 -3.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_Pad (at 0 3.5) (layer F.Fab)
(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)
(net 1 GND))
)
(module Display_7Segment:CA56-12SYKWA (layer F.Cu) (tedit 5A02FE84) (tstamp 61CCCFCB)
(at 128.27 120.65 90)
(descr "4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf")
(tags "4 digit 7 segment green LED")
(path /61CC8C17)
(fp_text reference MES1 (at 0 -20 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Voltmeter_DC (at 3.8 32.8 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.88 1) (end -1.88 31.5) (layer F.Fab) (width 0.1))
(fp_line (start -1.88 31.5) (end 17.12 31.5) (layer F.Fab) (width 0.1))
(fp_line (start 17.12 -18.8) (end 17.12 31.5) (layer F.Fab) (width 0.1))
(fp_line (start -1.88 -18.8) (end 17.12 -18.8) (layer F.Fab) (width 0.1))
(fp_line (start -2.38 -1) (end -2.38 1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.13 31.75) (end -2.13 -19.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.37 31.75) (end -2.13 31.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.37 -19.05) (end 17.37 31.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.13 -19.05) (end 17.37 -19.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.88 -1) (end -1.88 -18.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.88 0) (end -1.88 -1) (layer F.Fab) (width 0.1))
(fp_line (start -1.88 1) (end -0.88 0) (layer F.Fab) (width 0.1))
(fp_line (start 17.24 31.62) (end 17.24 -18.92) (layer F.SilkS) (width 0.12))
(fp_line (start -2 31.62) (end 17.24 31.62) (layer F.SilkS) (width 0.12))
(fp_line (start -2 -18.92) (end -2 31.62) (layer F.SilkS) (width 0.12))
(fp_line (start -2 -18.92) (end 17.24 -18.92) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 8.128 6.604 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 12 thru_hole circle (at 15.24 0 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 11 thru_hole circle (at 15.24 2.54 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 10 thru_hole circle (at 15.24 5.08 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 9 thru_hole circle (at 15.24 7.62 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 8 thru_hole circle (at 15.24 10.16 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 7 thru_hole circle (at 15.24 12.7 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 6 thru_hole circle (at 0 12.7 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 5 thru_hole circle (at 0 10.16 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 0 7.62 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 3 thru_hole circle (at 0 5.08 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 0 2.54 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)"))
(pad 1 thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Display_7Segment.3dshapes/CA56-12SYKWA.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:C_Radial_D18.0mm_H35.5mm_P7.50mm (layer F.Cu) (tedit 5BC5C9BA) (tstamp 61CC7694)
(at 181.61 114.3 180)
(descr "C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor")
(tags "C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor")
(path /61D1A8E2)
(fp_text reference C4 (at 3.75 -10.25) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value >2200uF (at 3.75 10.25) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 3.75 0) (end 13 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 3.75 0) (end 12.87 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 3.75 0) (end 12.75 0) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.75 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 7.5 0 180) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Radial_D18.0mm_H35.5mm_P7.50mm.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_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 61CC784F)
(at 201.93 74.93 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 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 Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
(path /61D05B9B)
(fp_text reference R3 (at 3.81 -1.92 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1k (at 3.81 1.92 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.81 0 90) (layer F.Fab)
(effects (font (size 0.72 0.72) (thickness 0.108)))
)
(pad 2 thru_hole oval (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 11 "Net-(R3-Pad1)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:C_Radial_D4.0mm_H5.0mm_P1.50mm (layer F.Cu) (tedit 5BC5C9B9) (tstamp 61CC768A)
(at 176.53 87.63 270)
(descr "C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor")
(tags "C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor")
(path /61CC98D1)
(fp_text reference C3 (at 0.75 -3.25 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 47u (at 0.75 3.25 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0.75 0) (end 3 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0.75 0) (end 2.87 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 0.75 0) (end 2.75 0) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0.75 0 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 2 thru_hole circle (at 1.5 0 270) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 3 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Radial_D4.0mm_H5.0mm_P1.50mm.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_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 61CC7821)
(at 166.37 85.09 180)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 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 Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
(path /61CC48A7)
(fp_text reference R1 (at 3.81 -1.92) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220 (at 3.81 1.92) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 0.72 0.72) (thickness 0.108)))
)
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "Net-(R1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 3 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_SMD:TO-263-5_TabPin3 (layer F.Cu) (tedit 5A70FBB6) (tstamp 61CC78B5)
(at 186.925 74.38 90)
(descr "TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/")
(tags "D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426")
(path /61CFC616)
(attr smd)
(fp_text reference U2 (at 0 -6.65 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM2596S-12 (at 0 6.65 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.32 -5.65) (end -8.32 -5.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.32 5.65) (end 8.32 -5.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -8.32 5.65) (end 8.32 5.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -8.32 -5.65) (end -8.32 5.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.95 4.25) (end -4.05 4.25) (layer F.SilkS) (width 0.12))
(fp_line (start -2.95 5.2) (end -2.95 4.25) (layer F.SilkS) (width 0.12))
(fp_line (start -1.45 5.2) (end -2.95 5.2) (layer F.SilkS) (width 0.12))
(fp_line (start -2.95 -4.25) (end -8.075 -4.25) (layer F.SilkS) (width 0.12))
(fp_line (start -2.95 -5.2) (end -2.95 -4.25) (layer F.SilkS) (width 0.12))
(fp_line (start -1.45 -5.2) (end -2.95 -5.2) (layer F.SilkS) (width 0.12))
(fp_line (start -7.45 3.8) (end -2.75 3.8) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 3) (end -7.45 3.8) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 3) (end -7.45 3) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 2.1) (end -2.75 2.1) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 1.3) (end -7.45 2.1) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 1.3) (end -7.45 1.3) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 0.4) (end -2.75 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 -0.4) (end -7.45 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 -0.4) (end -7.45 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 -1.3) (end -2.75 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 -2.1) (end -7.45 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 -2.1) (end -7.45 -2.1) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 -3) (end -2.75 -3) (layer F.Fab) (width 0.1))
(fp_line (start -7.45 -3.8) (end -7.45 -3) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 -3.8) (end -7.45 -3.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.75 -5) (end 6.5 -5) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 -4) (end -1.75 -5) (layer F.Fab) (width 0.1))
(fp_line (start -2.75 5) (end -2.75 -4) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 5) (end -2.75 5) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -5) (end 6.5 5) (layer F.Fab) (width 0.1))
(fp_line (start 7.5 5) (end 6.5 5) (layer F.Fab) (width 0.1))
(fp_line (start 7.5 -5) (end 7.5 5) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -5) (end 7.5 -5) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" smd rect (at 0.95 2.775 90) (size 4.55 5.25) (layers F.Paste))
(pad "" smd rect (at 5.8 -2.775 90) (size 4.55 5.25) (layers F.Paste))
(pad "" smd rect (at 0.95 -2.775 90) (size 4.55 5.25) (layers F.Paste))
(pad "" smd rect (at 5.8 2.775 90) (size 4.55 5.25) (layers F.Paste))
(pad 3 smd rect (at 3.375 0 90) (size 9.4 10.8) (layers F.Cu F.Mask)
(net 1 GND))
(pad 5 smd rect (at -5.775 3.4 90) (size 4.6 1.1) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(U2-Pad5)"))
(pad 4 smd rect (at -5.775 1.7 90) (size 4.6 1.1) (layers F.Cu F.Paste F.Mask)
(net 12 "Net-(RV1-Pad2)"))
(pad 3 smd rect (at -5.775 0 90) (size 4.6 1.1) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 2 smd rect (at -5.775 -1.7 90) (size 4.6 1.1) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(D2-Pad1)"))
(pad 1 smd rect (at -5.775 -3.4 90) (size 4.6 1.1) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TO-263-5_TabPin3.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_TO_SOT_THT:TO-220-3_Vertical (layer F.Cu) (tedit 5AC8BA0D) (tstamp 61CC7885)
(at 149.86 78.74)
(descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf")
(tags "TO-220-3 Vertical RM 2.54mm")
(path /61CC2702)
(fp_text reference U1 (at 2.54 -4.27) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LT1584-ADJ (at 2.54 2.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 1.51) (end 7.79 1.51) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer F.SilkS) (width 0.12))
(fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer F.SilkS) (width 0.12))
(fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 1.371) (end 7.66 1.371) (layer F.SilkS) (width 0.12))
(fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer F.SilkS) (width 0.12))
(fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer F.Fab) (width 0.1))
(fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 1.25) (end 7.54 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.54 -4.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 3 thru_hole oval (at 5.08 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 3 "Net-(C3-Pad1)"))
(pad 1 thru_hole rect (at 0 0) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "Net-(R1-Pad2)"))
(model ${KISYS3DMOD}/Package_TO_SOT_THT.3dshapes/TO-220-3_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_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 61CC7838)
(at 158.75 91.44 180)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 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 Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm")
(path /61CC63EC)
(fp_text reference R2 (at 3.81 -1.92) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 5.48k (at 3.81 1.92) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 1.05) (end 8.57 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.68 0) (end 5.73 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.94 0) (end 1.89 0) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 0.92) (end 5.73 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 5.61 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 2.01 0) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 0.8) (end 5.61 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.81 0) (layer F.Fab)
(effects (font (size 0.72 0.72) (thickness 0.108)))
)
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask)
(net 10 "Net-(R1-Pad2)"))
(model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Inductor_THT:L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 (layer F.Cu) (tedit 5AE59B06) (tstamp 61CC77F1)
(at 204.47 106.68 270)
(descr "Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf")
(tags "Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2")
(path /61D08FFB)
(fp_text reference L1 (at 7.305 -11.75 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value >68uH (at 7.305 11.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 18.06 -10.75) (end -3.45 -10.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 18.06 10.75) (end 18.06 -10.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.45 10.75) (end 18.06 10.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.45 -10.75) (end -3.45 10.75) (layer F.CrtYd) (width 0.05))
(fp_circle (center 7.305 0) (end 8.645 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 7.305 0) (end 17.925 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 7.305 0) (end 8.765 0) (layer F.Fab) (width 0.1))
(fp_circle (center 7.305 0) (end 17.805 0) (layer F.Fab) (width 0.1))
(fp_text user %R (at 7.305 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 14.61 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)"))
(pad 1 thru_hole circle (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 7 "Net-(D2-Pad1)"))
(model ${KISYS3DMOD}/Inductor_THT.3dshapes/L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_THT:D_A-405_P7.62mm_Horizontal (layer F.Cu) (tedit 5AE50CD5) (tstamp 61CC76CC)
(at 190.5 91.44 180)
(descr "Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf")
(tags "Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm")
(path /61D23B59)
(fp_text reference D2 (at 3.81 -2.47) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value D_Schottky (at 3.81 2.47) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.77 -1.6) (end -1.15 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.77 1.6) (end 8.77 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.15 1.6) (end 8.77 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.15 -1.6) (end -1.15 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.87 -1.47) (end 1.87 1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 2.11 -1.47) (end 2.11 1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.99 -1.47) (end 1.99 1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 6.53 1.47) (end 6.53 1.14) (layer F.SilkS) (width 0.12))
(fp_line (start 1.09 1.47) (end 6.53 1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.09 1.14) (end 1.09 1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 6.53 -1.47) (end 6.53 -1.14) (layer F.SilkS) (width 0.12))
(fp_line (start 1.09 -1.47) (end 6.53 -1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.09 -1.14) (end 1.09 -1.47) (layer F.SilkS) (width 0.12))
(fp_line (start 1.89 -1.35) (end 1.89 1.35) (layer F.Fab) (width 0.1))
(fp_line (start 2.09 -1.35) (end 2.09 1.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.99 -1.35) (end 1.99 1.35) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 0) (end 6.41 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.21 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.41 -1.35) (end 1.21 -1.35) (layer F.Fab) (width 0.1))
(fp_line (start 6.41 1.35) (end 6.41 -1.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.21 1.35) (end 6.41 1.35) (layer F.Fab) (width 0.1))
(fp_line (start 1.21 -1.35) (end 1.21 1.35) (layer F.Fab) (width 0.1))
(fp_text user K (at 0 -1.9) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user K (at 0 -1.9) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 4.2 0 45) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 7.62 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 7 "Net-(D2-Pad1)"))
(model ${KISYS3DMOD}/Diode_THT.3dshapes/D_A-405_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diode_THT:Diode_Bridge_Vishay_KBPC6 (layer F.Cu) (tedit 5A638B70) (tstamp 61CC76AD)
(at 93.98 87.63 45)
(descr "Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf")
(tags "Diode Bridge")
(path /61CBF7CB)
(fp_text reference D1 (at 14.36841 -1.796051 315) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value D_Bridge_-A+A (at 6 -3.7 225) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.5 -0.5) (end -0.5 -2.5) (layer F.Fab) (width 0.12))
(fp_line (start -0.5 -2.5) (end 12.8 -2.5) (layer F.Fab) (width 0.12))
(fp_line (start 12.8 -2.5) (end 12.8 12.8) (layer F.Fab) (width 0.12))
(fp_line (start 12.8 12.8) (end -2.55 12.8) (layer F.Fab) (width 0.12))
(fp_line (start -2.55 12.8) (end -2.5 -0.5) (layer F.Fab) (width 0.12))
(fp_line (start 12.85 -2.55) (end -0.55 -2.55) (layer F.SilkS) (width 0.12))
(fp_line (start -0.55 -2.55) (end -2.55 -0.55) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 -0.55) (end -2.65 12.85) (layer F.SilkS) (width 0.12))
(fp_line (start -2.65 12.85) (end 12.85 12.85) (layer F.SilkS) (width 0.12))
(fp_line (start 12.85 12.85) (end 12.85 -2.55) (layer F.SilkS) (width 0.12))
(fp_line (start 13.05 -2.75) (end 13.05 13.05) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.05 13.05) (end -2.8 13.05) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.8 13.05) (end -2.75 -0.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.75 -0.65) (end -0.65 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.65 -2.75) (end 13.05 -2.75) (layer F.CrtYd) (width 0.05))
(fp_circle (center 5.2 5.2) (end 5.2 7.1) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 5.2 5.415 225) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 0 10.4 45) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 5 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 45) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 1 GND))
(pad 4 thru_hole circle (at 10.4 0 45) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 6 "Net-(D1-Pad4)"))
(pad 3 thru_hole circle (at 10.4 10.4 45) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(model ${KISYS3DMOD}/Diode_THT.3dshapes/Diode_Bridge_Vishay_KBPC6.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm (layer F.Cu) (tedit 5AE50EF0) (tstamp 61CC7680)
(at 144.78 86.36 270)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor")
(path /61CC1FE6)
(fp_text reference C2 (at 7.62 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22n (at 2.5 2.5 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 6.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 1.37) (end 6.12 1.37) (layer F.SilkS) (width 0.12))
(fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -1.25) (end -1 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6 1.25) (end 6 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 1.25) (end 6 1.25) (layer F.Fab) (width 0.1))
(fp_line (start -1 -1.25) (end -1 1.25) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.5 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_THT:C_Radial_D18.0mm_H35.5mm_P7.50mm (layer F.Cu) (tedit 5BC5C9BA) (tstamp 61CC766D)
(at 128.27 85.09 270)
(descr "C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor")
(tags "C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor")
(path /61D4FECE)
(fp_text reference C1 (at 13.97 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2200u (at 3.75 10.25 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 3.75 0) (end 13 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 3.75 0) (end 12.87 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 3.75 0) (end 12.75 0) (layer F.Fab) (width 0.1))
(fp_text user %R (at 3.75 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 7.5 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 270) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_THT.3dshapes/C_Radial_D18.0mm_H35.5mm_P7.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text @gurjxt.pb26 (at 80.01 106.68) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text github.com/XXGurjot07 (at 83.82 104.14) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text V+ (at 74.93 125.73) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text GND (at 101.6 125.73) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text V+ (at 96.52 125.73) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "AC IN\n" (at 72.39 87.63 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND\n" (at 212.09 72.39) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_line (start 217.17 63.5) (end 217.17 64.77) (layer Edge.Cuts) (width 0.05) (tstamp 61CCE55C))
(gr_line (start 175.26 63.5) (end 217.17 63.5) (layer Edge.Cuts) (width 0.05))
(gr_line (start 175.26 72.39) (end 175.26 63.5) (layer Edge.Cuts) (width 0.05))
(gr_line (start 69.85 72.39) (end 175.26 72.39) (layer Edge.Cuts) (width 0.05))
(gr_line (start 69.85 127) (end 69.85 72.39) (layer Edge.Cuts) (width 0.05))
(gr_line (start 217.17 127) (end 69.85 127) (layer Edge.Cuts) (width 0.05))
(gr_line (start 217.17 64.77) (end 217.17 127) (layer Edge.Cuts) (width 0.05))
(segment (start 151.05 91.36) (end 151.13 91.44) (width 0.25) (layer F.Cu) (net 1))
(segment (start 144.78 91.36) (end 151.05 91.36) (width 0.25) (layer F.Cu) (net 1))
(segment (start 189.35 68.58) (end 186.925 71.005) (width 0.25) (layer F.Cu) (net 1))
(segment (start 127.948998 120.971002) (end 128.27 120.65) (width 0.25) (layer F.Cu) (net 1))
(segment (start 190.62 67.31) (end 186.925 71.005) (width 1.4) (layer F.Cu) (net 1))
(segment (start 201.93 67.31) (end 190.62 67.31) (width 1.4) (layer F.Cu) (net 1))
(segment (start 209.55 67.31) (end 201.93 67.31) (width 1.4) (layer F.Cu) (net 1))
(segment (start 212.09 68.58) (end 209.55 67.31) (width 1.4) (layer F.Cu) (net 1))
(via (at 189.23 86.36) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 186.925 84.055) (end 189.23 86.36) (width 1.4) (layer F.Cu) (net 1))
(segment (start 186.925 80.155) (end 186.925 84.055) (width 1.4) (layer F.Cu) (net 1))
(segment (start 189.23 86.36) (end 184.15 91.44) (width 1.4) (layer B.Cu) (net 1))
(segment (start 184.15 91.44) (end 182.88 91.44) (width 1.4) (layer B.Cu) (net 1))
(segment (start 111.227821 85.09) (end 108.687821 87.63) (width 1.4) (layer F.Cu) (net 2))
(segment (start 128.27 85.09) (end 111.227821 85.09) (width 1.4) (layer F.Cu) (net 2))
(segment (start 143.51 85.09) (end 144.78 86.36) (width 1.4) (layer F.Cu) (net 2))
(segment (start 128.27 85.09) (end 143.51 85.09) (width 1.4) (layer F.Cu) (net 2))
(segment (start 154.94 81.14) (end 154.94 78.74) (width 1.4) (layer B.Cu) (net 2))
(segment (start 149.72 86.36) (end 154.94 81.14) (width 1.4) (layer B.Cu) (net 2))
(segment (start 144.78 86.36) (end 149.72 86.36) (width 1.4) (layer B.Cu) (net 2))
(segment (start 164.769999 83.489999) (end 166.37 85.09) (width 1.4) (layer F.Cu) (net 3))
(segment (start 152.4 78.867344) (end 152.4 78.74) (width 1.4) (layer F.Cu) (net 3))
(segment (start 157.022655 83.489999) (end 152.4 78.867344) (width 1.4) (layer F.Cu) (net 3))
(segment (start 164.769999 83.489999) (end 157.022655 83.489999) (width 1.4) (layer F.Cu) (net 3))
(segment (start 183.525 80.635) (end 176.53 87.63) (width 1.4) (layer F.Cu) (net 3))
(segment (start 183.525 80.155) (end 183.525 80.635) (width 1.4) (layer F.Cu) (net 3))
(segment (start 168.91 87.63) (end 166.37 85.09) (width 1.4) (layer F.Cu) (net 3))
(segment (start 176.53 87.63) (end 168.91 87.63) (width 1.4) (layer F.Cu) (net 3))
(segment (start 130.615001 120.844999) (end 130.81 120.65) (width 0.25) (layer F.Cu) (net 4))
(segment (start 188.6 121.29) (end 181.61 114.3) (width 1.4) (layer F.Cu) (net 4))
(segment (start 204.47 121.29) (end 188.6 121.29) (width 1.4) (layer F.Cu) (net 4))
(segment (start 171.45 124.46) (end 134.62 124.46) (width 1.4) (layer F.Cu) (net 4))
(segment (start 181.61 114.3) (end 171.45 124.46) (width 1.4) (layer F.Cu) (net 4))
(segment (start 96.52 118.19) (end 96.44 118.11) (width 1.4) (layer F.Cu) (net 4))
(segment (start 96.52 124.46) (end 96.52 118.19) (width 1.4) (layer F.Cu) (net 4))
(segment (start 77.47 124.46) (end 74.93 121.92) (width 1.4) (layer F.Cu) (net 4))
(segment (start 96.52 124.46) (end 77.47 124.46) (width 1.4) (layer F.Cu) (net 4))
(segment (start 130.81 124.46) (end 130.81 120.65) (width 1.4) (layer F.Cu) (net 4))
(segment (start 130.81 124.46) (end 96.52 124.46) (width 1.4) (layer F.Cu) (net 4))
(segment (start 134.62 124.46) (end 130.81 124.46) (width 1.4) (layer F.Cu) (net 4))
(segment (start 82.443911 94.983911) (end 80.01 92.55) (width 1.4) (layer F.Cu) (net 5))
(segment (start 101.333911 94.983911) (end 82.443911 94.983911) (width 1.4) (layer F.Cu) (net 5))
(segment (start 101.333911 80.276089) (end 101.333911 79.743911) (width 0.25) (layer F.Cu) (net 6))
(segment (start 82.283911 80.276089) (end 80.01 82.55) (width 1.4) (layer F.Cu) (net 6))
(segment (start 101.333911 80.276089) (end 82.283911 80.276089) (width 1.4) (layer F.Cu) (net 6))
(segment (start 209.55 101.6) (end 204.47 106.68) (width 0.25) (layer F.Cu) (net 7))
(segment (start 209.55 88.9) (end 209.55 101.6) (width 0.25) (layer F.Cu) (net 7))
(segment (start 185.225 86.165) (end 190.5 91.44) (width 1.4) (layer F.Cu) (net 7))
(segment (start 185.225 80.155) (end 185.225 86.165) (width 1.4) (layer F.Cu) (net 7))
(segment (start 190.5 92.71) (end 204.47 106.68) (width 1.4) (layer F.Cu) (net 7))
(segment (start 190.5 91.44) (end 190.5 92.71) (width 1.4) (layer F.Cu) (net 7))
(segment (start 158.75 91.44) (end 158.75 85.09) (width 0.25) (layer F.Cu) (net 10))
(segment (start 154.96 85.09) (end 158.75 85.09) (width 0.25) (layer F.Cu) (net 10))
(segment (start 149.86 78.74) (end 149.86 79.99) (width 0.25) (layer F.Cu) (net 10))
(segment (start 149.86 79.99) (end 154.96 85.09) (width 0.25) (layer F.Cu) (net 10))
(segment (start 209.55 82.55) (end 201.93 74.93) (width 0.25) (layer F.Cu) (net 11))
(segment (start 209.55 83.82) (end 209.55 82.55) (width 0.25) (layer F.Cu) (net 11))
(segment (start 188.625 81.890002) (end 188.625 80.155) (width 0.25) (layer F.Cu) (net 12))
(segment (start 188.625 82.96) (end 188.625 80.155) (width 0.25) (layer F.Cu) (net 12))
(segment (start 192.025 86.36) (end 188.625 82.96) (width 0.25) (layer F.Cu) (net 12))
(segment (start 207.01 86.36) (end 192.025 86.36) (width 0.25) (layer F.Cu) (net 12))
(zone (net 1) (net_name GND) (layer F.Cu) (tstamp 61CCD3CA) (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