

The Stereo 3.7W Class D Amplifier is a compact and efficient audio amplifier designed to deliver high-quality sound output while consuming minimal power. Utilizing Class D technology, this amplifier is capable of providing up to 3.7 watts of power per channel, making it ideal for driving small speakers in portable or space-constrained applications. Its low heat dissipation and high efficiency make it suitable for battery-powered devices, DIY audio projects, and embedded systems.








Below are the key technical details of the Stereo 3.7W Class D Amplifier:
| Parameter | Value |
|---|---|
| Output Power | 3.7W per channel (stereo) |
| Supply Voltage Range | 2.5V to 5.5V |
| Efficiency | Up to 90% |
| Signal-to-Noise Ratio | >90 dB |
| Total Harmonic Distortion (THD) | <0.1% |
| Supported Speaker Impedance | 4Ω to 8Ω |
| Frequency Response | 20 Hz to 20 kHz |
| Operating Temperature | -40°C to +85°C |
The Stereo 3.7W Class D Amplifier typically comes in an 8-pin package. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | INL | Left channel audio input |
| 2 | INR | Right channel audio input |
| 3 | GND | Ground connection |
| 4 | VDD | Power supply (2.5V to 5.5V) |
| 5 | OUTL | Left channel audio output |
| 6 | OUTR | Right channel audio output |
| 7 | SD | Shutdown pin (active low, pull high to enable) |
| 8 | BYPASS | Bypass capacitor connection for noise filtering |
The Stereo 3.7W Class D Amplifier can be used with an Arduino UNO to amplify audio signals. Below is an example of how to generate a simple tone and output it to the amplifier:
// Example: Generating a tone with Arduino and driving the amplifier
// Connect the amplifier's INL or INR pin to Arduino's PWM pin (e.g., pin 9).
#define AUDIO_PIN 9 // PWM pin connected to the amplifier's audio input
void setup() {
pinMode(AUDIO_PIN, OUTPUT); // Set the audio pin as an output
}
void loop() {
// Generate a 1 kHz tone for 1 second
tone(AUDIO_PIN, 1000, 1000); // tone(pin, frequency, duration)
delay(1000); // Wait for 1 second
// Pause for 1 second
noTone(AUDIO_PIN); // Stop the tone
delay(1000);
}
Note: Use a low-pass filter (e.g., RC filter) between the Arduino PWM output and the amplifier input to smooth the signal and improve audio quality.
No Sound Output
Distorted Audio
Excessive Noise
Overheating
Can I use this amplifier with a 3.3V power supply? Yes, the amplifier supports a supply voltage range of 2.5V to 5.5V, so 3.3V is within the acceptable range.
What is the maximum speaker wattage I can use? The amplifier can drive speakers up to 3.7W per channel. Ensure the speaker's power rating matches or exceeds this value.
Do I need a heatsink for this amplifier? No, a heatsink is generally not required due to the high efficiency of Class D amplifiers. However, ensure proper ventilation in high-power applications.
Can I use this amplifier for mono audio? Yes, you can use only one channel (e.g., INL and OUTL) for mono audio applications. Leave the unused channel unconnected.