-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAmpMeter.kicad_pcb
4856 lines (4799 loc) · 355 KB
/
AmpMeter.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20171130) (host pcbnew 5.0.2-bee76a0~70~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 59)
(tracks 296)
(zones 0)
(modules 49)
(nets 35)
)
(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)
(user_trace_width 0.5)
(user_trace_width 1)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 18.288 10.922)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 "Net-(A1-Pad1)")
(net 2 "Net-(A1-Pad2)")
(net 3 ct1_2)
(net 4 "Net-(A1-Pad29)")
(net 5 ct2_2)
(net 6 ct3_2)
(net 7 "Net-(A1-Pad22)")
(net 8 "Net-(A1-Pad23)")
(net 9 "Net-(A1-Pad24)")
(net 10 "Net-(A1-Pad30)")
(net 11 "Net-(C1-Pad1)")
(net 12 "Net-(C2-Pad1)")
(net 13 "Net-(C3-Pad1)")
(net 14 ct1_1)
(net 15 ct2_1)
(net 16 ct3_1)
(net 17 "Net-(F1-Pad2)")
(net 18 "Net-(F1-Pad1)")
(net 19 "Net-(F2-Pad1)")
(net 20 "Net-(F3-Pad1)")
(net 21 "Net-(F3-Pad2)")
(net 22 "Net-(F4-Pad1)")
(net 23 "Net-(F4-Pad2)")
(net 24 "Net-(J1-Pad4)")
(net 25 "Net-(J2-Pad1)")
(net 26 "Net-(J2-Pad2)")
(net 27 "Net-(J2-Pad3)")
(net 28 "Net-(J2-Pad4)")
(net 29 "Net-(R2-Pad1)")
(net 30 "Net-(R3-Pad1)")
(net 31 "Net-(R5-Pad1)")
(net 32 "Net-(R7-Pad1)")
(net 33 "Net-(R9-Pad2)")
(net 34 "Net-(A1-Pad28)")
(net_class Default "Dies ist die voreingestellte Netzklasse."
(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 "Net-(A1-Pad1)")
(add_net "Net-(A1-Pad2)")
(add_net "Net-(A1-Pad22)")
(add_net "Net-(A1-Pad23)")
(add_net "Net-(A1-Pad24)")
(add_net "Net-(A1-Pad28)")
(add_net "Net-(A1-Pad29)")
(add_net "Net-(A1-Pad30)")
(add_net "Net-(C1-Pad1)")
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(F1-Pad1)")
(add_net "Net-(F1-Pad2)")
(add_net "Net-(F2-Pad1)")
(add_net "Net-(F3-Pad1)")
(add_net "Net-(F3-Pad2)")
(add_net "Net-(F4-Pad1)")
(add_net "Net-(F4-Pad2)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J2-Pad1)")
(add_net "Net-(J2-Pad2)")
(add_net "Net-(J2-Pad3)")
(add_net "Net-(J2-Pad4)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(R3-Pad1)")
(add_net "Net-(R5-Pad1)")
(add_net "Net-(R7-Pad1)")
(add_net "Net-(R9-Pad2)")
(add_net ct1_1)
(add_net ct1_2)
(add_net ct2_1)
(add_net ct2_2)
(add_net ct3_1)
(add_net ct3_2)
)
(module Module:Arduino_Nano (layer F.Cu) (tedit 5D9D9CC8) (tstamp 5D826D87)
(at 79.248 67.564 90)
(descr "Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
(tags "Arduino Nano")
(path /5D7347A1)
(fp_text reference A1 (at 7.62 -5.08 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Arduino_Nano_v3.x (at -2.794 18.542 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.75 42.16) (end -1.53 42.16) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 42.16) (end 16.75 -4.06) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.53 -4.06) (end -1.53 42.16) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.53 -4.06) (end 16.75 -4.06) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.51 -3.81) (end 16.51 39.37) (layer F.Fab) (width 0.1))
(fp_line (start 0 -3.81) (end 16.51 -3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 -2.54) (end 0 -3.81) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 39.37) (end -1.27 -2.54) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 39.37) (end -1.27 39.37) (layer F.Fab) (width 0.1))
(fp_line (start 16.64 -3.94) (end -1.4 -3.94) (layer F.SilkS) (width 0.12))
(fp_line (start 16.64 39.5) (end 16.64 -3.94) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 39.5) (end 16.64 39.5) (layer F.SilkS) (width 0.12))
(fp_line (start 3.81 41.91) (end 3.81 31.75) (layer F.Fab) (width 0.1))
(fp_line (start 11.43 41.91) (end 3.81 41.91) (layer F.Fab) (width 0.1))
(fp_line (start 11.43 31.75) (end 11.43 41.91) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 31.75) (end 11.43 31.75) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 36.83) (end -1.4 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end -1.4 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 36.83) (end 16.64 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 -1.27) (end 13.97 36.83) (layer F.SilkS) (width 0.12))
(fp_line (start 13.97 -1.27) (end 16.64 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -3.94) (end -1.4 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 1.27) (end -1.4 39.5) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.27) (end -1.4 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_text user %R (at 6.35 19.05 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 16 thru_hole oval (at 15.24 35.56 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 15 thru_hole oval (at 0 35.56 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 30 thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad30)"))
(pad 14 thru_hole oval (at 0 33.02 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 29 thru_hole oval (at 15.24 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(A1-Pad29)"))
(pad 13 thru_hole oval (at 0 30.48 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 28 thru_hole oval (at 15.24 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "Net-(A1-Pad28)"))
(pad 12 thru_hole oval (at 0 27.94 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 27 thru_hole oval (at 15.24 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 11 thru_hole oval (at 0 25.4 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 26 thru_hole oval (at 15.24 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 10 thru_hole oval (at 0 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 25 thru_hole oval (at 15.24 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 9 thru_hole oval (at 0 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 24 thru_hole oval (at 15.24 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(A1-Pad24)"))
(pad 8 thru_hole oval (at 0 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 23 thru_hole oval (at 15.24 17.78 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(A1-Pad23)"))
(pad 7 thru_hole oval (at 0 15.24 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 22 thru_hole oval (at 15.24 20.32 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(A1-Pad22)"))
(pad 6 thru_hole oval (at 0 12.7 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 21 thru_hole oval (at 15.24 22.86 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 ct1_2))
(pad 5 thru_hole oval (at 0 10.16 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 20 thru_hole oval (at 15.24 25.4 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 ct2_2))
(pad 4 thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(A1-Pad29)"))
(pad 19 thru_hole oval (at 15.24 27.94 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 ct3_2))
(pad 3 thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 18 thru_hole oval (at 15.24 30.48 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(A1-Pad2)"))
(pad 17 thru_hole oval (at 15.24 33.02 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask))
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(A1-Pad1)"))
(model ${KISYS3DMOD}/Module.3dshapes/Arduino_Nano_WithMountingHoles.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-4_1x04_P5.00mm_Horizontal (layer F.Cu) (tedit 5B294EE5) (tstamp 5D826F07)
(at 37.846 20.574)
(descr "Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.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-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm")
(path /5D78DD9C)
(fp_text reference J1 (at 7.5 -6.26) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Vin L1-L3" (at 7.5 5.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 7.5 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 18 -5.71) (end -3 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start 18 5.1) (end 18 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 5.1) (end 18 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -5.71) (end -3 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.8 4.9) (end -2.3 4.9) (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 13.773 1.023) (end 13.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 16.07 -1.275) (end 16.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 13.966 1.239) (end 13.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 16.275 -1.069) (end 16.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 15.955 -1.138) (end 13.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 16.138 -0.955) (end 14.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (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.966 1.239) (end 8.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (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.966 1.239) (end 3.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 5.955 -1.138) (end 3.863 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 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 17.561 -5.261) (end 17.561 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 -2.56 4.66) (end 17.561 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end 17.561 -5.261) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -2.301) (end 17.561 -2.301) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -2.3) (end 17.5 -2.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 2.6) (end 17.561 2.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 2.6) (end 17.5 2.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 4.1) (end 17.561 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 4.1) (end 17.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 4.6) (end -2.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start 17.5 4.6) (end -2 4.6) (layer F.Fab) (width 0.1))
(fp_line (start 17.5 -5.2) (end 17.5 4.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -5.2) (end 17.5 -5.2) (layer F.Fab) (width 0.1))
(fp_circle (center 15 0) (end 16.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 15 0) (end 16.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 10 0) (end 11.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 5 0) (end 6.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(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))
(pad 4 thru_hole circle (at 15 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad4)"))
(pad 3 thru_hole circle (at 10 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 17 "Net-(F1-Pad2)"))
(pad 2 thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 21 "Net-(F3-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 23 "Net-(F4-Pad2)"))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4_1x04_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-4_1x04_P5.00mm_Horizontal (layer F.Cu) (tedit 5B294EE5) (tstamp 5D826F45)
(at 132.334 71.628)
(descr "Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.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-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm")
(path /5D890DC0)
(fp_text reference J2 (at 7.5 -6.26) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Serial (at 7.5 5.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 7.5 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 18 -5.71) (end -3 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start 18 5.1) (end 18 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 5.1) (end 18 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -5.71) (end -3 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.8 4.9) (end -2.3 4.9) (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 13.773 1.023) (end 13.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 16.07 -1.275) (end 16.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 13.966 1.239) (end 13.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 16.275 -1.069) (end 16.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 15.955 -1.138) (end 13.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 16.138 -0.955) (end 14.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (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.966 1.239) (end 8.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (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.966 1.239) (end 3.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 5.955 -1.138) (end 3.863 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 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 17.561 -5.261) (end 17.561 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 -2.56 4.66) (end 17.561 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end 17.561 -5.261) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -2.301) (end 17.561 -2.301) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -2.3) (end 17.5 -2.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 2.6) (end 17.561 2.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 2.6) (end 17.5 2.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 4.1) (end 17.561 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 4.1) (end 17.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 4.6) (end -2.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start 17.5 4.6) (end -2 4.6) (layer F.Fab) (width 0.1))
(fp_line (start 17.5 -5.2) (end 17.5 4.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -5.2) (end 17.5 -5.2) (layer F.Fab) (width 0.1))
(fp_circle (center 15 0) (end 16.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 15 0) (end 16.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 10 0) (end 11.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 5 0) (end 6.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(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))
(pad 4 thru_hole circle (at 15 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 28 "Net-(J2-Pad4)"))
(pad 3 thru_hole circle (at 10 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 27 "Net-(J2-Pad3)"))
(pad 2 thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 26 "Net-(J2-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 25 "Net-(J2-Pad1)"))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-4_1x04_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-6_1x06_P5.00mm_Horizontal (layer F.Cu) (tedit 5B294EE7) (tstamp 5D82701C)
(at 121.412 18.034)
(descr "Terminal Block Phoenix MKDS-1,5-6, 6 pins, pitch 5mm, size 30x9.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-6 pitch 5mm size 30x9.8mm^2 drill 1.3mm pad 2.6mm")
(path /5D78E074)
(fp_text reference J6 (at 12.5 -6.26) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "ct L1-L3" (at 12.5 5.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 12.5 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 28 -5.71) (end -3 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start 28 5.1) (end 28 -5.71) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 5.1) (end 28 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3 -5.71) (end -3 5.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.8 4.9) (end -2.3 4.9) (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 23.773 1.023) (end 23.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 26.07 -1.275) (end 26.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 23.966 1.239) (end 23.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 26.275 -1.069) (end 26.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 25.955 -1.138) (end 23.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 26.138 -0.955) (end 24.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 18.773 1.023) (end 18.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 21.07 -1.275) (end 21.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 18.966 1.239) (end 18.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 21.275 -1.069) (end 21.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 20.955 -1.138) (end 18.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 21.138 -0.955) (end 19.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 13.773 1.023) (end 13.726 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start 16.07 -1.275) (end 16.035 -1.239) (layer F.SilkS) (width 0.12))
(fp_line (start 13.966 1.239) (end 13.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 16.275 -1.069) (end 16.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 15.955 -1.138) (end 13.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 16.138 -0.955) (end 14.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 8.773 1.023) (end 8.726 1.069) (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.966 1.239) (end 8.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 10.955 -1.138) (end 8.863 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 11.138 -0.955) (end 9.046 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 3.773 1.023) (end 3.726 1.069) (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.966 1.239) (end 3.931 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 5.955 -1.138) (end 3.863 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 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 27.56 -5.261) (end 27.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 -2.56 4.66) (end 27.56 4.66) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -5.261) (end 27.56 -5.261) (layer F.SilkS) (width 0.12))
(fp_line (start -2.56 -2.301) (end 27.56 -2.301) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -2.3) (end 27.5 -2.3) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 2.6) (end 27.56 2.6) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 2.6) (end 27.5 2.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.56 4.1) (end 27.56 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 4.1) (end 27.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 4.6) (end -2.5 4.1) (layer F.Fab) (width 0.1))
(fp_line (start 27.5 4.6) (end -2 4.6) (layer F.Fab) (width 0.1))
(fp_line (start 27.5 -5.2) (end 27.5 4.6) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -5.2) (end 27.5 -5.2) (layer F.Fab) (width 0.1))
(fp_circle (center 25 0) (end 26.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 25 0) (end 26.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 20 0) (end 21.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 20 0) (end 21.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 15 0) (end 16.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 15 0) (end 16.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 10 0) (end 11.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 5 0) (end 6.68 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 5 0) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(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))
(pad 6 thru_hole circle (at 25 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 6 ct3_2))
(pad 5 thru_hole circle (at 20 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 16 ct3_1))
(pad 4 thru_hole circle (at 15 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 5 ct2_2))
(pad 3 thru_hole circle (at 10 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 15 ct2_1))
(pad 2 thru_hole circle (at 5 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 3 ct1_2))
(pad 1 thru_hole rect (at 0 0) (size 2.6 2.6) (drill 1.3) (layers *.Cu *.Mask)
(net 14 ct1_1))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-6_1x06_P5.00mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Transformer_THT:Transformer_Breve_TEZ-22x24 (layer F.Cu) (tedit 5A030845) (tstamp 5D8272A5)
(at 89.154 30.734 180)
(descr http://www.breve.pl/pdf/ANG/TEZ_ang.pdf)
(tags "TEZ PCB Transformer")
(path /5D7FEAE4)
(fp_text reference T1 (at 7.366 -19.558 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Transformer_1P_1S (at 12.954 4.826 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 19.62 3.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.62 3.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.75 3.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 19.75 3.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.5 3.5) (end -4.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 3.5) (end -4.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 -18.5) (end 19.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start -4.5 -18.5) (end 19.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 1 -16) (end 4 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -16) (end 9 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 11 -16) (end 14 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 -16) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -16) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 1) (end 14 1) (layer F.SilkS) (width 0.12))
(fp_line (start 16.5 1) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 1) (end 16.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 4 1) (end 1.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 1) (end -1.5 1) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 -16) (end 16.5 1) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -16) (end 16.5 -16) (layer F.Fab) (width 0.1))
(fp_text user %R (at 7.5 -7.5 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 1 (at 0 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 2 (at 5 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 3 (at 10 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 4 (at 15 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 5 (at 15 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 6 (at 10 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 7 (at 5 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8 (at 0 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 8 thru_hole circle (at 0 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 7 thru_hole circle (at 5 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 30 "Net-(R3-Pad1)"))
(pad 6 thru_hole circle (at 10 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "Net-(C1-Pad1)"))
(pad 5 thru_hole circle (at 15 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 15 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad4)"))
(pad 2 thru_hole circle (at 5 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 1 thru_hole rect (at 0 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 19 "Net-(F2-Pad1)"))
(model ${KISYS3DMOD}/Transformer_THT.3dshapes/Transformer_Breve_TEZ-22x24.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Transformer_THT:Transformer_Breve_TEZ-22x24 (layer F.Cu) (tedit 5A030845) (tstamp 5D8272D3)
(at 64.77 30.734 180)
(descr http://www.breve.pl/pdf/ANG/TEZ_ang.pdf)
(tags "TEZ PCB Transformer")
(path /5D7FEBDB)
(fp_text reference T2 (at 8.128 -19.558 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Transformer_1P_1S (at 12.7 4.826 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 19.62 3.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.62 3.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.75 3.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 19.75 3.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.5 3.5) (end -4.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 3.5) (end -4.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 -18.5) (end 19.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start -4.5 -18.5) (end 19.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 1 -16) (end 4 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -16) (end 9 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 11 -16) (end 14 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 -16) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -16) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 1) (end 14 1) (layer F.SilkS) (width 0.12))
(fp_line (start 16.5 1) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 1) (end 16.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 4 1) (end 1.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 1) (end -1.5 1) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 -16) (end 16.5 1) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -16) (end 16.5 -16) (layer F.Fab) (width 0.1))
(fp_text user %R (at 7.5 -7.5 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 1 (at 0 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 2 (at 5 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 3 (at 10 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 4 (at 15 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 5 (at 15 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 6 (at 10 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 7 (at 5 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8 (at 0 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 8 thru_hole circle (at 0 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 7 thru_hole circle (at 5 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 31 "Net-(R5-Pad1)"))
(pad 6 thru_hole circle (at 10 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "Net-(C2-Pad1)"))
(pad 5 thru_hole circle (at 15 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 15 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad4)"))
(pad 2 thru_hole circle (at 5 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 1 thru_hole rect (at 0 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 20 "Net-(F3-Pad1)"))
(model ${KISYS3DMOD}/Transformer_THT.3dshapes/Transformer_Breve_TEZ-22x24.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Transformer_THT:Transformer_Breve_TEZ-22x24 (layer F.Cu) (tedit 5A030845) (tstamp 5D827301)
(at 40.64 30.734 180)
(descr http://www.breve.pl/pdf/ANG/TEZ_ang.pdf)
(tags "TEZ PCB Transformer")
(path /5D7FECE9)
(fp_text reference T3 (at 12.192 -19.558 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Transformer_1P_1S (at 12.7 4.826 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 19.62 3.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.62 3.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end -4.62 3.62) (layer F.SilkS) (width 0.12))
(fp_line (start -4.62 -18.62) (end 19.62 -18.62) (layer F.SilkS) (width 0.12))
(fp_line (start 19.75 3.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 19.75 3.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end -4.75 3.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.75 -18.75) (end 19.75 -18.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.5 3.5) (end -4.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 3.5) (end -4.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start 19.5 -18.5) (end 19.5 3.5) (layer F.Fab) (width 0.1))
(fp_line (start -4.5 -18.5) (end 19.5 -18.5) (layer F.Fab) (width 0.1))
(fp_line (start 1 -16) (end 4 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 -16) (end 9 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 11 -16) (end 14 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 -16) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -16) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 6 1) (end 14 1) (layer F.SilkS) (width 0.12))
(fp_line (start 16.5 1) (end 16.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 16 1) (end 16.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.SilkS) (width 0.12))
(fp_line (start 4 1) (end 1.5 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 1) (end -1.5 -16) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 1) (end -1.5 1) (layer F.Fab) (width 0.1))
(fp_line (start 16.5 -16) (end 16.5 1) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -16) (end 16.5 -16) (layer F.Fab) (width 0.1))
(fp_text user %R (at 7.5 -7.5 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 1 (at 0 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 2 (at 5 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 3 (at 10 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 4 (at 15 2.5 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 5 (at 15 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 6 (at 10 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 7 (at 5 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 8 (at 0 -17 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 8 thru_hole circle (at 0 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 7 thru_hole circle (at 5 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 32 "Net-(R7-Pad1)"))
(pad 6 thru_hole circle (at 10 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 13 "Net-(C3-Pad1)"))
(pad 5 thru_hole circle (at 15 -15 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 4 thru_hole circle (at 15 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad4)"))
(pad 2 thru_hole circle (at 5 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask))
(pad 1 thru_hole rect (at 0 0 180) (size 2 2) (drill 0.9) (layers *.Cu *.Mask)
(net 22 "Net-(F4-Pad1)"))
(model ${KISYS3DMOD}/Transformer_THT.3dshapes/Transformer_Breve_TEZ-22x24.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_DIP:DIP-4_W7.62mm (layer F.Cu) (tedit 5D9D9CD3) (tstamp 5D827319)
(at 140.97 56.642 90)
(descr "4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(path /5D7527FC)
(fp_text reference U1 (at 3.81 -8.128 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LTV-817 (at 4.572 7.62 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 1.27 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 4.1) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 4.1) (end 8.7 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -1.55) (end -1.1 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 3.87) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 3.87) (end 6.46 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 -1.33) (end 1.16 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 3.81) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 3.81) (end 0.635 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(pad 4 thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(A1-Pad2)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "Net-(J2-Pad3)"))
(pad 3 thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(A1-Pad29)"))
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "Net-(R2-Pad1)"))
(model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-4_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Package_DIP:DIP-4_W7.62mm (layer F.Cu) (tedit 5D9D9CD8) (tstamp 5D827331)
(at 138.43 49.022 270)
(descr "4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(path /5D75287E)
(fp_text reference U2 (at 1.524 -7.874) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LTV-817 (at 5.334 7.874) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 1.27 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 4.1) (end 8.7 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 4.1) (end 8.7 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.1 -1.55) (end -1.1 4.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.46 3.87) (end 6.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 3.87) (end 6.46 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 1.16 -1.33) (end 1.16 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 3.81) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 3.81) (end 0.635 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer F.Fab) (width 0.1))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer F.SilkS) (width 0.12))
(pad 4 thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "Net-(J2-Pad2)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(A1-Pad1)"))
(pad 3 thru_hole oval (at 7.62 2.54 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "Net-(J2-Pad1)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "Net-(R9-Pad2)"))
(model ${KISYS3DMOD}/Package_DIP.3dshapes/DIP-4_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module AmpMeter:Converter_ACDC_HiLink_HLK-PMxx_THT (layer F.Cu) (tedit 5D8F5E3D) (tstamp 5D942768)
(at 111.506 40.386 180)
(descr "ACDC-Converter, 3W, Hahn-HS-400xx, THT https://www.schukat.com/schukat/schukat_cms_de.nsf/index/FrameView?OpenDocument&art=HS40009&wg=M7942")
(tags "Hahn ACDC-Converter THT")
(path /5D737455)
(fp_text reference PS1 (at -0.5 -10) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RAC01-05SGB (at 11 25 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 17.5 -9) (end 17.5 24) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.5 24) (end -2.5 24) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 24) (end -2.5 -9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -9) (end 17.5 -9) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.5 -9) (end 17.5 24) (layer F.SilkS) (width 0.12))
(fp_line (start 17.5 24) (end -2.5 24) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 24) (end -2.5 -9) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -9) (end 17.5 -9) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 -9) (end -2.5 24) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 24) (end 17.5 24) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -9) (end 17.5 -9) (layer F.Fab) (width 0.1))
(fp_line (start 17.5 -9) (end 17.5 24) (layer F.Fab) (width 0.1))
(fp_text user %R (at 10 10 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 -8.4) (end 0.5 -9) (layer F.Fab) (width 0.1))
(fp_line (start -0.5 -9) (end 0 -8.4) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -9) (end -0.5 -9) (layer F.Fab) (width 0.1))
(fp_line (start 2 -9.5) (end 7 -9.5) (layer F.SilkS) (width 0.12))
(pad 4 thru_hole circle (at 15 -7 90) (size 2.5 2.5) (drill 1.1) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad30)"))
(pad 3 thru_hole rect (at 0 -7 90) (size 2.5 2.5) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "Net-(A1-Pad29)"))
(pad 1 thru_hole circle (at 10 22 90) (size 2.5 2.5) (drill 1.1) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad4)"))
(pad 2 thru_hole circle (at 5 22 90) (size 2.5 2.5) (drill 1.1) (layers *.Cu *.Mask)
(net 18 "Net-(F1-Pad1)"))
(model ${KISYS3DMOD}/Converter_ACDC.3dshapes/Converter_ACDC_Hahn_HS-400xx_THT.wrl
(offset (xyz 1.5 4.5 0))
(scale (xyz 0.6 1.2 1))
(rotate (xyz 0 0 0))
)
)
(module Fuse:Fuseholder_TR5_Littelfuse_No560_No460 (layer F.Cu) (tedit 5D9DA66F) (tstamp 5D9F33AD)
(at 82.55 23.114 90)
(descr "Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560,")
(tags "Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 ")
(path /5D782866)
(fp_text reference F1 (at 9.144 -0.254 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Fuse (at 2.39 7.43 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 2.54 0.01) (end 7.29 0.01) (layer F.SilkS) (width 0.12))
(fp_circle (center 2.55 0) (end 7.25 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 5.01) (end -2.46 5.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.54 5.01) (end 7.54 -4.99) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.46 -4.99) (end -2.46 5.01) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.46 -4.99) (end 7.54 -4.99) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.49 3.99) (end 5.36 3.84) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 4.07) (end 5.49 3.99) (layer F.SilkS) (width 0.12))
(fp_line (start 5.96 4.11) (end 5.67 4.07) (layer F.SilkS) (width 0.12))
(fp_line (start 6.25 4.03) (end 5.96 4.11) (layer F.SilkS) (width 0.12))
(fp_line (start 6.47 3.86) (end 6.25 4.03) (layer F.SilkS) (width 0.12))
(fp_line (start 6.62 3.6) (end 6.47 3.86) (layer F.SilkS) (width 0.12))
(fp_line (start 6.65 3.34) (end 6.62 3.6) (layer F.SilkS) (width 0.12))
(fp_line (start 6.6 3.09) (end 6.65 3.34) (layer F.SilkS) (width 0.12))
(fp_line (start 6.51 2.93) (end 6.6 3.09) (layer F.SilkS) (width 0.12))
(fp_line (start 6.39 2.79) (end 6.51 2.93) (layer F.SilkS) (width 0.12))
(fp_line (start 6.34 2.74) (end 6.46 2.88) (layer F.Fab) (width 0.1))
(fp_line (start 6.46 2.88) (end 6.55 3.04) (layer F.Fab) (width 0.1))
(fp_line (start 6.55 3.04) (end 6.6 3.29) (layer F.Fab) (width 0.1))
(fp_line (start 6.6 3.29) (end 6.57 3.55) (layer F.Fab) (width 0.1))
(fp_line (start 6.57 3.55) (end 6.42 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.42 3.81) (end 6.2 3.98) (layer F.Fab) (width 0.1))
(fp_line (start 6.2 3.98) (end 5.91 4.06) (layer F.Fab) (width 0.1))
(fp_line (start 5.91 4.06) (end 5.62 4.02) (layer F.Fab) (width 0.1))
(fp_line (start 5.62 4.02) (end 5.44 3.94) (layer F.Fab) (width 0.1))
(fp_line (start 5.44 3.94) (end 5.31 3.79) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.75 -2.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5.08 0.01 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(F1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(F1-Pad1)"))
(model ${KISYS3DMOD}/Fuse.3dshapes/Fuseholder_TR5_Littelfuse_No560_No460.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Fuse:Fuseholder_TR5_Littelfuse_No560_No460 (layer F.Cu) (tedit 5D9DA662) (tstamp 5D9F33CD)
(at 72.136 23.114 90)
(descr "Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560,")
(tags "Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 ")
(path /5D782751)
(fp_text reference F2 (at 9.144 0.254 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Fuse (at 2.39 7.43 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 2.54 0.01) (end 7.29 0.01) (layer F.SilkS) (width 0.12))
(fp_circle (center 2.55 0) (end 7.25 0) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 5.01) (end -2.46 5.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.54 5.01) (end 7.54 -4.99) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.46 -4.99) (end -2.46 5.01) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.46 -4.99) (end 7.54 -4.99) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.49 3.99) (end 5.36 3.84) (layer F.SilkS) (width 0.12))
(fp_line (start 5.67 4.07) (end 5.49 3.99) (layer F.SilkS) (width 0.12))
(fp_line (start 5.96 4.11) (end 5.67 4.07) (layer F.SilkS) (width 0.12))
(fp_line (start 6.25 4.03) (end 5.96 4.11) (layer F.SilkS) (width 0.12))
(fp_line (start 6.47 3.86) (end 6.25 4.03) (layer F.SilkS) (width 0.12))
(fp_line (start 6.62 3.6) (end 6.47 3.86) (layer F.SilkS) (width 0.12))
(fp_line (start 6.65 3.34) (end 6.62 3.6) (layer F.SilkS) (width 0.12))
(fp_line (start 6.6 3.09) (end 6.65 3.34) (layer F.SilkS) (width 0.12))
(fp_line (start 6.51 2.93) (end 6.6 3.09) (layer F.SilkS) (width 0.12))
(fp_line (start 6.39 2.79) (end 6.51 2.93) (layer F.SilkS) (width 0.12))
(fp_line (start 6.34 2.74) (end 6.46 2.88) (layer F.Fab) (width 0.1))
(fp_line (start 6.46 2.88) (end 6.55 3.04) (layer F.Fab) (width 0.1))
(fp_line (start 6.55 3.04) (end 6.6 3.29) (layer F.Fab) (width 0.1))
(fp_line (start 6.6 3.29) (end 6.57 3.55) (layer F.Fab) (width 0.1))
(fp_line (start 6.57 3.55) (end 6.42 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 6.42 3.81) (end 6.2 3.98) (layer F.Fab) (width 0.1))
(fp_line (start 6.2 3.98) (end 5.91 4.06) (layer F.Fab) (width 0.1))
(fp_line (start 5.91 4.06) (end 5.62 4.02) (layer F.Fab) (width 0.1))
(fp_line (start 5.62 4.02) (end 5.44 3.94) (layer F.Fab) (width 0.1))
(fp_line (start 5.44 3.94) (end 5.31 3.79) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.75 -2.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5.08 0.01 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(F1-Pad2)"))