-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamplificador_TDA7294.kicad_sch
1172 lines (1145 loc) · 41.4 KB
/
amplificador_TDA7294.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 8bc5fe2c-90b1-456b-927b-066c6dcc8fea)
(paper "A4")
(lib_symbols
(symbol "Amplifier_Audio:TDA7294" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 10.16 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TDA7294" (at 10.16 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_THT:TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.st.com/resource/en/datasheet/tda7294.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "audio amplifier" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "100V - 100W DMOS Audio Amplifier with Mute/St-by, TO-220-15" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO?220*StaggerOdd*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TDA7294_0_1"
(polyline
(pts
(xy -7.62 7.62)
(xy 7.62 0)
(xy -7.62 -7.62)
(xy -7.62 7.62)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "TDA7294_1_1"
(pin power_in line (at 2.54 -5.08 90) (length 2.54)
(name "SGND" (effects (font (size 0.508 0.508))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 7.62 270) (length 3.81)
(name "MUTE" (effects (font (size 0.508 0.508))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 0 2.54 270) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 2.54 2.54 270) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 10.16 270) (length 5.08)
(name "+Vs" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -10.16 90) (length 5.08)
(name "-Vs" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 3.81)
(name "SIG_GND" (effects (font (size 0.508 0.508))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -2.54 2.54 270) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 5.08 270) (length 3.81)
(name "BOOT" (effects (font (size 0.508 0.508))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 10.16 270) (length 3.81)
(name "+Vs" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -10.16 90) (length 3.81)
(name "-Vs" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 5.08 270) (length 2.54)
(name "STBY" (effects (font (size 0.508 0.508))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(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: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 "TDA7294-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 "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 144.78 118.11) (diameter 0) (color 0 0 0 0)
(uuid 21257d6c-7ba1-4e2a-9a8c-f6e34d9dfe0d)
)
(junction (at 147.32 74.93) (diameter 0) (color 0 0 0 0)
(uuid 2234f749-f71a-4059-bbd2-464851c8e1ad)
)
(junction (at 149.86 106.68) (diameter 0) (color 0 0 0 0)
(uuid 4798087c-6011-4f5f-9aed-126e32358d73)
)
(junction (at 109.22 93.98) (diameter 0) (color 0 0 0 0)
(uuid 663d1f39-9b37-4055-9343-ef3897dddb47)
)
(junction (at 144.78 74.93) (diameter 0) (color 0 0 0 0)
(uuid 68d3a400-6d1a-413f-8d41-5a245e422763)
)
(junction (at 134.62 99.06) (diameter 0) (color 0 0 0 0)
(uuid 93245134-1115-49c8-b630-640eb104c238)
)
(junction (at 134.62 107.95) (diameter 0) (color 0 0 0 0)
(uuid 9a5be5fc-bc73-456b-9f7f-7dc127b12172)
)
(junction (at 179.07 96.52) (diameter 0) (color 0 0 0 0)
(uuid e0187628-aafa-4e00-9df4-1e939506aded)
)
(junction (at 172.72 96.52) (diameter 0) (color 0 0 0 0)
(uuid f7b094e4-abde-49f2-8607-c7459cafe598)
)
(junction (at 147.32 118.11) (diameter 0) (color 0 0 0 0)
(uuid f9d76567-6fef-4e71-b382-06d9299a74df)
)
(wire (pts (xy 189.23 96.52) (xy 179.07 96.52))
(stroke (width 0) (type default))
(uuid 08f12add-ea17-418f-8bf3-85c7fbae4697)
)
(wire (pts (xy 172.72 96.52) (xy 172.72 95.25))
(stroke (width 0) (type default))
(uuid 0b80abfd-c90f-4d91-8e84-d0ce5354e565)
)
(wire (pts (xy 129.54 78.74) (xy 129.54 74.93))
(stroke (width 0) (type default))
(uuid 192998cc-694a-4193-b304-7f41fe5b1242)
)
(wire (pts (xy 154.94 91.44) (xy 154.94 86.36))
(stroke (width 0) (type default))
(uuid 1d1b551e-0192-4e1d-a155-f7028de7a510)
)
(wire (pts (xy 130.81 107.95) (xy 134.62 107.95))
(stroke (width 0) (type default))
(uuid 2644bb71-67db-49bc-ac2a-32195b5fa9a8)
)
(wire (pts (xy 170.18 107.95) (xy 172.72 107.95))
(stroke (width 0) (type default))
(uuid 2c3bf9c7-2546-4c50-805d-50954708be33)
)
(wire (pts (xy 134.62 107.95) (xy 134.62 99.06))
(stroke (width 0) (type default))
(uuid 30d7fcfd-81dc-4ab5-ac2f-e8353af775ec)
)
(wire (pts (xy 166.37 121.92) (xy 166.37 118.11))
(stroke (width 0) (type default))
(uuid 3101c839-3ae5-44a7-9a61-a6f68e91dbb1)
)
(wire (pts (xy 140.97 74.93) (xy 144.78 74.93))
(stroke (width 0) (type default))
(uuid 31481651-c177-4405-bb3b-881ac76f8006)
)
(wire (pts (xy 179.07 116.84) (xy 179.07 115.57))
(stroke (width 0) (type default))
(uuid 31cb28b9-eda1-48cb-883a-c5d95ee6dfb3)
)
(wire (pts (xy 109.22 109.22) (xy 109.22 107.95))
(stroke (width 0) (type default))
(uuid 31d54d68-5604-4243-8b10-12423f9395b4)
)
(wire (pts (xy 161.29 74.93) (xy 158.75 74.93))
(stroke (width 0) (type default))
(uuid 341929e2-8d55-4463-bfad-a82a4afa31b5)
)
(wire (pts (xy 179.07 97.79) (xy 179.07 96.52))
(stroke (width 0) (type default))
(uuid 361b5ac4-4172-4321-af65-ff18d71cfa1c)
)
(wire (pts (xy 147.32 74.93) (xy 144.78 74.93))
(stroke (width 0) (type default))
(uuid 37dae64c-4c7a-478b-96de-f657594ec8ae)
)
(wire (pts (xy 129.54 118.11) (xy 133.35 118.11))
(stroke (width 0) (type default))
(uuid 490b7657-875a-4528-b335-015c36eb5a93)
)
(wire (pts (xy 95.25 93.98) (xy 99.06 93.98))
(stroke (width 0) (type default))
(uuid 5707224f-4907-46fb-ace5-15e4cc972dd7)
)
(wire (pts (xy 160.02 96.52) (xy 172.72 96.52))
(stroke (width 0) (type default))
(uuid 5ec23b75-1cd3-40aa-b8f9-ecf75e21551f)
)
(wire (pts (xy 149.86 88.9) (xy 149.86 86.36))
(stroke (width 0) (type default))
(uuid 60343474-2351-4d41-8d33-44b81c39dc5b)
)
(wire (pts (xy 119.38 99.06) (xy 123.19 99.06))
(stroke (width 0) (type default))
(uuid 608a15b2-12a5-4912-b5bf-329a756b60cd)
)
(wire (pts (xy 147.32 74.93) (xy 151.13 74.93))
(stroke (width 0) (type default))
(uuid 61d9fbb6-810e-4054-92dc-be22d9566458)
)
(wire (pts (xy 166.37 118.11) (xy 161.29 118.11))
(stroke (width 0) (type default))
(uuid 64f54a4c-97e4-4c1b-9e91-727b1d3d6795)
)
(wire (pts (xy 147.32 86.36) (xy 147.32 74.93))
(stroke (width 0) (type default))
(uuid 6a3899c0-751b-41d1-8e83-9028ddc97078)
)
(wire (pts (xy 149.86 106.68) (xy 149.86 104.14))
(stroke (width 0) (type default))
(uuid 6a3a76a4-7358-4eca-b463-9f058a2dbec7)
)
(wire (pts (xy 152.4 106.68) (xy 149.86 106.68))
(stroke (width 0) (type default))
(uuid 6ad11999-67ae-4de5-9ed1-c52032fe8e40)
)
(wire (pts (xy 179.07 96.52) (xy 172.72 96.52))
(stroke (width 0) (type default))
(uuid 6dc947c4-902d-4186-818e-4de900099453)
)
(wire (pts (xy 119.38 109.22) (xy 119.38 107.95))
(stroke (width 0) (type default))
(uuid 6ef45eca-bfed-47ca-8791-0f881488de1d)
)
(wire (pts (xy 144.78 121.92) (xy 144.78 118.11))
(stroke (width 0) (type default))
(uuid 7179e5f6-cfe5-4ae0-9d81-5b3011b1dfc5)
)
(wire (pts (xy 152.4 101.6) (xy 152.4 106.68))
(stroke (width 0) (type default))
(uuid 763dc3e3-2d7a-4987-a1d1-31a5fd3962e8)
)
(wire (pts (xy 179.07 105.41) (xy 179.07 107.95))
(stroke (width 0) (type default))
(uuid 77d5047e-30a1-4149-a7b4-ae03a32b1425)
)
(wire (pts (xy 106.68 93.98) (xy 109.22 93.98))
(stroke (width 0) (type default))
(uuid 7a065e01-1a79-4f57-8b9f-13959977abc9)
)
(wire (pts (xy 109.22 93.98) (xy 139.7 93.98))
(stroke (width 0) (type default))
(uuid 7ce4e0d7-8064-457c-95fe-eed908c1755a)
)
(wire (pts (xy 119.38 100.33) (xy 119.38 99.06))
(stroke (width 0) (type default))
(uuid 88b817b4-3dea-403b-9826-d0246ebd6d77)
)
(wire (pts (xy 129.54 118.11) (xy 129.54 121.92))
(stroke (width 0) (type default))
(uuid 8afe6e0f-bd27-4f74-a815-489a612635a4)
)
(wire (pts (xy 147.32 118.11) (xy 144.78 118.11))
(stroke (width 0) (type default))
(uuid 8fb981d1-ba37-4739-b7b1-f119fe1ba124)
)
(wire (pts (xy 149.86 109.22) (xy 149.86 106.68))
(stroke (width 0) (type default))
(uuid 92f444a6-47bb-4a2b-bb40-31a19445380e)
)
(wire (pts (xy 152.4 91.44) (xy 152.4 86.36))
(stroke (width 0) (type default))
(uuid 959cd635-8f84-46e8-ad5d-940cb77f0422)
)
(wire (pts (xy 130.81 99.06) (xy 134.62 99.06))
(stroke (width 0) (type default))
(uuid 997e5164-7a93-4f71-89f3-7a3f0da9006d)
)
(wire (pts (xy 162.56 107.95) (xy 134.62 107.95))
(stroke (width 0) (type default))
(uuid aa8e2c2a-14f0-4cab-8ec3-b5ccdba4301a)
)
(wire (pts (xy 140.97 118.11) (xy 144.78 118.11))
(stroke (width 0) (type default))
(uuid b56acea8-997c-4e38-9e25-2c835c980427)
)
(wire (pts (xy 154.94 86.36) (xy 172.72 86.36))
(stroke (width 0) (type default))
(uuid b85cc5a6-2954-4cbb-8712-d4462a2a4152)
)
(wire (pts (xy 172.72 96.52) (xy 172.72 107.95))
(stroke (width 0) (type default))
(uuid bb74c72a-610b-4cac-b432-55367b3cfd7a)
)
(wire (pts (xy 134.62 99.06) (xy 139.7 99.06))
(stroke (width 0) (type default))
(uuid bc96d5f3-d763-4d03-b7a7-e65a2734c496)
)
(wire (pts (xy 172.72 86.36) (xy 172.72 87.63))
(stroke (width 0) (type default))
(uuid c36a7dc2-c8ae-447a-8efd-6cd3c1951a5b)
)
(wire (pts (xy 129.54 74.93) (xy 133.35 74.93))
(stroke (width 0) (type default))
(uuid d345af4b-beba-49e7-acd5-a54f84de2af7)
)
(wire (pts (xy 144.78 71.12) (xy 144.78 74.93))
(stroke (width 0) (type default))
(uuid d72d01b9-0903-463a-8542-e2f91ce2a3c0)
)
(wire (pts (xy 109.22 100.33) (xy 109.22 93.98))
(stroke (width 0) (type default))
(uuid dbcc8a63-499d-4120-b2c6-a2af5bebc939)
)
(wire (pts (xy 144.78 74.93) (xy 144.78 86.36))
(stroke (width 0) (type default))
(uuid e58e0982-609b-4f03-a799-43f3fc7ac4df)
)
(wire (pts (xy 161.29 78.74) (xy 161.29 74.93))
(stroke (width 0) (type default))
(uuid e650fb0a-997b-415d-b27e-b9572261533c)
)
(wire (pts (xy 147.32 106.68) (xy 147.32 118.11))
(stroke (width 0) (type default))
(uuid ea89202e-3181-4276-afcf-4e6294ad8267)
)
(wire (pts (xy 147.32 118.11) (xy 153.67 118.11))
(stroke (width 0) (type default))
(uuid ed311c5c-dd87-41f5-a548-c26329eb7de2)
)
(wire (pts (xy 144.78 118.11) (xy 144.78 106.68))
(stroke (width 0) (type default))
(uuid fd5ad78e-3322-477f-b2c8-0cb113594371)
)
(hierarchical_label "+VS" (shape input) (at 144.78 71.12 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 33e14726-6b60-4c6c-9a03-4fed96082c64)
)
(hierarchical_label "-VS" (shape input) (at 144.78 121.92 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35650e7e-c5e9-4bdd-a741-3f1b85e6d419)
)
(hierarchical_label "brig" (shape input) (at 130.81 107.95 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 557ee88d-5350-4a33-a0dd-c0da4780941b)
)
(hierarchical_label "STBY" (shape input) (at 152.4 86.36 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 71b26e89-ceb3-4a38-85b0-05434f9c537b)
)
(hierarchical_label "IN" (shape input) (at 95.25 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a3d4eea4-aadf-453d-8241-24f31cbd176d)
)
(hierarchical_label "MUTE" (shape input) (at 149.86 86.36 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid aadd6dc7-8e6c-48d3-89b3-baa054805e80)
)
(hierarchical_label "OUT" (shape output) (at 189.23 96.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d1951488-a9b9-46ca-ac2d-4c803a85629f)
)
(symbol (lib_id "Amplifier_Audio:TDA7294") (at 149.86 96.52 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625d0)
(property "Reference" "U1" (at 161.1376 95.3516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TDA7294" (at 161.1376 97.663 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical" (at 149.86 96.52 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.st.com/resource/en/datasheet/tda7294.pdf" (at 149.86 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d02afca0-1f07-4d92-a09b-943c934bb601))
(pin "10" (uuid c3184b78-4e2c-4baf-806e-63137507d1f9))
(pin "11" (uuid 40fba07d-d6bf-49a3-8bcd-113f3d280085))
(pin "12" (uuid cccd4493-0369-4be7-bdf8-c8990c241d46))
(pin "13" (uuid 9ab0323e-9f4c-40f3-af6f-4dd94f6b35fc))
(pin "14" (uuid 20dcdd0c-2b9f-4cf9-9d8c-6a42ba0e60fd))
(pin "15" (uuid f59aa8bc-53db-4091-82b6-263fe264f318))
(pin "2" (uuid ea967282-92a9-45ed-884e-6083b15423e4))
(pin "3" (uuid b80f0a1c-8676-4f2a-bed2-9c9b48923e71))
(pin "4" (uuid 327f335d-5c47-4073-803f-9e32a7d5a531))
(pin "5" (uuid f2a2f6d2-e911-4145-8df3-cbd472e91da2))
(pin "6" (uuid 8cb2a8cb-4ce2-495a-ba08-52ce84250458))
(pin "7" (uuid 42a46e0c-7c4f-4157-894c-7cf595469c73))
(pin "8" (uuid daf43a1d-af45-4ac7-a299-9eb4c1f40748))
(pin "9" (uuid 299ac69c-bd94-43f1-b8af-9c0c28aa569a))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "U1") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "U2") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:CP1-Device") (at 157.48 118.11 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625d6)
(property "Reference" "C8" (at 157.48 122.174 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1000uF" (at 157.48 124.4854 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D13.0mm_P5.00mm" (at 157.48 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 157.48 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bfeea08a-6ae7-4722-8184-6b969f9bc902))
(pin "2" (uuid 7e8d0ebe-e191-45f2-a2bc-ffd05fe0b285))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C8") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 137.16 118.11 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625dc)
(property "Reference" "C6" (at 137.16 111.7092 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 137.16 114.0206 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm" (at 133.35 119.0752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b8658ea0-9fb4-4669-93e2-f55a7a0bab7d))
(pin "2" (uuid a3ef6c89-1d85-4c9e-92d9-12e12361cbb6))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C6") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C14") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625e7)
(property "Reference" "#PWR010" (at 166.37 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 166.497 126.3142 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 166.37 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c8596c9b-51f4-45c5-8053-51b7318406fc))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "#PWR010") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "#PWR018") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 129.54 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625ed)
(property "Reference" "#PWR07" (at 129.54 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 129.667 126.3142 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 129.54 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0b4a3c84-8913-4f66-90e2-b1276fb78aa2))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "#PWR07") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "#PWR015") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:CP1-Device") (at 154.94 74.93 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609625f3)
(property "Reference" "C7" (at 154.94 68.5292 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1000uF" (at 154.94 70.8406 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D13.0mm_P5.00mm" (at 154.94 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 154.94 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6243ce7e-c787-4a22-a8cf-03951ce1040b))
(pin "2" (uuid fb866a04-5ea1-4942-8646-2df610b53cf8))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C7") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C15") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 137.16 74.93 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962609)
(property "Reference" "C5" (at 137.16 68.5292 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 137.16 70.8406 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm" (at 133.35 75.8952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 137.16 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22e6d9ac-11b0-4f65-a426-ad3cf2c97b1c))
(pin "2" (uuid 90173f94-d4e7-41f0-8bb0-415a06b25e41))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C5") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C13") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 129.54 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962610)
(property "Reference" "#PWR06" (at 129.54 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 129.667 83.1342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 129.54 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1927aa74-8d40-4aa7-8dbe-cab3796bcfd0))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "#PWR06") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "#PWR014") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 161.29 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962618)
(property "Reference" "#PWR09" (at 161.29 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 161.417 83.1342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 161.29 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 161.29 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c4127dc7-87a6-43d4-a1b7-f6459dac4359))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "#PWR09") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "#PWR017") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:CP1-Device") (at 172.72 91.44 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962620)
(property "Reference" "C9" (at 175.641 90.2716 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "22uF" (at 175.641 92.583 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (at 172.72 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 172.72 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c1c5ab72-fee3-4906-8d60-0e5c48402788))
(pin "2" (uuid 91dcebc0-5022-4023-bfa4-95aa7ce7660d))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C9") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C17") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 166.37 107.95 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006096262f)
(property "Reference" "R8" (at 166.37 102.6922 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22K" (at 166.37 105.0036 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (at 166.37 106.172 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 166.37 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid afc9d04b-5e77-4364-a7f4-7336a0b97081))
(pin "2" (uuid 909891bf-babb-4fef-abe8-cb366ca389af))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "R8") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "R12") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 179.07 111.76 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962637)
(property "Reference" "C10" (at 181.991 110.5916 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "100nF" (at 181.991 112.903 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm" (at 178.1048 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 179.07 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5cf6558e-c9f3-481c-82ee-cd036df0561e))
(pin "2" (uuid 8977f9f0-9128-488b-8c10-91c4cd03ef9f))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "C10") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "C18") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 179.07 101.6 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006096263d)
(property "Reference" "R9" (at 180.848 100.4316 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "2.7" (at 180.848 102.743 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (at 180.848 101.6 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 179.07 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7e7adbbe-adb3-42d7-ac29-91108909e1f0))
(pin "2" (uuid 6be43734-a39a-40f9-9dd4-ad59944cf57a))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "R9") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "R13") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 179.07 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962646)
(property "Reference" "#PWR011" (at 179.07 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 179.197 121.2342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 179.07 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 179.07 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 11f51fcf-a303-46fa-929e-3d3fec28bebb))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "#PWR011") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "#PWR019") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 127 99.06 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060962650)
(property "Reference" "R7" (at 127 101.981 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "680" (at 127 104.2924 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (at 127 100.838 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fad144f5-e7fa-4bf9-a941-03476151adb4))
(pin "2" (uuid 769a00e3-46db-471d-aa95-42bbc211768d))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-00006095e24f"
(reference "R7") (unit 1)
)
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2/00000000-0000-0000-0000-000060964e77"
(reference "R11") (unit 1)
)
)
)
)