

The TDA2822M is a low-power audio amplifier manufactured by DAOKI. It is a dual-channel (stereo) amplifier designed for use in portable audio devices, radios, and other low-power audio applications. This component is ideal for applications requiring compact size, low power consumption, and reliable performance. Its ability to operate with a low supply voltage makes it suitable for battery-powered devices.








The TDA2822M is a versatile amplifier with the following key specifications:
| Parameter | Value |
|---|---|
| Manufacturer | DAOKI |
| Part ID | TDA2822M |
| Supply Voltage Range | 1.8V to 15V |
| Output Power | 1W per channel (at 8Ω, Vcc = 6V) |
| Number of Channels | 2 (Stereo) |
| Input Impedance | 100kΩ |
| Output Load Impedance | 4Ω to 32Ω |
| Total Harmonic Distortion | < 0.2% |
| Operating Temperature | -40°C to +85°C |
| Package Type | DIP-8 |
The TDA2822M comes in an 8-pin Dual Inline Package (DIP-8). Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | OUT1 | Output for Channel 1 |
| 2 | Vcc | Positive Supply Voltage |
| 3 | IN1(-) | Inverting Input for Channel 1 |
| 4 | IN2(-) | Inverting Input for Channel 2 |
| 5 | GND | Ground |
| 6 | IN2(+) | Non-Inverting Input for Channel 2 |
| 7 | IN1(+) | Non-Inverting Input for Channel 1 |
| 8 | OUT2 | Output for Channel 2 |
Below is a basic stereo amplifier circuit using the TDA2822M:
+Vcc
|
+------------------+
| |
[C1] [C2]
| |
IN1(+) IN2(+)
| |
[R1] [R2]
| |
GND GND
The TDA2822M can be used with an Arduino UNO to amplify audio signals. Below is an example code to generate a simple tone:
/*
Example: Generate a tone using Arduino and TDA2822M amplifier
Connect the output of the Arduino PWM pin to the amplifier input.
Ensure proper decoupling capacitors are used to block DC components.
*/
const int tonePin = 9; // PWM pin connected to TDA2822M input
void setup() {
pinMode(tonePin, OUTPUT); // Set the pin as output
}
void loop() {
// Generate a 1kHz tone
tone(tonePin, 1000); // Frequency in Hz
delay(1000); // Play tone for 1 second
noTone(tonePin); // Stop tone
delay(1000); // Wait for 1 second
}
No Output Signal:
Distorted Audio:
Overheating:
Q: Can the TDA2822M be used in a mono configuration?
A: Yes, the TDA2822M can be configured as a mono amplifier by bridging the two channels. This increases the output power but requires careful design to avoid phase issues.
Q: What is the maximum output power of the TDA2822M?
A: The maximum output power is 1W per channel at 8Ω load with a supply voltage of 6V.
Q: Can I use the TDA2822M with a 3.3V power supply?
A: Yes, the TDA2822M can operate with a supply voltage as low as 1.8V, making it compatible with 3.3V systems.
Q: How do I reduce noise in my circuit?
A: Use decoupling capacitors near the power supply pins and ensure proper grounding to minimize noise.
This concludes the documentation for the TDA2822M amplifier. For further assistance, refer to the manufacturer's datasheet or contact DAOKI support.