The SparkFun Mono Audio Amp Breakout - TPA2005D1 is a compact and efficient amplifier module designed to drive a single speaker with mono audio signals. This breakout board is ideal for DIY audio projects, portable sound systems, and any application requiring a small, powerful audio amplifier. The TPA2005D1 amplifier chip from Texas Instruments ensures high-quality audio output with minimal power consumption.
Parameter | Value |
---|---|
Operating Voltage | 2.5V to 5.5V |
Output Power | 1.4W @ 5V, 8Ω |
Efficiency | Up to 88% |
Gain | Fixed at 20dB |
THD+N | 0.1% @ 1kHz, 8Ω, 1W |
Shutdown Current | < 1µA |
Speaker Impedance | 4Ω to 8Ω |
Dimensions | 0.8" x 0.8" (20.3mm x 20.3mm) |
Pin | Name | Description |
---|---|---|
1 | VIN | Power supply input (2.5V to 5.5V) |
2 | GND | Ground |
3 | SHDN | Shutdown pin (active low) |
4 | IN+ | Positive audio input |
5 | IN- | Negative audio input |
6 | OUT+ | Positive speaker output |
7 | OUT- | Negative speaker output |
Below is an example code to use the SparkFun Mono Audio Amp Breakout with an Arduino UNO. This code generates a simple square wave audio signal.
// Define the pin connected to the audio input (IN+)
const int audioPin = 9;
void setup() {
// Set the audio pin as an output
pinMode(audioPin, OUTPUT);
}
void loop() {
// Generate a square wave at 1kHz
digitalWrite(audioPin, HIGH);
delayMicroseconds(500); // 500us high time for 1kHz frequency
digitalWrite(audioPin, LOW);
delayMicroseconds(500); // 500us low time for 1kHz frequency
}
No Sound Output:
Distorted Sound:
Overheating:
Q1: Can I use this amplifier with a stereo audio signal? A1: No, the SparkFun Mono Audio Amp Breakout is designed for mono audio signals. For stereo audio, you will need two amplifiers or a stereo amplifier module.
Q2: What is the maximum speaker power I can use with this amplifier? A2: The amplifier can drive a speaker with up to 1.4W of power at 5V and 8Ω impedance.
Q3: How can I control the volume of the audio output? A3: The amplifier has a fixed gain of 20dB. To control the volume, you can adjust the input audio signal level using a potentiometer or an external audio source with volume control.
Q4: Can I use this amplifier with a battery-powered project? A4: Yes, the amplifier is suitable for battery-powered projects. Ensure the battery voltage is within the 2.5V to 5.5V range.
By following this documentation, you can effectively integrate the SparkFun Mono Audio Amp Breakout - TPA2005D1 into your audio projects, ensuring high-quality sound output and reliable performance.