

The Mono 2.6W Class D Amplifier is a compact and efficient audio amplifier designed to amplify audio signals with minimal power loss. Utilizing Class D technology, this amplifier delivers up to 2.6 watts of power output, making it ideal for driving small speakers in portable devices, DIY audio projects, and embedded systems. Its small size and high efficiency make it a popular choice for battery-powered applications.








Below are the key technical details of the Mono 2.6W Class D Amplifier:
| Parameter | Value |
|---|---|
| Output Power | 2.6W (at 4Ω, 10% THD) |
| Supply Voltage Range | 2.5V to 5.5V |
| Efficiency | Up to 90% |
| Input Type | Analog (single-ended) |
| Output Type | Mono (single-channel) |
| Load Impedance | 4Ω to 8Ω |
| Total Harmonic Distortion (THD) | ≤10% (at max power) |
| Quiescent Current | ~2mA |
| Shutdown Current | <1µA |
| Operating Temperature | -40°C to +85°C |
The Mono 2.6W Class D Amplifier typically comes in an 8-pin package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN+ | Positive audio input signal |
| 2 | IN- | Negative audio input signal |
| 3 | GND | Ground connection |
| 4 | VDD | Power supply (2.5V to 5.5V) |
| 5 | OUT+ | Positive speaker output |
| 6 | OUT- | Negative speaker output |
| 7 | SHDN | Shutdown pin (active low, pull high to enable) |
| 8 | BYPASS | Bypass capacitor connection for noise filtering |
The Mono 2.6W Class D Amplifier can be used with an Arduino UNO to amplify audio signals. Below is an example of how to connect and control the amplifier:
// Example code to control the Mono 2.6W Class D Amplifier with Arduino UNO
#define SHDN_PIN 7 // Define the shutdown pin connected to Arduino pin 7
void setup() {
pinMode(SHDN_PIN, OUTPUT); // Set the shutdown pin as an output
digitalWrite(SHDN_PIN, HIGH); // Enable the amplifier by pulling SHDN high
}
void loop() {
// The amplifier is always enabled in this example
// Add your audio signal to the input pins (IN+ and IN-)
// No additional code is required for basic operation
}
No Sound Output:
Distorted Audio:
Overheating:
High Noise or Humming:
Q1: Can I use this amplifier with a 3.7V Li-ion battery?
A1: Yes, the amplifier supports a supply voltage range of 2.5V to 5.5V, so a 3.7V Li-ion battery is suitable.
Q2: What is the maximum speaker cable length I can use?
A2: For optimal performance, keep the speaker cable length as short as possible to minimize signal loss and interference.
Q3: Can I use this amplifier for stereo audio?
A3: No, this is a mono amplifier. For stereo audio, you will need two amplifiers, one for each channel.
Q4: Is it possible to mute the amplifier without disconnecting power?
A4: Yes, you can pull the SHDN pin low to place the amplifier in shutdown mode, effectively muting it.