-
Notifications
You must be signed in to change notification settings - Fork 0
/
PlacaReceptora.kicad_pcb
1277 lines (1250 loc) · 96.4 KB
/
PlacaReceptora.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.1.2)-2")
(general
(thickness 1.6)
(drawings 4)
(tracks 103)
(zones 0)
(modules 17)
(nets 21)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user hide)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.6)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x00040_7ffffffe)
(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 5)
(mirror false)
(drillshape 2)
(scaleselection 1)
(outputdirectory "Fotolitos/Placa Receptora/"))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(J1-Pad2)")
(net 3 "Net-(J1-Pad3)")
(net 4 "Net-(J1-Pad4)")
(net 5 "Net-(J1-Pad5)")
(net 6 VCC)
(net 7 "Net-(C7-Pad1)")
(net 8 "Net-(C1-Pad1)")
(net 9 "Net-(C1-Pad2)")
(net 10 "Net-(C2-Pad2)")
(net 11 "Net-(C2-Pad1)")
(net 12 "Net-(C3-Pad2)")
(net 13 "Net-(C3-Pad1)")
(net 14 "Net-(C4-Pad1)")
(net 15 "Net-(C5-Pad2)")
(net 16 "Net-(RV1-Pad1)")
(net 17 "Net-(RV1-Pad2)")
(net 18 "Net-(RV2-Pad1)")
(net 19 "Net-(RV2-Pad2)")
(net 20 "Net-(J2-Pad2)")
(net_class Default "Esta é a classe de rede padrão."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
)
(net_class Kek ""
(clearance 0.2)
(trace_width 0.5)
(via_dia 0.8)
(via_drill 0.5)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net GND)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(C1-Pad2)")
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C2-Pad2)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C3-Pad2)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(C5-Pad2)")
(add_net "Net-(C7-Pad1)")
(add_net "Net-(J1-Pad2)")
(add_net "Net-(J1-Pad3)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J1-Pad5)")
(add_net "Net-(J2-Pad2)")
(add_net "Net-(RV1-Pad1)")
(add_net "Net-(RV1-Pad2)")
(add_net "Net-(RV2-Pad1)")
(add_net "Net-(RV2-Pad2)")
)
(net_class Vcc ""
(clearance 0.2)
(trace_width 0.7)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net VCC)
)
(module Potentiometers:Potentiometer_Trimmer_ACP_CA9v_Horizontal_Px10.0mm_Py5.0mm (layer F.Cu) (tedit 58826B0A) (tstamp 5DDD8EC4)
(at 167.767 48.768 180)
(descr "Potentiometer, horizontally mounted, Omeg PC16PU, Omeg PC16PU, Omeg PC16PU, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GH/249GH Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148A/149A Single with mounting plates, Vishay/Spectrol 148/149 Double, Vishay/Spectrol 148A/149A Double with mounting plates, Piher PC-16 Single, Piher PC-16 Single, Piher PC-16 Single, Piher PC-16SV Single, Piher PC-16 Double, Piher PC-16 Triple, Piher T16H Single, Piher T16L Single, Piher T16H Double, Alps RK163 Single, Alps RK163 Double, Alps RK097 Single, Alps RK097 Double, Bourns PTV09A-2 Single with mounting sleve Single, Bourns PTV09A-1 with mounting sleve Single, Bourns PRS11S Single, Alps RK09K Single with mounting sleve Single, Alps RK09K with mounting sleve Single, Alps RK09L Single, Alps RK09L Single, Alps RK09L Double, Alps RK09L Double, Alps RK09Y Single, Bourns 3339S Single, Bourns 3339S Single, Bourns 3339P Single, Bourns 3339H Single, Vishay T7YA Single, Suntan TSR-3386H Single, Suntan TSR-3386H Single, Suntan TSR-3386P Single, Vishay T73XX Single, Vishay T73XX Single, Vishay T73YP Single, Piher PT-6h Single, Piher PT-6v Single, Piher PT-6v Single, Piher PT-10h2.5 Single, Piher PT-10h5 Single, Piher PT-101h3.8 Single, Piher PT-10v10 Single, Piher PT-10v10 Single, Piher PT-10v5 Single, Piher PT-15h5 Single, Piher PT-15h2.5 Single, Piher PT-15B Single, Piher PT-15hc5 Single, Piher PT-15v12.5 Single, Piher PT-15v12.5 Single, Piher PT-15v15 Single, Piher PT-15v15 Single, ACP CA6h Single, ACP CA6v Single, ACP CA6v Single, ACP CA6VSMD Single, ACP CA6VSMD Single, ACP CA9h2.5 Single, ACP CA9h3.8 Single, ACP CA9h5 Single, ACP CA9V Single, http://www.acptechnologies.com/wp-content/uploads/2016/12/ACP-CAT%C3%81LOGO-ENTERO-2016.pdf")
(tags "Potentiometer horizontal Omeg PC16PU Omeg PC16PU Omeg PC16PU Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GH/249GH Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148A/149A Single with mounting plates Vishay/Spectrol 148/149 Double Vishay/Spectrol 148A/149A Double with mounting plates Piher PC-16 Single Piher PC-16 Single Piher PC-16 Single Piher PC-16SV Single Piher PC-16 Double Piher PC-16 Triple Piher T16H Single Piher T16L Single Piher T16H Double Alps RK163 Single Alps RK163 Double Alps RK097 Single Alps RK097 Double Bourns PTV09A-2 Single with mounting sleve Single Bourns PTV09A-1 with mounting sleve Single Bourns PRS11S Single Alps RK09K Single with mounting sleve Single Alps RK09K with mounting sleve Single Alps RK09L Single Alps RK09L Single Alps RK09L Double Alps RK09L Double Alps RK09Y Single Bourns 3339S Single Bourns 3339S Single Bourns 3339P Single Bourns 3339H Single Vishay T7YA Single Suntan TSR-3386H Single Suntan TSR-3386H Single Suntan TSR-3386P Single Vishay T73XX Single Vishay T73XX Single Vishay T73YP Single Piher PT-6h Single Piher PT-6v Single Piher PT-6v Single Piher PT-10h2.5 Single Piher PT-10h5 Single Piher PT-101h3.8 Single Piher PT-10v10 Single Piher PT-10v10 Single Piher PT-10v5 Single Piher PT-15h5 Single Piher PT-15h2.5 Single Piher PT-15B Single Piher PT-15hc5 Single Piher PT-15v12.5 Single Piher PT-15v12.5 Single Piher PT-15v15 Single Piher PT-15v15 Single ACP CA6h Single ACP CA6v Single ACP CA6v Single ACP CA6VSMD Single ACP CA6VSMD Single ACP CA9h2.5 Single ACP CA9h3.8 Single ACP CA9h5 Single ACP CA9V Single")
(path /5DD7DFA3)
(fp_text reference RV2 (at 5 -8.65) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value R_POT_1K_Ganho (at 4.191 3.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 11.45 -7.65) (end -1.45 -7.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.45 2.7) (end 11.45 -7.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 2.7) (end 11.45 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -7.65) (end -1.45 2.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.06 -1.135) (end 10.06 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start 10.06 -7.461) (end 10.06 -3.865) (layer F.SilkS) (width 0.12))
(fp_line (start -0.06 1.365) (end -0.06 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.06 -3.635) (end -0.06 -1.365) (layer F.SilkS) (width 0.12))
(fp_line (start -0.06 -7.461) (end -0.06 -6.365) (layer F.SilkS) (width 0.12))
(fp_line (start -0.06 2.46) (end 10.06 2.46) (layer F.SilkS) (width 0.12))
(fp_line (start -0.06 -7.461) (end 10.06 -7.461) (layer F.SilkS) (width 0.12))
(fp_line (start 10 -7.4) (end 0 -7.4) (layer F.Fab) (width 0.1))
(fp_line (start 10 2.4) (end 10 -7.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.4) (end 10 2.4) (layer F.Fab) (width 0.1))
(fp_line (start 0 -7.4) (end 0 2.4) (layer F.Fab) (width 0.1))
(fp_circle (center 5 -2.5) (end 6.05 -2.5) (layer F.SilkS) (width 0.12))
(fp_circle (center 5 -2.5) (end 6.05 -2.5) (layer F.Fab) (width 0.1))
(fp_circle (center 5 -2.5) (end 6.5 -2.5) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 180) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 18 "Net-(RV2-Pad1)"))
(pad 2 thru_hole circle (at 10 -2.5 180) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 19 "Net-(RV2-Pad2)"))
(pad 3 thru_hole circle (at 0 -5 180) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 12 "Net-(C3-Pad2)"))
(model Potentiometers.3dshapes/Potentiometer_Trimmer_ACP_CA9v_Horizontal_Px10.0mm_Py5.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD606E)
(at 178.308 52.705)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DDE1F27)
(fp_text reference C7 (at 2.5 -4.31) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_500nF_ou_Mais (at 7.112 2.159 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.5 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C7-Pad1)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD93C9)
(at 152.273 62.865 270)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DDDAFCE)
(fp_text reference C1 (at 2.5 -4.31 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_FiltroAC (at 4.191 6.477 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.5 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C1-Pad1)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector:Tayda_3.5mm_stereo_TRS_jack_A-853 (layer F.Cu) (tedit 56D1364A) (tstamp 5DDD6E6A)
(at 134.747 61.468 90)
(path /5DD7CE74)
(fp_text reference J1 (at -4.318 7.112 90) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(fp_text value JACK_TRS (at 0 0.508 90) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.1)))
)
(fp_line (start -1.778 -1.524) (end -3.81 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 -1.524) (end -3.81 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start -3.81 -5.08) (end 3.81 -5.08) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 -5.08) (end 3.81 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 -1.524) (end 1.778 -1.524) (layer F.SilkS) (width 0.15))
(fp_line (start -5.08 -6.096) (end -6.096 -6.096) (layer F.SilkS) (width 0.15))
(fp_line (start 6.096 -6.096) (end 5.08 -6.096) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 -8.128) (end -2.54 -6.604) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -6.604) (end 2.54 -8.128) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 -7.366) (end 2.54 -7.366) (layer F.SilkS) (width 0.15))
(fp_line (start -5.08 -6.096) (end -5.08 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -5.08 -6.35) (end -5.08 -6.604) (layer F.SilkS) (width 0.15))
(fp_line (start -5.08 -6.604) (end 5.08 -6.604) (layer F.SilkS) (width 0.15))
(fp_line (start 5.08 -6.604) (end 5.08 -6.096) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 -8.128) (end 2.54 -8.128) (layer F.SilkS) (width 0.15))
(fp_line (start -6.096 6.096) (end -6.096 -6.096) (layer F.SilkS) (width 0.15))
(fp_line (start 6.096 -6.096) (end 6.096 6.096) (layer F.SilkS) (width 0.15))
(fp_line (start 6.096 6.096) (end -6.096 6.096) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -1.596 90) (size 3.5 2.5) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole oval (at 5 3.41 90) (size 1.75 3.5) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 2 "Net-(J1-Pad2)"))
(pad 3 thru_hole oval (at -5 3.41 90) (size 1.75 3.5) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 3 "Net-(J1-Pad3)"))
(pad 4 thru_hole oval (at 2.5 3.41 90) (size 1.75 3.5) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(J1-Pad4)"))
(pad 5 thru_hole oval (at -2.5 3.41 90) (size 1.75 3.5) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 5 "Net-(J1-Pad5)"))
)
(module Connector:BotaoOnOffMenor (layer F.Cu) (tedit 5DDD25A8) (tstamp 5DDD5539)
(at 176.149 66.04 270)
(path /5DDCAAAC)
(fp_text reference SW2 (at 0 6.5 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_OnOff (at -2.54 -5.715 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 4.5) (end 7 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 7 4.5) (end 7.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 7.5 4.5) (end 7.5 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 7.5 -4.5) (end -7.5 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -7.5 -4.5) (end -7.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -7.5 4.5) (end -3.5 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -3.5 4.5) (end -3.5 -4.5) (layer F.SilkS) (width 0.15))
(fp_circle (center -2.032 0) (end -7.62 0) (layer F.SilkS) (width 0.15))
(fp_circle (center -2.032 0) (end -2.032 -4.064) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole oval (at -7.112 0 270) (size 2.2 3.4) (drill oval 0.7 2) (layers *.Cu *.Mask)
(net 6 VCC))
(pad 2 thru_hole oval (at -2.032 0 270) (size 2.2 3.4) (drill oval 0.7 2) (layers *.Cu *.Mask)
(net 7 "Net-(C7-Pad1)"))
)
(module Connector:SW_7x7_6Pinos (layer F.Cu) (tedit 5DDC8F56) (tstamp 5DDD5550)
(at 151.384 57.404 90)
(path /5DDD5EF4)
(fp_text reference SW4 (at 0 4.5 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SW_DPDT_x2 (at 0.508 -4.572 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3.5 3.5) (end 3.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 3.5 3.5) (end 3.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start 3.5 -3.5) (end -3.5 -3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -3.5 -3.5) (end -3.5 3.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1 -1) (end 0 1) (layer F.SilkS) (width 0.15))
(fp_line (start 0 1) (end 1 -1) (layer F.SilkS) (width 0.15))
(fp_line (start 0.5 0) (end -0.5 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.75 0.25) (end 1.75 -0.25) (layer F.SilkS) (width 0.15))
(fp_line (start 1.75 -0.25) (end 2.5 -0.25) (layer F.SilkS) (width 0.15))
(fp_line (start 2.5 -0.25) (end 2.5 0.25) (layer F.SilkS) (width 0.15))
(fp_line (start 2.5 0.25) (end 1.75 0.25) (layer F.SilkS) (width 0.15))
(fp_text user NC (at -5.08 -2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user NO (at 5.08 -2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole oval (at -2 -2.54 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(J2-Pad2)"))
(pad 2 thru_hole oval (at 0 -2.54 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(RV1-Pad1)"))
(pad 3 thru_hole oval (at 2 -2.54 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(J1-Pad2)"))
(pad 4 thru_hole oval (at -2 2.5 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C1-Pad1)"))
(pad 5 thru_hole oval (at 0 2.5 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(RV1-Pad2)"))
(pad 6 thru_hole oval (at 2 2.5 90) (size 1.524 2.25) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad2)"))
(model ${KIPRJMOD}/AudioJack/SW_7x7_6pins.stp
(offset (xyz -3.5 -3.5 1.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Terminal_Blocks:TerminalBlock_bornier-2_P5.08mm (layer F.Cu) (tedit 59FF03AB) (tstamp 5DDD5F69)
(at 137.668 72.009 270)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(path /5DD7CBA6)
(fp_text reference J2 (at 2.54 -5.08 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PainelSolar (at 2.54 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 7.79 4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.54 3.81) (end 7.62 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 -3.81) (end -2.54 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 3.81) (end 7.62 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 2.54) (end -2.54 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 3.75) (end 7.54 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 3.75) (end 7.54 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -3.75) (end -2.46 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.41 2.55) (end 7.49 2.55) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.54 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5.08 0 270) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 20 "Net-(J2-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Terminal_Blocks.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl
(offset (xyz 2.539999961853027 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Terminal_Blocks:TerminalBlock_bornier-2_P5.08mm (layer F.Cu) (tedit 59FF03AB) (tstamp 5DDD7127)
(at 176.53 74.803 270)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(path /5DDC9D10)
(fp_text reference J3 (at 2.54 -5.08 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Screw_Terminal_Fonte (at 2.54 0.254 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.54 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.41 2.55) (end 7.49 2.55) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -3.75) (end -2.46 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 3.75) (end 7.54 3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 3.75) (end 7.54 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.62 2.54) (end -2.54 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 3.81) (end 7.62 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 -3.81) (end -2.54 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 3.81) (end 7.62 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.71 -4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 270) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 7 "Net-(C7-Pad1)"))
(pad 2 thru_hole circle (at 5.08 0 270) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Terminal_Blocks.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl
(offset (xyz 2.539999961853027 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Terminal_Blocks:TerminalBlock_bornier-2_P5.08mm (layer F.Cu) (tedit 59FF03AB) (tstamp 5DDD5F93)
(at 160.401 78.867 180)
(descr "simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2")
(tags "terminal block bornier2")
(path /5DDE363B)
(fp_text reference LS1 (at 2.54 -5.08) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Speaker (at 2.54 5.08) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 7.79 4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.79 4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end -2.71 4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.71 -4) (end 7.79 -4) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.54 3.81) (end 7.62 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -2.54 -3.81) (end -2.54 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 -3.81) (end -2.54 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 3.81) (end 7.62 -3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 2.54) (end -2.54 2.54) (layer F.SilkS) (width 0.12))
(fp_line (start 7.54 -3.75) (end -2.46 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.54 3.75) (end 7.54 -3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 3.75) (end 7.54 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.46 -3.75) (end -2.46 3.75) (layer F.Fab) (width 0.1))
(fp_line (start -2.41 2.55) (end 7.49 2.55) (layer F.Fab) (width 0.1))
(fp_text user %R (at 2.54 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole circle (at 5.08 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0 180) (size 3 3) (drill 1.52) (layers *.Cu *.Mask)
(net 15 "Net-(C5-Pad2)"))
(model ${KISYS3DMOD}/Terminal_Blocks.3dshapes/TerminalBlock_bornier-2_P5.08mm.wrl
(offset (xyz 2.539999961853027 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5DDD5FA9)
(at 162.306 72.009 180)
(descr "Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm")
(path /5DDE5092)
(fp_text reference R1 (at 6.35 -2.66) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10R_FiltroParalelo (at 6.35 2.66) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 13.75 -1.95) (end -1.05 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 13.75 1.95) (end 13.75 -1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.95) (end 13.75 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.95) (end -1.05 1.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.72 0) (end 10.91 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.79 0) (layer F.SilkS) (width 0.12))
(fp_line (start 10.91 -1.66) (end 1.79 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 10.91 1.66) (end 10.91 -1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 1.79 1.66) (end 10.91 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 1.79 -1.66) (end 1.79 1.66) (layer F.SilkS) (width 0.12))
(fp_line (start 12.7 0) (end 10.85 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.85 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.85 -1.6) (end 1.85 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 10.85 1.6) (end 10.85 -1.6) (layer F.Fab) (width 0.1))
(fp_line (start 1.85 1.6) (end 10.85 1.6) (layer F.Fab) (width 0.1))
(fp_line (start 1.85 -1.6) (end 1.85 1.6) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C2-Pad2)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Potentiometers:Potentiometer_Piher_PC-16_Single_Vertical (layer F.Cu) (tedit 58826B08) (tstamp 5DDD5FCC)
(at 142.621 52.197 90)
(descr "Potentiometer, vertically mounted, Omeg PC16PU, Omeg PC16PU, Omeg PC16PU, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GJ/249GJ Single, Vishay/Spectrol 248GH/249GH Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148/149 Single, Vishay/Spectrol 148A/149A Single with mounting plates, Vishay/Spectrol 148/149 Double, Vishay/Spectrol 148A/149A Double with mounting plates, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf")
(tags "Potentiometer vertical Omeg PC16PU Omeg PC16PU Omeg PC16PU Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GJ/249GJ Single Vishay/Spectrol 248GH/249GH Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148/149 Single Vishay/Spectrol 148A/149A Single with mounting plates Vishay/Spectrol 148/149 Double Vishay/Spectrol 148A/149A Double with mounting plates Piher PC-16 Single")
(path /5DD6A351)
(fp_text reference RV1 (at 0 -14.25 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value R_POT_Volume (at 3.429 -4.953 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 31.75 -13.25) (end -1.75 -13.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 31.75 3.25) (end 31.75 -13.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 3.25) (end 31.75 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -13.25) (end -1.75 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 31.56 -8.06) (end 31.56 -1.94) (layer F.SilkS) (width 0.12))
(fp_line (start 15.56 -8.06) (end 15.56 -1.94) (layer F.SilkS) (width 0.12))
(fp_line (start 15.56 -1.94) (end 31.56 -1.94) (layer F.SilkS) (width 0.12))
(fp_line (start 15.56 -8.06) (end 31.56 -8.06) (layer F.SilkS) (width 0.12))
(fp_line (start 15.56 -10.06) (end 15.56 0.06) (layer F.SilkS) (width 0.12))
(fp_line (start 6.56 -10.06) (end 6.56 0.06) (layer F.SilkS) (width 0.12))
(fp_line (start 6.56 0.06) (end 15.56 0.06) (layer F.SilkS) (width 0.12))
(fp_line (start 6.56 -10.06) (end 15.56 -10.06) (layer F.SilkS) (width 0.12))
(fp_line (start 6.56 -13.06) (end 6.56 3.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.56 -13.06) (end -1.56 3.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.56 3.06) (end 6.56 3.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.56 -13.06) (end 6.56 -13.06) (layer F.SilkS) (width 0.12))
(fp_line (start 31.5 -8) (end 15.5 -8) (layer F.Fab) (width 0.1))
(fp_line (start 31.5 -2) (end 31.5 -8) (layer F.Fab) (width 0.1))
(fp_line (start 15.5 -2) (end 31.5 -2) (layer F.Fab) (width 0.1))
(fp_line (start 15.5 -8) (end 15.5 -2) (layer F.Fab) (width 0.1))
(fp_line (start 15.5 -10) (end 6.5 -10) (layer F.Fab) (width 0.1))
(fp_line (start 15.5 0) (end 15.5 -10) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 0) (end 15.5 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -10) (end 6.5 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -13) (end -1.5 -13) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 3) (end 6.5 -13) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 3) (end 6.5 3) (layer F.Fab) (width 0.1))
(fp_line (start -1.5 -13) (end -1.5 3) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 16 "Net-(RV1-Pad1)"))
(pad 2 thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 17 "Net-(RV1-Pad2)"))
(pad 3 thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
(net 1 GND))
(model Potentiometers.3dshapes/Potentiometer_Piher_PC-16_Single_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Housings_DIP:DIP-8_W7.62mm_LongPads (layer F.Cu) (tedit 59C78D6B) (tstamp 5DDD6001)
(at 158.115 59.055)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads")
(path /5DD6A93C)
(fp_text reference U1 (at 3.81 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LM386 (at 3.429 8.001) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 9.1 -1.55) (end -1.45 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.1 9.15) (end 9.1 -1.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 9.15) (end 9.1 9.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.45 -1.55) (end -1.45 9.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 6.06 8.95) (end 6.06 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 8.95) (end 6.06 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.56 -1.33) (end 1.56 8.95) (layer F.SilkS) (width 0.12))
(fp_line (start 2.81 -1.33) (end 1.56 -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 8.89) (end 0.635 -0.27) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer F.Fab) (width 0.1))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (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 8 thru_hole oval (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C3-Pad1)"))
(pad 4 thru_hole oval (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 7 thru_hole oval (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(C4-Pad1)"))
(pad 3 thru_hole oval (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C1-Pad2)"))
(pad 6 thru_hole oval (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 VCC))
(pad 2 thru_hole oval (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 5 thru_hole oval (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C2-Pad1)"))
(pad 1 thru_hole rect (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(RV2-Pad2)"))
(model ${KISYS3DMOD}/Housings_DIP.3dshapes/DIP-8_W7.62mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD6014)
(at 169.926 71.882 180)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DDE3EB8)
(fp_text reference C2 (at 2.5 -4.31) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_47nF_Filtro_Paralelo (at -3.81 2.286) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.5 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C2-Pad1)"))
(pad 2 thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C2-Pad2)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD7D62)
(at 173.482 55.245 90)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DD7E5BD)
(fp_text reference C3 (at 2.5 -4.31 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_10nF_Ganho (at 8.509 -1.27 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.5 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C3-Pad2)"))
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD6038)
(at 154.559 49.403 180)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DD8720F)
(fp_text reference C4 (at 2.5 -4.31) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_0.1nF_Estabilidade (at 6.731 4.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.5 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(C4-Pad1)"))
(pad 2 thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD6294)
(at 167.386 76.454 270)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DDE9C7C)
(fp_text reference C5 (at 2.5 -4.31 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_FiltroAC_470nF (at 8.382 0.254 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.5 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C2-Pad1)"))
(pad 2 thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(C5-Pad2)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:CP_Radial_Tantal_D6.0mm_P5.00mm (layer F.Cu) (tedit 597C781B) (tstamp 5DDD605C)
(at 146.812 81.407 90)
(descr "CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf")
(tags "CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor")
(path /5DDEBF73)
(fp_text reference C6 (at 2.5 -4.31 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CP_2.2uF_FiltroATestar (at -3.429 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.5 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.05 -3.35) (end -1.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.05 3.35) (end 6.05 -3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 3.35) (end 6.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -3.35) (end -1.05 3.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 0) (end -1 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -0.65) (end -1.6 0.65) (layer F.Fab) (width 0.1))
(fp_line (start -2.2 0) (end -1 0) (layer F.Fab) (width 0.1))
(fp_circle (center 2.5 0) (end 5.5 0) (layer F.Fab) (width 0.1))
(fp_arc (start 2.5 0) (end -0.355819 1.18) (angle -135.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.5 0) (end -0.355819 -1.18) (angle 135.1) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(C5-Pad2)"))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_Tantal_D6.0mm_P5.00mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text V1 (at 183.388 82.804) (layer B.Cu)
(effects (font (size 2 2) (thickness 0.3)) (justify mirror))
)
(gr_text Da_10 (at 181.864 47.752) (layer B.Cu)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text + (at 160.528 75.184) (layer B.Cu) (tstamp 5DDD83D8)
(effects (font (size 2 2) (thickness 0.3)) (justify mirror))
)
(gr_text + (at 132.08 77.216) (layer B.Cu)
(effects (font (size 2 2) (thickness 0.3)) (justify mirror))
)
(segment (start 150.73737 72.009) (end 149.606 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 154.081 72.009) (end 150.73737 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 158.115 67.975) (end 154.081 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 158.115 66.675) (end 158.115 67.975) (width 0.5) (layer B.Cu) (net 1))
(segment (start 133.151 52.727) (end 132.621 52.197) (width 0.5) (layer B.Cu) (net 1))
(segment (start 133.151 61.468) (end 133.151 52.727) (width 0.5) (layer B.Cu) (net 1))
(segment (start 147.527 47.371) (end 149.559 49.403) (width 0.5) (layer B.Cu) (net 1))
(segment (start 132.621 52.197) (end 137.447 47.371) (width 0.5) (layer B.Cu) (net 1))
(segment (start 137.447 47.371) (end 147.527 47.371) (width 0.5) (layer B.Cu) (net 1))
(segment (start 159.815 66.675) (end 158.115 66.675) (width 0.5) (layer B.Cu) (net 1))
(segment (start 161.1875 65.3025) (end 159.815 66.675) (width 0.5) (layer B.Cu) (net 1))
(segment (start 161.1875 62.6355) (end 161.1875 65.3025) (width 0.5) (layer B.Cu) (net 1))
(segment (start 158.115 61.595) (end 160.147 61.595) (width 0.5) (layer B.Cu) (net 1))
(segment (start 160.147 61.595) (end 161.1875 62.6355) (width 0.5) (layer B.Cu) (net 1))
(segment (start 149.606 73.613) (end 149.606 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 146.812 76.407) (end 149.606 73.613) (width 0.5) (layer B.Cu) (net 1))
(segment (start 149.606 73.152) (end 149.606 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 155.321 78.867) (end 149.606 73.152) (width 0.5) (layer B.Cu) (net 1))
(segment (start 183.308 73.105) (end 183.308 52.705) (width 0.5) (layer B.Cu) (net 1))
(segment (start 176.53 79.883) (end 183.308 73.105) (width 0.5) (layer B.Cu) (net 1))
(segment (start 175.030001 81.382999) (end 172.617001 81.382999) (width 0.5) (layer B.Cu) (net 1))
(segment (start 176.53 79.883) (end 175.030001 81.382999) (width 0.5) (layer B.Cu) (net 1))
(segment (start 172.617001 81.382999) (end 170.18 83.82) (width 0.5) (layer B.Cu) (net 1))
(segment (start 170.18 83.82) (end 143.764 83.82) (width 0.5) (layer B.Cu) (net 1))
(segment (start 143.764 83.82) (end 141.732 81.788) (width 0.5) (layer B.Cu) (net 1))
(segment (start 141.732 81.788) (end 141.732 79.756) (width 0.5) (layer B.Cu) (net 1))
(segment (start 143.463 79.756) (end 146.812 76.407) (width 0.5) (layer B.Cu) (net 1))
(segment (start 141.732 79.756) (end 143.463 79.756) (width 0.5) (layer B.Cu) (net 1))
(segment (start 135.668 72.009) (end 137.668 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 133.151 69.492) (end 135.668 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 133.151 61.468) (end 133.151 69.492) (width 0.5) (layer B.Cu) (net 1))
(segment (start 135.255 72.009) (end 137.668 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 134.62 72.644) (end 135.255 72.009) (width 0.5) (layer B.Cu) (net 1))
(segment (start 134.62 78.74) (end 134.62 72.644) (width 0.5) (layer B.Cu) (net 1))
(segment (start 141.732 79.756) (end 135.636 79.756) (width 0.5) (layer B.Cu) (net 1))
(segment (start 135.636 79.756) (end 134.62 78.74) (width 0.5) (layer B.Cu) (net 1))
(segment (start 148.844 54.864) (end 148.844 55.404) (width 0.5) (layer B.Cu) (net 2))
(segment (start 138.157 55.093) (end 140.208 53.042) (width 0.5) (layer B.Cu) (net 2))
(segment (start 138.157 56.468) (end 138.157 55.093) (width 0.5) (layer B.Cu) (net 2))
(segment (start 140.208 53.042) (end 140.208 51.308) (width 0.5) (layer B.Cu) (net 2))
(segment (start 140.208 51.308) (end 141.732 49.784) (width 0.5) (layer B.Cu) (net 2))
(segment (start 141.732 49.784) (end 143.764 49.784) (width 0.5) (layer B.Cu) (net 2))
(segment (start 143.764 49.784) (end 148.844 54.864) (width 0.5) (layer B.Cu) (net 2))
(segment (start 168.542 64.135) (end 165.735 64.135) (width 0.7) (layer B.Cu) (net 6))
(segment (start 176.149 58.928) (end 173.749 58.928) (width 0.7) (layer B.Cu) (net 6))
(segment (start 173.749 58.928) (end 168.542 64.135) (width 0.7) (layer B.Cu) (net 6))
(segment (start 176.53 64.389) (end 176.149 64.008) (width 0.5) (layer B.Cu) (net 7))
(segment (start 176.53 74.803) (end 176.53 64.389) (width 0.5) (layer B.Cu) (net 7))
(segment (start 177.673 64.008) (end 176.149 64.008) (width 0.5) (layer B.Cu) (net 7))
(segment (start 180.213 61.468) (end 177.673 64.008) (width 0.5) (layer B.Cu) (net 7))
(segment (start 180.213 55.91) (end 180.213 61.468) (width 0.5) (layer B.Cu) (net 7))
(segment (start 178.308 52.705) (end 178.308 54.005) (width 0.5) (layer B.Cu) (net 7))
(segment (start 178.308 54.005) (end 180.213 55.91) (width 0.5) (layer B.Cu) (net 7))
(segment (start 152.273 61.015) (end 153.884 59.404) (width 0.5) (layer B.Cu) (net 8))
(segment (start 152.273 62.865) (end 152.273 61.015) (width 0.5) (layer B.Cu) (net 8))
(segment (start 158.115 64.135) (end 158.515 64.135) (width 0.5) (layer B.Cu) (net 9))
(segment (start 156.003 64.135) (end 152.273 67.865) (width 0.5) (layer B.Cu) (net 9))
(segment (start 158.115 64.135) (end 156.003 64.135) (width 0.5) (layer B.Cu) (net 9))
(segment (start 156.003 55.898) (end 156.003 64.135) (width 0.5) (layer B.Cu) (net 9))
(segment (start 155.509 55.404) (end 156.003 55.898) (width 0.5) (layer B.Cu) (net 9))
(segment (start 153.884 55.404) (end 155.509 55.404) (width 0.5) (layer B.Cu) (net 9))
(segment (start 164.799 72.009) (end 164.926 71.882) (width 0.5) (layer B.Cu) (net 10))
(segment (start 162.306 72.009) (end 164.799 72.009) (width 0.5) (layer B.Cu) (net 10))
(segment (start 169.926 70.582) (end 169.926 71.882) (width 0.5) (layer B.Cu) (net 11))
(segment (start 169.926 70.466) (end 169.926 70.582) (width 0.5) (layer B.Cu) (net 11))
(segment (start 166.135 66.675) (end 169.926 70.466) (width 0.5) (layer B.Cu) (net 11))
(segment (start 165.735 66.675) (end 166.135 66.675) (width 0.5) (layer B.Cu) (net 11))
(segment (start 168.626 71.882) (end 169.926 71.882) (width 0.5) (layer B.Cu) (net 11))
(segment (start 167.386 73.122) (end 168.626 71.882) (width 0.5) (layer B.Cu) (net 11))
(segment (start 167.386 76.454) (end 167.386 73.122) (width 0.5) (layer B.Cu) (net 11))
(segment (start 169.959 53.768) (end 167.767 53.768) (width 0.5) (layer B.Cu) (net 12))
(segment (start 173.482 50.245) (end 169.959 53.768) (width 0.5) (layer B.Cu) (net 12))
(segment (start 173.482 56.545) (end 173.482 55.245) (width 0.5) (layer B.Cu) (net 13))
(segment (start 170.972 59.055) (end 173.482 56.545) (width 0.5) (layer B.Cu) (net 13))
(segment (start 165.735 59.055) (end 170.972 59.055) (width 0.5) (layer B.Cu) (net 13))
(segment (start 155.859 49.403) (end 156.748 48.514) (width 0.5) (layer B.Cu) (net 14))
(segment (start 154.559 49.403) (end 155.859 49.403) (width 0.5) (layer B.Cu) (net 14))
(segment (start 156.748 48.514) (end 160.401 48.514) (width 0.5) (layer B.Cu) (net 14))
(segment (start 160.401 48.514) (end 162.306 50.419) (width 0.5) (layer B.Cu) (net 14))
(segment (start 162.306 50.419) (end 162.306 59.944) (width 0.5) (layer B.Cu) (net 14))
(segment (start 163.957 61.595) (end 165.735 61.595) (width 0.5) (layer B.Cu) (net 14))
(segment (start 162.306 59.944) (end 163.957 61.595) (width 0.5) (layer B.Cu) (net 14))
(segment (start 164.799 78.867) (end 167.386 81.454) (width 0.5) (layer B.Cu) (net 15))
(segment (start 160.401 78.867) (end 164.799 78.867) (width 0.5) (layer B.Cu) (net 15))
(segment (start 148.112 81.407) (end 146.812 81.407) (width 0.5) (layer B.Cu) (net 15))
(segment (start 148.747 82.042) (end 148.112 81.407) (width 0.5) (layer B.Cu) (net 15))
(segment (start 159.226 82.042) (end 148.747 82.042) (width 0.5) (layer B.Cu) (net 15))
(segment (start 160.401 80.867) (end 159.226 82.042) (width 0.5) (layer B.Cu) (net 15))
(segment (start 160.401 78.867) (end 160.401 80.867) (width 0.5) (layer B.Cu) (net 15))
(segment (start 147.828 57.404) (end 148.844 57.404) (width 0.5) (layer B.Cu) (net 16))
(segment (start 142.621 52.197) (end 147.828 57.404) (width 0.5) (layer B.Cu) (net 16))
(segment (start 139.7 48.768) (end 137.621 50.847) (width 0.5) (layer B.Cu) (net 17))
(segment (start 145.288 48.768) (end 139.7 48.768) (width 0.5) (layer B.Cu) (net 17))
(segment (start 151.384 54.864) (end 145.288 48.768) (width 0.5) (layer B.Cu) (net 17))
(segment (start 153.521 57.404) (end 151.384 55.267) (width 0.5) (layer B.Cu) (net 17))
(segment (start 151.384 55.267) (end 151.384 54.864) (width 0.5) (layer B.Cu) (net 17))
(segment (start 153.884 57.404) (end 153.521 57.404) (width 0.5) (layer B.Cu) (net 17))
(segment (start 137.621 50.847) (end 137.621 52.197) (width 0.5) (layer B.Cu) (net 17))
(segment (start 157.767 58.707) (end 158.115 59.055) (width 0.5) (layer B.Cu) (net 19))
(segment (start 157.767 51.268) (end 157.767 58.707) (width 0.5) (layer B.Cu) (net 19))
(segment (start 137.668 77.089) (end 140.335 77.089) (width 0.5) (layer B.Cu) (net 20))
(segment (start 148.844 68.58) (end 148.844 59.404) (width 0.5) (layer B.Cu) (net 20))
(segment (start 140.335 77.089) (end 148.844 68.58) (width 0.5) (layer B.Cu) (net 20))
(zone (net 1) (net_name GND) (layer B.Cu) (tstamp 5DDD953F) (hatch edge 0.508)
(connect_pads (clearance 0.6))
(min_thickness 0.6)
(fill yes (arc_segments 32) (thermal_gap 0.7) (thermal_bridge_width 0.7))
(polygon
(pts
(xy 130.048 85.344) (xy 130.048 45.72) (xy 185.928 45.72) (xy 185.928 85.344)
)
)
(filled_polygon
(pts
(xy 177.385429 50.047) (xy 185.628 50.047) (xy 185.628 80.389) (xy 180.528476 80.389) (xy 180.528476 85.044)
(xy 130.348 85.044) (xy 130.348 79.901) (xy 134.368095 79.901) (xy 134.368095 76.852621) (xy 135.268 76.852621)
(xy 135.268 77.325379) (xy 135.36023 77.789054) (xy 135.541147 78.225826) (xy 135.803798 78.618911) (xy 136.138089 78.953202)
(xy 136.531174 79.215853) (xy 136.967946 79.39677) (xy 137.431621 79.489) (xy 137.904379 79.489) (xy 138.368054 79.39677)
(xy 138.804826 79.215853) (xy 139.197911 78.953202) (xy 139.332756 78.818357) (xy 152.809376 78.818357) (xy 152.848146 79.309286)
(xy 152.981947 79.783218) (xy 153.205636 80.22194) (xy 153.259685 80.302829) (xy 153.686492 80.430797) (xy 155.250289 78.867)
(xy 155.391711 78.867) (xy 156.955508 80.430797) (xy 157.382315 80.302829) (xy 157.622823 79.873097) (xy 157.774875 79.404702)
(xy 157.832624 78.915643) (xy 157.793854 78.424714) (xy 157.660053 77.950782) (xy 157.436364 77.51206) (xy 157.382315 77.431171)
(xy 156.955508 77.303203) (xy 155.391711 78.867) (xy 155.250289 78.867) (xy 153.686492 77.303203) (xy 153.259685 77.431171)
(xy 153.019177 77.860903) (xy 152.867125 78.329298) (xy 152.809376 78.818357) (xy 139.332756 78.818357) (xy 139.532202 78.618911)
(xy 139.78605 78.239) (xy 140.278518 78.239) (xy 140.335 78.244563) (xy 140.391482 78.239) (xy 140.391492 78.239)
(xy 140.560439 78.22236) (xy 140.777215 78.156602) (xy 140.976997 78.049816) (xy 141.152107 77.906107) (xy 141.188125 77.862219)
(xy 141.506382 77.543962) (xy 145.745749 77.543962) (xy 145.789724 77.899107) (xy 146.100463 78.069873) (xy 146.438545 78.176735)
(xy 146.790979 78.215587) (xy 147.144221 78.184936) (xy 147.484695 78.085961) (xy 147.799318 77.922463) (xy 147.834276 77.899107)
(xy 147.878251 77.543962) (xy 146.812 76.477711) (xy 145.745749 77.543962) (xy 141.506382 77.543962) (xy 142.664365 76.385979)
(xy 145.003413 76.385979) (xy 145.034064 76.739221) (xy 145.133039 77.079695) (xy 145.296537 77.394318) (xy 145.319893 77.429276)
(xy 145.675038 77.473251) (xy 146.741289 76.407) (xy 146.882711 76.407) (xy 147.948962 77.473251) (xy 148.304107 77.429276)
(xy 148.412249 77.232492) (xy 153.757203 77.232492) (xy 155.321 78.796289) (xy 156.884797 77.232492) (xy 156.756829 76.805685)
(xy 156.327097 76.565177) (xy 155.858702 76.413125) (xy 155.369643 76.355376) (xy 154.878714 76.394146) (xy 154.404782 76.527947)
(xy 153.96606 76.751636) (xy 153.885171 76.805685) (xy 153.757203 77.232492) (xy 148.412249 77.232492) (xy 148.474873 77.118537)
(xy 148.581735 76.780455) (xy 148.620587 76.428021) (xy 148.589936 76.074779) (xy 148.490961 75.734305) (xy 148.327463 75.419682)
(xy 148.304107 75.384724) (xy 147.948962 75.340749) (xy 146.882711 76.407) (xy 146.741289 76.407) (xy 145.675038 75.340749)
(xy 145.319893 75.384724) (xy 145.149127 75.695463) (xy 145.042265 76.033545) (xy 145.003413 76.385979) (xy 142.664365 76.385979)
(xy 143.780306 75.270038) (xy 145.745749 75.270038) (xy 146.812 76.336289) (xy 147.878251 75.270038) (xy 147.834276 74.914893)
(xy 147.523537 74.744127) (xy 147.185455 74.637265) (xy 146.833021 74.598413) (xy 146.479779 74.629064) (xy 146.139305 74.728039)
(xy 145.824682 74.891537) (xy 145.789724 74.914893) (xy 145.745749 75.270038) (xy 143.780306 75.270038) (xy 146.710487 72.339858)
(xy 147.836669 72.339858) (xy 147.844736 72.380422) (xy 147.951039 72.716891) (xy 148.120941 73.026156) (xy 148.347913 73.296332)
(xy 148.623233 73.517037) (xy 148.93632 73.679789) (xy 149.275142 73.778333) (xy 149.556 73.558307) (xy 149.556 72.059)
(xy 149.656 72.059) (xy 149.656 73.558307) (xy 149.936858 73.778333) (xy 150.27568 73.679789) (xy 150.588767 73.517037)
(xy 150.864087 73.296332) (xy 151.091059 73.026156) (xy 151.260961 72.716891) (xy 151.367264 72.380422) (xy 151.375331 72.339858)
(xy 151.155193 72.059) (xy 149.656 72.059) (xy 149.556 72.059) (xy 148.056807 72.059) (xy 147.836669 72.339858)
(xy 146.710487 72.339858) (xy 147.372203 71.678142) (xy 147.836669 71.678142) (xy 148.056807 71.959) (xy 149.556 71.959)
(xy 149.556 70.459693) (xy 149.656 70.459693) (xy 149.656 71.959) (xy 151.155193 71.959) (xy 151.375331 71.678142)
(xy 151.367264 71.637578) (xy 151.260961 71.301109) (xy 151.091059 70.991844) (xy 150.864087 70.721668) (xy 150.588767 70.500963)
(xy 150.27568 70.338211) (xy 149.936858 70.239667) (xy 149.656 70.459693) (xy 149.556 70.459693) (xy 149.275142 70.239667)
(xy 148.93632 70.338211) (xy 148.623233 70.500963) (xy 148.347913 70.721668) (xy 148.120941 70.991844) (xy 147.951039 71.301109)
(xy 147.844736 71.637578) (xy 147.836669 71.678142) (xy 147.372203 71.678142) (xy 149.617232 69.433114) (xy 149.661107 69.397107)
(xy 149.804816 69.221997) (xy 149.911602 69.022215) (xy 149.97736 68.805439) (xy 149.994 68.636492) (xy 149.994 68.636483)
(xy 149.999563 68.580001) (xy 149.994 68.523519) (xy 149.994 60.867861) (xy 150.134825 60.792588) (xy 150.387897 60.584897)
(xy 150.595588 60.331825) (xy 150.749917 60.043097) (xy 150.844952 59.729809) (xy 150.877041 59.404) (xy 150.844952 59.078191)
(xy 150.749917 58.764903) (xy 150.595588 58.476175) (xy 150.536355 58.404) (xy 150.595588 58.331825) (xy 150.749917 58.043097)
(xy 150.844952 57.729809) (xy 150.877041 57.404) (xy 150.844952 57.078191) (xy 150.749917 56.764903) (xy 150.595588 56.476175)
(xy 150.536355 56.404) (xy 150.595588 56.331825) (xy 150.674621 56.183965) (xy 151.854877 57.364222) (xy 151.850959 57.404)
(xy 151.883048 57.729809) (xy 151.978083 58.043097) (xy 152.132412 58.331825) (xy 152.191645 58.404) (xy 152.132412 58.476175)
(xy 151.978083 58.764903) (xy 151.883048 59.078191) (xy 151.850959 59.404) (xy 151.883048 59.729809) (xy 151.894406 59.76725)
(xy 151.499776 60.16188) (xy 151.455894 60.197893) (xy 151.419882 60.241774) (xy 151.312185 60.373003) (xy 151.205399 60.572785)
(xy 151.139641 60.789561) (xy 151.117437 61.015) (xy 151.123001 61.071491) (xy 151.123001 61.23158) (xy 150.970568 61.313057)
(xy 150.833525 61.425525) (xy 150.721057 61.562568) (xy 150.637486 61.718919) (xy 150.586023 61.888569) (xy 150.568646 62.065)
(xy 150.568646 63.665) (xy 150.586023 63.841431) (xy 150.637486 64.011081) (xy 150.721057 64.167432) (xy 150.833525 64.304475)
(xy 150.970568 64.416943) (xy 151.126919 64.500514) (xy 151.296569 64.551977) (xy 151.473 64.569354) (xy 153.073 64.569354)