The EZ-SFX Amp is a compact audio amplifier module designed to amplify low-level audio signals to a higher level suitable for driving speakers. This makes it an ideal choice for a variety of audio applications, such as DIY audio projects, portable speakers, and enhancing the audio output of small electronic devices.
The EZ-SFX Amp module is designed with the following key technical specifications:
Specification | Value | Description |
---|---|---|
Supply Voltage | 2.5V - 5.5V | The operating voltage range of the module. |
Output Power | 3W (typical) | Power output when driving a 4Ω speaker. |
Input Impedance | 10kΩ | Impedance of the audio input. |
Frequency Response | 20Hz - 20kHz | The range of frequencies the amp can handle. |
Efficiency | >90% | Power efficiency of the amplifier. |
THD+N | <0.1% | Total Harmonic Distortion plus Noise. |
Pin Number | Name | Description |
---|---|---|
1 | VCC | Power supply input (2.5V - 5.5V). |
2 | GND | Ground reference for power and signal. |
3 | IN+ | Positive audio input signal. |
4 | IN- | Negative audio input signal (ground for single-ended input). |
5 | OUT+ | Positive speaker output. |
6 | OUT- | Negative speaker output. |
Power Supply Connection: Connect the VCC pin to a power source within the specified voltage range and the GND pin to the common ground of your circuit.
Audio Input Connection: Connect your audio source to the IN+ and IN- pins. For a single-ended input, connect IN- to ground.
Speaker Connection: Connect the speaker terminals to the OUT+ and OUT- pins, ensuring that the speaker's impedance matches the amplifier's requirements.
Signal Source: Ensure that the input signal level is within the acceptable range to prevent distortion.
Q: Can I use the EZ-SFX Amp with a 6Ω speaker? A: Yes, the amplifier can drive speakers with impedances higher than 4Ω, but the output power will be reduced.
Q: What is the maximum input signal level for the EZ-SFX Amp? A: The maximum input signal level should not exceed the supply voltage to prevent clipping and distortion.
Q: Can the EZ-SFX Amp be used with a mono input signal? A: Yes, for a mono input, connect the audio signal to IN+ and ground the IN- pin.
The following example demonstrates how to connect the EZ-SFX Amp to an Arduino UNO and generate a simple tone.
int speakerPin = 9; // PWM-capable pin connected to IN+ on the EZ-SFX Amp
void setup() {
pinMode(speakerPin, OUTPUT);
}
void loop() {
// Generate a 1kHz tone for 1 second
tone(speakerPin, 1000, 1000);
delay(1500); // Wait for 1.5 seconds
}
Note: The tone()
function generates a square wave at the specified frequency and duration. The EZ-SFX Amp will amplify this signal to drive the speaker. Ensure that the PWM frequency is within the audio range for the best results.