Amplified Audo Quality
mctrivia
Posts: 3,772
I have build an audio amplifier to run a little 8ohm speaker I have(Schematic Below) to test it I used the talk demo. The audio is nice and loud now but I get a lot of static. Any sugestions on how to cut the circuit off when not in use to make speaker quiet and save battery power? Also any sugestion how to reduce the noise?
Comments
If you are using PWM on a pin to drive the circuit you could use the pulse (suitably filtered of course) to turn on a transistor in series with the 5 volts and your circuit. Of course then you have an even lower voltage on the output. A simple switch might be better.
PS - You could also use a prop pin to turn on a transistor if you have a pin available. If you decide to provide a higher voltage to the audio circuit you may want to use an optoisolator for safety.
Leon
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Amateur radio callsign: G1HSM
Suzuki SV1000S motorcycle
Or use a Trimmpoti with 1MOhm to find the best gain without clipping.
BTW: a little strange your Amplifier circuit - can be made much simpler.
Andy
What would be your suggestion for a simpler amplifier that can be run off either 3 AA batteries or a 9V battery?
I built a simple darlington pair amplifier first but it sucks back to much power.
thank you for the reminder on how to decrease the amplification.
But because you have just build your circuit you can try to let away the OPAMP and feed the PWM output direct to the Transistors (see attached circuit).
Andy
Edit:this needs min. 5V Supply at the Transistors.
If you have the full amplitide and it is still to quiet, then you need a higher supply voltage and an Amplifier stage before the Transitors:
Post Edited (kwinn) : 2/7/2009 11:09:36 PM GMT
will try your schematic and also try changing to a 9v battery. any suggestions for making it work on 12v line or 9v battery backup.
I can
mctrivia...
When you get this the way you want it... would you please talk partsman (http://ucontroller.com/) into carrying it in kit form... please.
He is a great guy and you could both benefit from it[noparse]:)[/noparse]
Rich
Currently I am looking at running on 12V to run the amp with a 9V battery backup. Unfortunetly I only have 10k pots so the 500k in ariba last design i am doing in fixed values
just a thought
It is pretty hard to talk to your robot if he/she can't hear you[noparse]:)[/noparse] And with sensor integration... sound can be a very useful modality.
-Phil
To set to 50%: (only Play loop shown)
To set the max. Amplitude:
with a left shift of 20, you get only 1/16 of the max. Amplitude - no wonder that the output is very quiet, and the noise part is high. And also the middle voltage is only at ~0.1V with FRQA:=(byte[noparse][[/noparse]pWav+i])<<20.
If you want reduce the amplitude, but let the middle voltage at 1.6V then use something like this:
FRQA:=((byte[noparse][[/noparse]pWav+i])-$80)<<23 + $8000_0000 (works also with a shift of 22,21...)
Andy