forked from festlv/thc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensor_board.kicad_pcb
1316 lines (1285 loc) · 77.1 KB
/
sensor_board.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 3) (host pcbnew "(2013-may-18)-stable")
(general
(links 44)
(no_connects 0)
(area 27.839999 63.093599 184.250001 179.865)
(thickness 1.6)
(drawings 7)
(tracks 96)
(zones 0)
(modules 23)
(nets 17)
)
(page A3)
(layers
(15 F.Cu signal)
(0 B.Cu signal)
(16 B.Adhes user)
(17 F.Adhes user)
(18 B.Paste user)
(19 F.Paste user)
(20 B.SilkS user)
(21 F.SilkS user)
(22 B.Mask user)
(23 F.Mask user)
(24 Dwgs.User user)
(25 Cmts.User user)
(26 Eco1.User user)
(27 Eco2.User user)
(28 Edge.Cuts user)
)
(setup
(last_trace_width 1)
(user_trace_width 1)
(user_trace_width 2)
(trace_clearance 0.254)
(zone_clearance 0.8)
(zone_45_only no)
(trace_min 0.254)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.889)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(uvia_size 0.508)
(uvia_drill 0.127)
(uvias_allowed no)
(uvia_min_size 0.508)
(uvia_min_drill 0.127)
(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.397 1.397)
(pad_drill 0.8128)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFFBF)
(pcbplotparams
(layerselection 3178497)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.150000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotothertext true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory out/))
)
(net 0 "")
(net 1 +12V)
(net 2 /ARC_OK)
(net 3 /FILT_SIG)
(net 4 /TORCH_ON)
(net 5 GND)
(net 6 N-0000010)
(net 7 N-0000011)
(net 8 N-0000012)
(net 9 N-0000013)
(net 10 N-0000015)
(net 11 N-0000016)
(net 12 N-0000017)
(net 13 N-000003)
(net 14 N-000005)
(net 15 N-000008)
(net 16 N-000009)
(net_class Default "This is the default net class."
(clearance 0.254)
(trace_width 1)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net "")
(add_net +12V)
(add_net /ARC_OK)
(add_net /FILT_SIG)
(add_net /TORCH_ON)
(add_net GND)
(add_net N-0000010)
(add_net N-0000011)
(add_net N-0000012)
(add_net N-0000013)
(add_net N-0000015)
(add_net N-0000016)
(add_net N-0000017)
(add_net N-000003)
(add_net N-000005)
(add_net N-000008)
(add_net N-000009)
)
(module TO92-CBE (layer F.Cu) (tedit 52EEAFAD) (tstamp 52EEAFB2)
(at 68.58 92.71 90)
(descr "Transistor TO92 brochage type BC237")
(tags "TR TO92")
(path /52EEAEB7)
(fp_text reference Q1 (at 0.762 0.635 90) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value BC547 (at 0.254 -3.048 90) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_line (start -1.27 2.54) (end 2.54 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 2.54 -1.27) (end 2.54 -2.54) (layer F.SilkS) (width 0.3048))
(fp_line (start 2.54 -2.54) (end 1.27 -3.81) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer F.SilkS) (width 0.3048))
(fp_line (start -1.27 -3.81) (end -3.81 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 -1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 1.27) (end -2.54 2.54) (layer F.SilkS) (width 0.3048))
(fp_line (start -2.54 2.54) (end -1.27 2.54) (layer F.SilkS) (width 0.3048))
(pad 3 thru_hole rect (at -1.27 1.27 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 2 thru_hole circle (at -1.27 -1.27 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 8 N-0000012)
)
(pad 1 thru_hole circle (at 1.27 -1.27 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 9 N-0000013)
)
(model discret/to98.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module DB9FC (layer F.Cu) (tedit 52EEAF01) (tstamp 52BF213B)
(at 85.09 83.82)
(descr "Connecteur DB9 femelle couche")
(tags "CONN DB9")
(path /52BEC29A)
(fp_text reference J1 (at 1.27 -10.16) (layer F.SilkS)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_text value DB9 (at 1.27 -3.81) (layer F.SilkS)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_line (start -16.129 2.286) (end 16.383 2.286) (layer F.SilkS) (width 0.3048))
(fp_line (start 16.383 2.286) (end 16.383 -15.494) (layer F.SilkS) (width 0.3048))
(fp_line (start 16.383 -15.494) (end -16.129 -15.494) (layer F.SilkS) (width 0.3048))
(fp_line (start -16.129 -15.494) (end -16.129 2.286) (layer F.SilkS) (width 0.3048))
(fp_line (start -9.017 -15.494) (end -9.017 -7.874) (layer F.SilkS) (width 0.3048))
(fp_line (start -9.017 -7.874) (end 9.271 -7.874) (layer F.SilkS) (width 0.3048))
(fp_line (start 9.271 -7.874) (end 9.271 -15.494) (layer F.SilkS) (width 0.3048))
(fp_line (start -7.493 -15.494) (end -7.493 -24.13) (layer F.SilkS) (width 0.3048))
(fp_line (start -7.493 -24.13) (end 7.747 -24.13) (layer F.SilkS) (width 0.3048))
(fp_line (start 7.747 -24.13) (end 7.747 -15.494) (layer F.SilkS) (width 0.3048))
(pad 10 thru_hole circle (at 12.827 -1.27) (size 3.81 3.81) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 10 thru_hole circle (at -12.573 -1.27) (size 3.81 3.81) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 1 thru_hole rect (at -5.461 1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 4 /TORCH_ON)
)
(pad 2 thru_hole circle (at -2.667 1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 3 thru_hole circle (at 0 1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 3 /FILT_SIG)
)
(pad 4 thru_hole circle (at 2.794 1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 5 thru_hole circle (at 5.588 1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 6 thru_hole circle (at -4.064 -1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 7 thru_hole circle (at -1.27 -1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 1 +12V)
)
(pad 8 thru_hole circle (at 1.397 -1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 2 /ARC_OK)
)
(pad 9 thru_hole circle (at 4.191 -1.27) (size 2.2 2.2) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model conn_DBxx/db9_female_pin90deg.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TEST_POINT_2PADS (layer F.Cu) (tedit 52BF42FE) (tstamp 52BF1FF0)
(at 91.44 104.14 180)
(descr "Connecteurs 2 pins")
(tags "CONN DEV")
(path /52BECCF0)
(fp_text reference P5 (at 0.03048 -1.92024 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value TEST_POINTS (at -0.07112 2.2098 180) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.1524)))
)
(fp_line (start 1.27 1.016) (end -1.27 1.016) (layer F.SilkS) (width 0.127))
(fp_line (start 1.27 -1.016) (end -1.27 -1.016) (layer F.SilkS) (width 0.127))
(fp_arc (start 1.27 0) (end 2.286 0) (angle 90) (layer F.SilkS) (width 0.127))
(fp_arc (start 1.27 0) (end 1.27 -1.016) (angle 90) (layer F.SilkS) (width 0.127))
(fp_arc (start -1.27 0) (end -1.27 1.016) (angle 90) (layer F.SilkS) (width 0.127))
(fp_arc (start -1.27 0) (end -2.286 0) (angle 90) (layer F.SilkS) (width 0.127))
(pad 1 thru_hole circle (at -1.27 0 180) (size 2.2 2.2) (drill 1)
(layers *.Cu *.Mask F.SilkS)
(net 3 /FILT_SIG)
)
(pad 2 thru_hole circle (at 1.27 0 180) (size 2.2 2.2) (drill 1)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model connectors\testpoint_2pads.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module FINDER_RELAY (layer F.Cu) (tedit 52BF4250) (tstamp 52BF31B8)
(at 53.34 102.87 180)
(path /52BEC35A)
(fp_text reference Q2 (at 2 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RELAY (at 13 -4 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 10 6) (end 10 8) (layer F.SilkS) (width 0.15))
(fp_line (start 10 8) (end -9 8) (layer F.SilkS) (width 0.15))
(fp_line (start -9 8) (end -9 6) (layer F.SilkS) (width 0.15))
(fp_line (start 10 -6) (end 10 -8) (layer F.SilkS) (width 0.15))
(fp_line (start 10 -8) (end -9 -8) (layer F.SilkS) (width 0.15))
(fp_line (start -9 -8) (end -9 -6) (layer F.SilkS) (width 0.15))
(fp_line (start 10 -6) (end 10 6) (layer F.SilkS) (width 0.15))
(fp_line (start -9 6) (end -9 -6) (layer F.SilkS) (width 0.15))
(pad 3 thru_hole circle (at -7 0 180) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 11 N-0000016)
)
(pad 1 thru_hole circle (at -5 -6 180) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 1 +12V)
)
(pad 2 thru_hole circle (at -5 6 180) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 9 N-0000013)
)
(pad 4 thru_hole circle (at 7 6 180) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
)
(pad 5 thru_hole circle (at 7 -6 180) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 12 N-0000017)
)
)
(module BRIDGE (layer F.Cu) (tedit 52BF4207) (tstamp 52BF217B)
(at 48.26 142.24)
(path /52BEBFBB)
(fp_text reference D3 (at 0 -5.08) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BRIDGE (at -5.08 -5.08) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -10 -3) (end -10 3) (layer F.SilkS) (width 0.15))
(fp_line (start -12 -2) (end -11 -3) (layer F.SilkS) (width 0.15))
(fp_line (start -12 0) (end -12 -3) (layer F.SilkS) (width 0.15))
(fp_line (start -12 -3) (end 7 -3) (layer F.SilkS) (width 0.15))
(fp_line (start 7 -3) (end 7 3) (layer F.SilkS) (width 0.15))
(fp_line (start 7 3) (end -12 3) (layer F.SilkS) (width 0.15))
(fp_line (start -12 3) (end -12 0) (layer F.SilkS) (width 0.15))
(pad 4 thru_hole circle (at -5 0) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 10 N-0000015)
)
(pad 2 thru_hole circle (at 0 0) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 6 N-0000010)
)
(pad 1 thru_hole circle (at 5 0) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 3 thru_hole circle (at -10 0) (size 3 3) (drill 1.3)
(layers *.Cu *.Mask F.SilkS)
(net 15 N-000008)
)
)
(module SCREW_TERM_2 (layer F.Cu) (tedit 52BF110A) (tstamp 52BF2003)
(at 38.1 156.21 270)
(path /52BEBFB3)
(fp_text reference P2 (at 0 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_2 (at -10 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 -1) (end 1 5) (layer F.SilkS) (width 0.15))
(fp_line (start 1 5) (end 4 5) (layer F.SilkS) (width 0.15))
(fp_line (start 4 5) (end 4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 4 -1) (end 1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -4 -1) (end -4 5) (layer F.SilkS) (width 0.15))
(fp_line (start -4 5) (end -1 5) (layer F.SilkS) (width 0.15))
(fp_line (start -1 5) (end -1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -1 -1) (end -4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -4) (end 5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 -4) (end 5 4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 4) (end -5 4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 4) (end -5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 -4) (end 0 -4) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 6 N-0000010)
)
(pad 2 thru_hole circle (at 2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 6 N-0000010)
)
)
(module SCREW_TERM_2 (layer F.Cu) (tedit 52BF110A) (tstamp 52BF2016)
(at 38.1 128.27 270)
(path /52BEBFA6)
(fp_text reference P1 (at 0 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_2 (at -10 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 -1) (end 1 5) (layer F.SilkS) (width 0.15))
(fp_line (start 1 5) (end 4 5) (layer F.SilkS) (width 0.15))
(fp_line (start 4 5) (end 4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 4 -1) (end 1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -4 -1) (end -4 5) (layer F.SilkS) (width 0.15))
(fp_line (start -4 5) (end -1 5) (layer F.SilkS) (width 0.15))
(fp_line (start -1 5) (end -1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -1 -1) (end -4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -4) (end 5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 -4) (end 5 4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 4) (end -5 4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 4) (end -5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 -4) (end 0 -4) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 10 N-0000015)
)
(pad 2 thru_hole circle (at 2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 10 N-0000015)
)
)
(module SCREW_TERM_2 (layer F.Cu) (tedit 52BF110A) (tstamp 52BF2029)
(at 36.83 105.41 270)
(path /52BEC367)
(fp_text reference P3 (at 0 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TORCH_ON (at -10 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 -1) (end 1 5) (layer F.SilkS) (width 0.15))
(fp_line (start 1 5) (end 4 5) (layer F.SilkS) (width 0.15))
(fp_line (start 4 5) (end 4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 4 -1) (end 1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -4 -1) (end -4 5) (layer F.SilkS) (width 0.15))
(fp_line (start -4 5) (end -1 5) (layer F.SilkS) (width 0.15))
(fp_line (start -1 5) (end -1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -1 -1) (end -4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -4) (end 5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 -4) (end 5 4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 4) (end -5 4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 4) (end -5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 -4) (end 0 -4) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 11 N-0000016)
)
(pad 2 thru_hole circle (at 2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 12 N-0000017)
)
)
(module SCREW_TERM_2 (layer F.Cu) (tedit 52BF110A) (tstamp 52BF203C)
(at 36.83 85.09 270)
(path /52BEC878)
(fp_text reference P4 (at 0 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ARC_OK (at -10 -6 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1 -1) (end 1 5) (layer F.SilkS) (width 0.15))
(fp_line (start 1 5) (end 4 5) (layer F.SilkS) (width 0.15))
(fp_line (start 4 5) (end 4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 4 -1) (end 1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -4 -1) (end -4 5) (layer F.SilkS) (width 0.15))
(fp_line (start -4 5) (end -1 5) (layer F.SilkS) (width 0.15))
(fp_line (start -1 5) (end -1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start -1 -1) (end -4 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -4) (end 5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 -4) (end 5 4) (layer F.SilkS) (width 0.15))
(fp_line (start 5 4) (end -5 4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 4) (end -5 -4) (layer F.SilkS) (width 0.15))
(fp_line (start -5 -4) (end 0 -4) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 2 /ARC_OK)
)
(pad 2 thru_hole circle (at 2.5 1 270) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 1 +12V)
)
)
(module ROUND_FUSE_HOLDER (layer F.Cu) (tedit 52BECCAD) (tstamp 52BF2043)
(at 53.34 127)
(path /52BEC043)
(fp_text reference F1 (at 0 -3) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 200mA (at 0 4) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 6 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -4 0) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 15 N-000008)
)
(pad 2 thru_hole circle (at 4 0) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 7 N-0000011)
)
)
(module R_5W_AXIAL (layer F.Cu) (tedit 52BECDD7) (tstamp 52BF205B)
(at 86.995 142.24 180)
(path /52BEC162)
(fp_text reference R9 (at 0 3 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 0 -2 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 5) (end 12 5) (layer F.SilkS) (width 0.15))
(fp_line (start 12 5) (end 12 -5) (layer F.SilkS) (width 0.15))
(fp_line (start 12 -5) (end 0 -5) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -5) (end -11 -5) (layer F.SilkS) (width 0.15))
(fp_line (start -11 -5) (end -11 5) (layer F.SilkS) (width 0.15))
(fp_line (start -11 5) (end 0 5) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 15 0 180) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 1 thru_hole circle (at -14 0 180) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 16 N-000009)
)
)
(module R_5W_AXIAL (layer F.Cu) (tedit 52BECDD7) (tstamp 52BF2067)
(at 85.725 127)
(path /52BEC0DE)
(fp_text reference R8 (at 0 3) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 39K (at 0 -2) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 5) (end 12 5) (layer F.SilkS) (width 0.15))
(fp_line (start 12 5) (end 12 -5) (layer F.SilkS) (width 0.15))
(fp_line (start 12 -5) (end 0 -5) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -5) (end -11 -5) (layer F.SilkS) (width 0.15))
(fp_line (start -11 -5) (end -11 5) (layer F.SilkS) (width 0.15))
(fp_line (start -11 5) (end 0 5) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 15 0) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 16 N-000009)
)
(pad 1 thru_hole circle (at -14 0) (size 2.5 2.5) (drill 1.1)
(layers *.Cu *.Mask F.SilkS)
(net 7 N-0000011)
)
)
(module R3-LARGE_PADS (layer F.Cu) (tedit 47E26765) (tstamp 52BF2099)
(at 49.53 82.55 180)
(descr "Resitance 3 pas")
(tags R)
(path /52BECE9B)
(autoplace_cost180 10)
(fp_text reference R12 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_text value 3K (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 13 N-000003)
)
(pad 2 thru_hole circle (at 3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 2 /ARC_OK)
)
(model discret/resistor.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module R3-LARGE_PADS (layer F.Cu) (tedit 47E26765) (tstamp 52BF20A7)
(at 83.82 93.98)
(descr "Resitance 3 pas")
(tags R)
(path /52BEC5FE)
(autoplace_cost180 10)
(fp_text reference R1 (at 0 0) (layer F.SilkS)
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_text value 3K3 (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 14 N-000005)
)
(pad 2 thru_hole circle (at 3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 4 /TORCH_ON)
)
(model discret/resistor.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module R3-LARGE_PADS (layer F.Cu) (tedit 47E26765) (tstamp 52BF20B5)
(at 83.82 97.155 180)
(descr "Resitance 3 pas")
(tags R)
(path /52BEC513)
(autoplace_cost180 10)
(fp_text reference R2 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_text value 1K (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 4 /TORCH_ON)
)
(pad 2 thru_hole circle (at 3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 8 N-0000012)
)
(model discret/resistor.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module R3-LARGE_PADS (layer F.Cu) (tedit 47E26765) (tstamp 52BF20C3)
(at 69.85 99.06)
(descr "Resitance 3 pas")
(tags R)
(path /52BEC4B5)
(autoplace_cost180 10)
(fp_text reference R3 (at 0 0) (layer F.SilkS)
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_text value 20K (at 0 0) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 8 N-0000012)
)
(pad 2 thru_hole circle (at 3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model discret/resistor.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module R3-LARGE_PADS (layer F.Cu) (tedit 47E26765) (tstamp 52BF20D1)
(at 96.52 110.49 180)
(descr "Resitance 3 pas")
(tags R)
(path /52BEC210)
(autoplace_cost180 10)
(fp_text reference R11 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_text value 100R (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 16 N-000009)
)
(pad 2 thru_hole circle (at 3.81 0 180) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 3 /FILT_SIG)
)
(model discret/resistor.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module LED-3MM (layer F.Cu) (tedit 50ADE848) (tstamp 52BF20F8)
(at 74.93 93.98 180)
(descr "LED 3mm - Lead pitch 100mil (2,54mm)")
(tags "LED led 3mm 3MM 100mil 2,54mm")
(path /52BEC5F1)
(fp_text reference D1 (at 1.778 -2.794 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.0889)))
)
(fp_text value LED (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.0889)))
)
(fp_line (start 1.8288 1.27) (end 1.8288 -1.27) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.27 0) (angle 39.8) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.88392 1.01092) (angle 41.6) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.4097 -0.9906) (angle 40.6) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.778 0) (angle 39.8) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 -1.524) (angle 54.4) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.9652 -0.9144) (angle 53.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.45542 0.93472) (angle 52.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 1.524) (angle 52.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.381 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.762 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.889 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.27 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 -2.032) (angle 50.1) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.5367 -0.95504) (angle 61.9) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end 1.8034 1.31064) (angle 49.7) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end 0.254 2.032) (angle 60.2) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.778 0) (angle 28.3) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.47574 1.06426) (angle 31.6) (layer F.SilkS) (width 0.254))
(pad 1 thru_hole circle (at -1.27 0 180) (size 1.6764 1.6764) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 14 N-000005)
)
(pad 2 thru_hole circle (at 1.27 0 180) (size 1.6764 1.6764) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model discret/leds/led3_vertical_verde.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED-3MM (layer F.Cu) (tedit 50ADE848) (tstamp 52BF2111)
(at 53.34 86.36 270)
(descr "LED 3mm - Lead pitch 100mil (2,54mm)")
(tags "LED led 3mm 3MM 100mil 2,54mm")
(path /52BECE95)
(fp_text reference D6 (at 1.778 -2.794 270) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.0889)))
)
(fp_text value LED (at 0 2.54 270) (layer F.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.0889)))
)
(fp_line (start 1.8288 1.27) (end 1.8288 -1.27) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.27 0) (angle 39.8) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.88392 1.01092) (angle 41.6) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.4097 -0.9906) (angle 40.6) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.778 0) (angle 39.8) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 -1.524) (angle 54.4) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.9652 -0.9144) (angle 53.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.45542 0.93472) (angle 52.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 1.524) (angle 52.1) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.381 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end -0.762 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.889 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 1.27 0) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.254 0) (end 0.254 -2.032) (angle 50.1) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.5367 -0.95504) (angle 61.9) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end 1.8034 1.31064) (angle 49.7) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end 0.254 2.032) (angle 60.2) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.778 0) (angle 28.3) (layer F.SilkS) (width 0.254))
(fp_arc (start 0.254 0) (end -1.47574 1.06426) (angle 31.6) (layer F.SilkS) (width 0.254))
(pad 1 thru_hole circle (at -1.27 0 270) (size 1.6764 1.6764) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 13 N-000003)
)
(pad 2 thru_hole circle (at 1.27 0 270) (size 1.6764 1.6764) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model discret/leds/led3_vertical_verde.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module D6 (layer F.Cu) (tedit 200000) (tstamp 52BF2149)
(at 92.71 116.84)
(descr "Diode 6 pas")
(tags DIODE)
(path /52BEC1B7)
(fp_text reference D5 (at -0.635 1.27) (layer F.SilkS)
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_text value "5v1 ZENER" (at -0.635 -1.27) (layer F.SilkS)
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_line (start -5.715 -3.175) (end -5.715 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.715 3.175) (end 5.715 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 3.175) (end 5.715 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 -3.175) (end -5.715 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 -3.175) (end 5.08 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 4.445 3.175) (end 4.445 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 0) (end 7.62 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.715 0) (end -7.62 0) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -7.62 0) (size 2.54 2.54) (drill 1.27)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(pad 2 thru_hole rect (at 7.62 0) (size 2.54 2.54) (drill 1.27)
(layers *.Cu *.Mask F.SilkS)
(net 16 N-000009)
)
(model discret/diode.wrl
(at (xyz 0 0 0))
(scale (xyz 0.6 0.6 0.6))
(rotate (xyz 0 0 0))
)
)
(module D6 (layer F.Cu) (tedit 200000) (tstamp 52BF2157)
(at 63.5 134.62 270)
(descr "Diode 6 pas")
(tags DIODE)
(path /52BEC020)
(fp_text reference D4 (at -0.635 1.27 270) (layer F.SilkS)
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_text value "400V 1.5kW TVS" (at -0.635 -1.27 270) (layer F.SilkS)
(effects (font (size 1.524 1.016) (thickness 0.3048)))
)
(fp_line (start -5.715 -3.175) (end -5.715 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.715 3.175) (end 5.715 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 3.175) (end 5.715 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 -3.175) (end -5.715 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.08 -3.175) (end 5.08 3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 4.445 3.175) (end 4.445 -3.175) (layer F.SilkS) (width 0.3048))
(fp_line (start 5.715 0) (end 7.62 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -5.715 0) (end -7.62 0) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -7.62 0 270) (size 2.54 2.54) (drill 1.27)
(layers *.Cu *.Mask F.SilkS)
(net 7 N-0000011)
)
(pad 2 thru_hole rect (at 7.62 0 270) (size 2.54 2.54) (drill 1.27)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model discret/diode.wrl
(at (xyz 0 0 0))
(scale (xyz 0.6 0.6 0.6))
(rotate (xyz 0 0 0))
)
)
(module D4 (layer F.Cu) (tedit 200000) (tstamp 52BF2165)
(at 53.34 91.44 180)
(descr "Diode 4 pas")
(tags "DIODE DEV")
(path /52BEC553)
(fp_text reference D2 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1.27 1.016) (thickness 0.2032)))
)
(fp_text value DIODE (at 0 0 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.016) (thickness 0.2032)))
)
(fp_line (start -3.81 -1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 -1.27) (end 3.81 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 1.27) (end -3.81 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 1.27) (end -3.81 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.175 -1.27) (end 3.175 1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -5.08 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.81 0) (end 5.08 0) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.778 1.778) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 9 N-0000013)
)
(pad 2 thru_hole rect (at 5.08 0 180) (size 1.778 1.778) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 1 +12V)
)
(model discret/diode.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module C2V10 (layer F.Cu) (tedit 41854742) (tstamp 52BF216C)
(at 82.55 107.95 180)
(descr "Condensateur polarise")
(tags CP)
(path /52EE9E93)
(fp_text reference C1 (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.254)))
)
(fp_text value 10uF (at 0 -2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 4.826 -2.794) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole rect (at -2.54 0 180) (size 1.778 1.778) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 3 /FILT_SIG)
)
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.778 1.778) (drill 1.016)
(layers *.Cu *.Mask F.SilkS)
(net 5 GND)
)
(model discret/c_vert_c2v10.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(dimension 78.105 (width 0.3) (layer Eco2.User)
(gr_text "78,105 mm" (at 66.9925 181.054999) (layer Eco2.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 106.045 170.18) (xy 106.045 182.404999)))
(feature2 (pts (xy 27.94 170.18) (xy 27.94 182.404999)))
(crossbar (pts (xy 27.94 179.704999) (xy 106.045 179.704999)))
(arrow1a (pts (xy 106.045 179.704999) (xy 104.918497 180.291419)))
(arrow1b (pts (xy 106.045 179.704999) (xy 104.918497 179.118579)))
(arrow2a (pts (xy 27.94 179.704999) (xy 29.066503 180.291419)))
(arrow2b (pts (xy 27.94 179.704999) (xy 29.066503 179.118579)))
)
(dimension 100.33 (width 0.3) (layer Edge.Cuts)
(gr_text "100,330 mm" (at 136.605 122.555 90) (layer Edge.Cuts)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 104.775 72.39) (xy 137.955 72.39)))
(feature2 (pts (xy 104.775 172.72) (xy 137.955 172.72)))
(crossbar (pts (xy 135.255 172.72) (xy 135.255 72.39)))
(arrow1a (pts (xy 135.255 72.39) (xy 135.84142 73.516503)))
(arrow1b (pts (xy 135.255 72.39) (xy 134.66858 73.516503)))
(arrow2a (pts (xy 135.255 172.72) (xy 135.84142 171.593497)))
(arrow2b (pts (xy 135.255 172.72) (xy 134.66858 171.593497)))
)
(gr_line (start 106.045 172.72) (end 106.045 72.39) (angle 90) (layer Eco2.User) (width 0.2))
(gr_line (start 27.94 172.72) (end 33.02 172.72) (angle 90) (layer Eco2.User) (width 0.2))
(gr_line (start 27.94 72.39) (end 27.94 172.72) (angle 90) (layer Eco2.User) (width 0.2))
(gr_line (start 27.94 72.39) (end 165.1 72.39) (angle 90) (layer Eco2.User) (width 0.2))
(gr_line (start 33.02 172.72) (end 184.15 172.72) (angle 90) (layer Eco2.User) (width 0.2))
(segment (start 48.26 91.44) (end 48.26 83.185) (width 1) (layer B.Cu) (net 1))
(segment (start 83.82 81.28) (end 83.82 82.55) (width 1) (layer B.Cu) (net 1) (tstamp 52EEB533))
(segment (start 80.645 78.105) (end 83.82 81.28) (width 1) (layer B.Cu) (net 1) (tstamp 52EEB531))
(segment (start 53.34 78.105) (end 80.645 78.105) (width 1) (layer B.Cu) (net 1) (tstamp 52EEB52E))
(segment (start 48.26 83.185) (end 53.34 78.105) (width 1) (layer B.Cu) (net 1) (tstamp 52EEB52C))
(segment (start 48.26 91.44) (end 41.91 91.44) (width 2) (layer B.Cu) (net 1))
(segment (start 54.18 113.03) (end 58.34 108.87) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB433))
(segment (start 35.56 113.03) (end 54.18 113.03) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB430))
(segment (start 31.75 109.22) (end 35.56 113.03) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB42F))
(segment (start 31.75 99.06) (end 31.75 109.22) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB42C))
(segment (start 33.02 97.79) (end 31.75 99.06) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB42B))
(segment (start 35.56 97.79) (end 33.02 97.79) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB42A))
(segment (start 41.91 91.44) (end 35.56 97.79) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB41B))
(segment (start 35.83 87.59) (end 44.41 87.59) (width 2) (layer B.Cu) (net 1))
(segment (start 44.41 87.59) (end 48.26 91.44) (width 2) (layer B.Cu) (net 1) (tstamp 52EEB334))
(segment (start 45.72 82.55) (end 45.72 80.645) (width 1) (layer B.Cu) (net 2))
(segment (start 86.487 80.137) (end 86.487 82.55) (width 1) (layer B.Cu) (net 2) (tstamp 52EEB529))
(segment (start 81.915 75.565) (end 86.487 80.137) (width 1) (layer B.Cu) (net 2) (tstamp 52EEB525))
(segment (start 50.8 75.565) (end 81.915 75.565) (width 1) (layer B.Cu) (net 2) (tstamp 52EEB523))
(segment (start 45.72 80.645) (end 50.8 75.565) (width 1) (layer B.Cu) (net 2) (tstamp 52EEB522))
(segment (start 45.72 82.55) (end 35.87 82.55) (width 2) (layer B.Cu) (net 2))
(segment (start 35.87 82.55) (end 35.83 82.59) (width 2) (layer B.Cu) (net 2) (tstamp 52EEB331))
(segment (start 92.71 104.14) (end 92.71 93.98) (width 1) (layer B.Cu) (net 3))
(segment (start 85.09 86.36) (end 85.09 85.09) (width 1) (layer B.Cu) (net 3) (tstamp 52EEB4B2))
(segment (start 92.71 93.98) (end 85.09 86.36) (width 1) (layer B.Cu) (net 3) (tstamp 52EEB4AA))
(segment (start 92.71 110.49) (end 87.63 110.49) (width 2) (layer B.Cu) (net 3))
(segment (start 87.63 110.49) (end 85.09 107.95) (width 2) (layer B.Cu) (net 3) (tstamp 52EEB3E4))
(segment (start 92.71 110.49) (end 92.71 104.14) (width 1) (layer B.Cu) (net 3))
(segment (start 87.63 97.155) (end 87.63 93.98) (width 1) (layer B.Cu) (net 4))
(segment (start 79.629 85.09) (end 79.629 85.979) (width 1) (layer B.Cu) (net 4))