-
Notifications
You must be signed in to change notification settings - Fork 0
/
amplificador_200w.kicad_sch
2451 lines (2402 loc) · 85.3 KB
/
amplificador_200w.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid 2f9ccf17-f0ee-4852-a902-78eb592295c9)
(paper "A4")
(title_block
(title "AMPLIFICADOR ESTEREO 200, CONTROL DE TONOS")
(date "2023-03-06")
(rev "V1.0.0")
(company "https://maykolrey.com")
(comment 1 "${NAME}")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NPN_BCE" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NPN_BCE" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NPN" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "NPN transistor, base/collector/emitter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NPN_BCE_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Q_NPN_BCE_1_1"
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NPN_ECB" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NPN_ECB" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NPN" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "NPN transistor, emitter/collector/base" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NPN_ECB_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Q_NPN_ECB_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_PNP_BCE" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_PNP_BCE" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor PNP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "PNP transistor, base/collector/emitter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_PNP_BCE_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.778)
(xy 1.778 -2.286)
(xy 1.27 -1.27)
(xy 2.286 -1.778)
(xy 2.286 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Q_PNP_BCE_1_1"
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_PNP_ECB" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_PNP_ECB" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor PNP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "PNP transistor, emitter/collector/base" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_PNP_ECB_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.778)
(xy 1.778 -2.286)
(xy 1.27 -1.27)
(xy 2.286 -1.778)
(xy 2.286 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Q_PNP_ECB_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RV" (at -4.445 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Potentiometer" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resistor variable" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Potentiometer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Potentiometer*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Potentiometer_0_1"
(polyline
(pts
(xy 2.54 0)
(xy 1.524 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.143 0)
(xy 2.286 0.508)
(xy 2.286 -0.508)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start 1.016 2.54) (end -1.016 -2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_Potentiometer_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "amplificador_200w-rescue:CP1-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "CP1-Device" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP1-Device_0_1"
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "CP1-Device_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 3.302)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "amplificador_200w-rescue:D_ALT-Device" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_ALT-Device" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_ALT-Device_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
)
(symbol "D_ALT-Device_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "amplificador_200w-rescue:D_Zener_ALT-Device" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Zener_ALT-Device" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Zener_ALT-Device_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
(xy -0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
)
(symbol "D_Zener_ALT-Device_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 146.05 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid 0ceb97d6-1b0f-4b71-921e-b0955c30c998)
)
(junction (at 83.82 123.19) (diameter 1.016) (color 0 0 0 0)
(uuid 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13)
)
(junction (at 146.05 64.77) (diameter 1.016) (color 0 0 0 0)
(uuid 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37)
)
(junction (at 100.33 138.43) (diameter 1.016) (color 0 0 0 0)
(uuid 12a24e86-2c38-4685-bba9-fff8dddb4cb0)
)
(junction (at 72.39 82.55) (diameter 1.016) (color 0 0 0 0)
(uuid 27b2eb82-662b-42d8-90e6-830fec4bb8d2)
)
(junction (at 161.29 138.43) (diameter 1.016) (color 0 0 0 0)
(uuid 2b5a9ad3-7ec4-447d-916c-47adf5f9674f)
)
(junction (at 111.76 82.55) (diameter 1.016) (color 0 0 0 0)
(uuid 35ef9c4a-35f6-467b-a704-b1d9354880cf)
)
(junction (at 92.71 74.93) (diameter 1.016) (color 0 0 0 0)
(uuid 3e0392c0-affc-4114-9de5-1f1cfe79418a)
)
(junction (at 217.17 82.55) (diameter 1.016) (color 0 0 0 0)
(uuid 53e34696-241f-47e5-a477-f469335c8a61)
)
(junction (at 194.31 82.55) (diameter 1.016) (color 0 0 0 0)
(uuid 5a222fb6-5159-4931-9015-19df65643140)
)
(junction (at 146.05 116.84) (diameter 1.016) (color 0 0 0 0)
(uuid 6241e6d3-a754-45b6-9f7c-e43019b93226)
)
(junction (at 181.61 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b)
)
(junction (at 100.33 110.49) (diameter 1.016) (color 0 0 0 0)
(uuid 6513181c-0a6a-4560-9a18-17450c36ae2a)
)
(junction (at 83.82 138.43) (diameter 1.016) (color 0 0 0 0)
(uuid 66218487-e316-4467-9eba-79d4626ab24e)
)
(junction (at 194.31 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid 691af561-538d-4e8f-a916-26cad45eb7d6)
)
(junction (at 194.31 67.31) (diameter 1.016) (color 0 0 0 0)
(uuid 7ce7415d-7c22-49f6-8215-488853ccc8c6)
)
(junction (at 146.05 100.33) (diameter 1.016) (color 0 0 0 0)
(uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d)
)
(junction (at 194.31 119.38) (diameter 1.016) (color 0 0 0 0)
(uuid 88002554-c459-46e5-8b22-6ea6fe07fd4c)
)
(junction (at 194.31 138.43) (diameter 1.016) (color 0 0 0 0)
(uuid 8cdc8ef9-532e-4bf5-9998-7213b9e692a2)
)
(junction (at 168.91 118.11) (diameter 1.016) (color 0 0 0 0)
(uuid 9f782c92-a5e8-49db-bfda-752b35522ce4)
)
(junction (at 133.35 123.19) (diameter 1.016) (color 0 0 0 0)
(uuid a7f25f41-0b4c-4430-b6cd-b2160b2db099)
)
(junction (at 181.61 119.38) (diameter 1.016) (color 0 0 0 0)
(uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
)
(junction (at 181.61 59.69) (diameter 1.016) (color 0 0 0 0)
(uuid b7bf6e08-7978-4190-aff5-c90d967f0f9c)
)
(junction (at 133.35 110.49) (diameter 1.016) (color 0 0 0 0)
(uuid b8b961e9-8a60-45fc-999a-a7a3baff4e0d)
)
(junction (at 146.05 133.35) (diameter 1.016) (color 0 0 0 0)
(uuid c8a44971-63c1-4a19-879d-b6647b2dc08d)
)
(junction (at 168.91 133.35) (diameter 1.016) (color 0 0 0 0)
(uuid ccc4cc25-ac17-45ef-825c-e079951ffb21)
)
(junction (at 92.71 57.15) (diameter 1.016) (color 0 0 0 0)
(uuid cf815d51-c956-4c5a-adde-c373cb025b07)
)
(junction (at 168.91 71.12) (diameter 1.016) (color 0 0 0 0)
(uuid da6f4122-0ecc-496f-b0fd-e4abef534976)
)
(junction (at 92.71 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid dca1d7db-c913-4d73-a2cc-fdc9651eda69)
)
(junction (at 168.91 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid f1782535-55f4-4299-bd4f-6f51b0b7259c)
)
(junction (at 102.87 57.15) (diameter 1.016) (color 0 0 0 0)
(uuid f357ddb5-3f44-43b0-b00d-d64f5c62ba4a)
)
(wire (pts (xy 102.87 59.69) (xy 102.87 57.15))
(stroke (width 0) (type solid))
(uuid 0ea7e289-32f4-4c61-b194-1191354510e5)
)
(wire (pts (xy 217.17 82.55) (xy 194.31 82.55))
(stroke (width 0) (type solid))
(uuid 0efa6d26-16f6-46f0-9811-ba9c6959c890)
)
(wire (pts (xy 204.47 106.68) (xy 204.47 119.38))
(stroke (width 0) (type solid))
(uuid 1356c049-3909-4f44-8f9a-244cca8ddc42)
)
(wire (pts (xy 217.17 43.18) (xy 194.31 43.18))
(stroke (width 0) (type solid))
(uuid 13f6b8a3-d4ad-440d-8653-46f76f8fe35b)
)
(wire (pts (xy 133.35 132.08) (xy 133.35 133.35))
(stroke (width 0) (type solid))
(uuid 143319a7-2eb3-4bdb-9d3f-e0042dc98548)
)
(wire (pts (xy 217.17 138.43) (xy 194.31 138.43))
(stroke (width 0) (type solid))
(uuid 14576219-6100-4db6-b4fb-81eb8b5d7549)
)
(wire (pts (xy 102.87 68.58) (xy 102.87 67.31))
(stroke (width 0) (type solid))
(uuid 1e2698ad-c7ea-4ca4-828e-71574f9b1534)
)
(wire (pts (xy 92.71 54.61) (xy 92.71 57.15))
(stroke (width 0) (type solid))
(uuid 1ea98438-c95e-4dcf-be84-c04cfe56c395)
)
(wire (pts (xy 111.76 59.69) (xy 111.76 57.15))
(stroke (width 0) (type solid))
(uuid 1f5b23cd-9398-4035-b4c7-99b952b0f973)
)
(wire (pts (xy 168.91 107.95) (xy 168.91 93.98))
(stroke (width 0) (type solid))
(uuid 203c0ad3-9bc4-42b5-aba4-3a3c26793118)
)
(wire (pts (xy 146.05 64.77) (xy 146.05 90.17))
(stroke (width 0) (type solid))
(uuid 22534e3b-348f-496d-86fb-63e3a89aa326)
)
(wire (pts (xy 175.26 111.76) (xy 175.26 118.11))
(stroke (width 0) (type solid))
(uuid 22690e76-9bd8-4e50-bf28-a0b88ba3631e)
)
(wire (pts (xy 138.43 123.19) (xy 133.35 123.19))
(stroke (width 0) (type solid))
(uuid 256efe6b-bb23-45b3-b3e3-9344ed28243b)
)
(wire (pts (xy 194.31 138.43) (xy 161.29 138.43))
(stroke (width 0) (type solid))
(uuid 2885133f-8ac7-4ae0-bd42-1e34708a1566)
)
(wire (pts (xy 92.71 57.15) (xy 92.71 59.69))
(stroke (width 0) (type solid))
(uuid 29254ea1-b960-4da3-b165-6e960f2ec389)
)
(wire (pts (xy 194.31 111.76) (xy 194.31 119.38))
(stroke (width 0) (type solid))
(uuid 2ad02483-5896-4393-90c9-0acd86e1366d)
)
(wire (pts (xy 168.91 118.11) (xy 168.91 133.35))
(stroke (width 0) (type solid))
(uuid 2b9e1b8e-bf07-4c23-9271-18873c993399)
)
(wire (pts (xy 149.86 116.84) (xy 146.05 116.84))
(stroke (width 0) (type solid))
(uuid 34563e26-1c14-4ee6-8a7b-6e93fa847cc7)
)
(wire (pts (xy 217.17 57.15) (xy 217.17 43.18))
(stroke (width 0) (type solid))
(uuid 3464bcc5-92e7-46d3-969e-6c706d43fefb)
)
(wire (pts (xy 146.05 43.18) (xy 92.71 43.18))
(stroke (width 0) (type solid))
(uuid 346ad66e-3aea-4c92-9861-fa7da5c132a3)
)
(wire (pts (xy 146.05 116.84) (xy 146.05 118.11))
(stroke (width 0) (type solid))
(uuid 3658f8a6-a4d5-4408-9f5a-e6e02f4fbf02)
)
(wire (pts (xy 185.42 119.38) (xy 181.61 119.38))
(stroke (width 0) (type solid))
(uuid 37f6b6ee-591d-40bb-aa39-7af379ec4b76)
)
(wire (pts (xy 209.55 62.23) (xy 204.47 62.23))
(stroke (width 0) (type solid))
(uuid 384be65f-21cf-4c0f-9b0a-de4a2e8734cf)
)
(wire (pts (xy 168.91 133.35) (xy 181.61 133.35))
(stroke (width 0) (type solid))
(uuid 3c120e8b-70db-4e60-9b65-ec708c6b0c57)
)
(wire (pts (xy 161.29 116.84) (xy 161.29 138.43))
(stroke (width 0) (type solid))
(uuid 3f8ee0bb-ad3a-4765-a1ef-d5a73976cec1)
)
(wire (pts (xy 194.31 64.77) (xy 194.31 67.31))
(stroke (width 0) (type solid))
(uuid 3fdcb0c2-163c-432a-8467-ad3151267e81)
)
(wire (pts (xy 181.61 71.12) (xy 181.61 59.69))
(stroke (width 0) (type solid))
(uuid 417a1a85-e191-480a-9ace-b4ed9cd31ffd)
)
(wire (pts (xy 168.91 115.57) (xy 168.91 118.11))
(stroke (width 0) (type solid))
(uuid 43098cf3-28cc-4e64-95ac-8caee526c116)
)
(wire (pts (xy 168.91 45.72) (xy 168.91 43.18))
(stroke (width 0) (type solid))
(uuid 431a925a-c66e-4cd0-b7ea-76dff45cffd9)
)
(wire (pts (xy 168.91 69.85) (xy 168.91 71.12))
(stroke (width 0) (type solid))
(uuid 46c496e2-29ae-47f7-a650-da3975978e79)
)
(wire (pts (xy 83.82 123.19) (xy 83.82 87.63))
(stroke (width 0) (type solid))
(uuid 46e05445-1698-4577-b42f-36689df4807a)
)
(wire (pts (xy 138.43 110.49) (xy 133.35 110.49))
(stroke (width 0) (type solid))
(uuid 47a462e6-9204-42e4-b463-06d863774d76)
)
(wire (pts (xy 100.33 87.63) (xy 100.33 110.49))
(stroke (width 0) (type solid))
(uuid 4857e04b-3c00-4b1c-809e-07f45c04e2e0)
)
(wire (pts (xy 181.61 119.38) (xy 181.61 106.68))
(stroke (width 0) (type solid))
(uuid 4a27b857-a445-4061-b471-2e4cf483bf21)
)
(wire (pts (xy 83.82 138.43) (xy 100.33 138.43))
(stroke (width 0) (type solid))
(uuid 4c0680bb-f77c-4f7e-a81a-bbc1ffe1ee58)
)
(wire (pts (xy 69.85 82.55) (xy 72.39 82.55))
(stroke (width 0) (type solid))
(uuid 4e72fb38-afcf-499b-9c5a-9f5d3da83de9)
)
(wire (pts (xy 186.69 59.69) (xy 181.61 59.69))
(stroke (width 0) (type solid))
(uuid 4f35a040-286e-427f-8fd3-0c327d6afc90)
)
(wire (pts (xy 100.33 77.47) (xy 100.33 74.93))
(stroke (width 0) (type solid))
(uuid 4f755605-80f8-45e6-81cb-d7aeef169206)
)
(wire (pts (xy 83.82 133.35) (xy 83.82 138.43))
(stroke (width 0) (type solid))
(uuid 510517c5-bd42-40d7-b80e-e80246a8abbf)
)
(wire (pts (xy 121.92 82.55) (xy 194.31 82.55))
(stroke (width 0) (type solid))
(uuid 5787ddeb-a641-42a6-adde-2674d53ac2ef)
)
(wire (pts (xy 111.76 82.55) (xy 107.95 82.55))
(stroke (width 0) (type solid))
(uuid 5bc872c7-40cd-409f-8bb6-f3720340d0fb)
)
(wire (pts (xy 168.91 71.12) (xy 168.91 72.39))
(stroke (width 0) (type solid))
(uuid 5dc6b37c-208f-4ef5-9fd7-f17776471de8)
)
(wire (pts (xy 168.91 133.35) (xy 146.05 133.35))
(stroke (width 0) (type solid))
(uuid 5e33031b-591f-456c-a1d5-6d306eab080c)
)
(wire (pts (xy 72.39 86.36) (xy 72.39 82.55))
(stroke (width 0) (type solid))
(uuid 607ba688-1101-4dab-bed8-dfc7af47458d)
)
(wire (pts (xy 100.33 138.43) (xy 100.33 133.35))
(stroke (width 0) (type solid))
(uuid 6161d58b-8a33-4270-a0dc-b25081641e15)
)
(wire (pts (xy 227.33 82.55) (xy 217.17 82.55))
(stroke (width 0) (type solid))
(uuid 64807080-dc0c-4057-9aec-9b6b7dac66c3)
)
(wire (pts (xy 175.26 118.11) (xy 168.91 118.11))
(stroke (width 0) (type solid))
(uuid 64848b54-3d3d-48d1-8180-f987dac7631c)
)
(wire (pts (xy 209.55 106.68) (xy 204.47 106.68))
(stroke (width 0) (type solid))
(uuid 651f9c1a-878e-43d2-ae71-40caa0c7512e)
)
(wire (pts (xy 157.48 116.84) (xy 161.29 116.84))
(stroke (width 0) (type solid))
(uuid 65cbe881-2cb6-4cc7-be24-ec95403c6587)
)
(wire (pts (xy 217.17 78.74) (xy 217.17 82.55))
(stroke (width 0) (type solid))
(uuid 66d06e4d-05b8-4f0a-b68b-05c9e39c6180)
)
(wire (pts (xy 133.35 110.49) (xy 100.33 110.49))
(stroke (width 0) (type solid))
(uuid 67b3fcc2-5d96-4527-84fe-ed2643c7859e)
)
(wire (pts (xy 72.39 95.25) (xy 72.39 93.98))
(stroke (width 0) (type solid))
(uuid 6d2b6973-3cea-4532-90a4-0f4a78e0249d)
)
(wire (pts (xy 102.87 57.15) (xy 92.71 57.15))
(stroke (width 0) (type solid))
(uuid 6e9fb759-069c-4655-be57-723e291d582b)
)
(wire (pts (xy 92.71 74.93) (xy 83.82 74.93))
(stroke (width 0) (type solid))
(uuid 73edcb72-9a24-4df7-a771-6323d8948e05)
)
(wire (pts (xy 92.71 43.18) (xy 92.71 46.99))
(stroke (width 0) (type solid))
(uuid 7e498860-77a3-4a3a-9a6b-8eb401835898)
)
(wire (pts (xy 172.72 111.76) (xy 175.26 111.76))
(stroke (width 0) (type solid))