The Adjustable Dual Channel Audio Amplifier (Manufacturer Part ID: CE09453) by Core Electronics is a versatile device designed to amplify audio signals with precision. It features two independent channels, each with adjustable gain, making it ideal for stereo applications. This amplifier is commonly used in audio systems, DIY speaker projects, and headphone amplifiers, where enhanced sound quality and control are essential.
The following table outlines the key technical details of the Adjustable Dual Channel Audio Amplifier:
Parameter | Specification |
---|---|
Supply Voltage | 5V to 15V DC |
Output Power | Up to 5W per channel (at 8Ω load) |
Gain Adjustment Range | 0 dB to 20 dB |
Input Impedance | 10 kΩ |
Output Impedance | 4Ω to 16Ω |
Frequency Response | 20 Hz to 20 kHz |
Total Harmonic Distortion (THD) | < 0.1% |
Operating Temperature | -20°C to 70°C |
Dimensions | 50 mm x 30 mm x 15 mm |
The amplifier module has the following pin configuration:
Pin Name | Type | Description |
---|---|---|
VCC | Power Input | Connect to the positive terminal of the power supply (5V-15V). |
GND | Power Ground | Connect to the ground terminal of the power supply. |
IN1 | Audio Input | Left channel audio input. |
IN2 | Audio Input | Right channel audio input. |
OUT1 | Audio Output | Amplified left channel output. |
OUT2 | Audio Output | Amplified right channel output. |
GAIN1 | Gain Control | Adjust the gain for the left channel. |
GAIN2 | Gain Control | Adjust the gain for the right channel. |
The Adjustable Dual Channel Audio Amplifier can be used with an Arduino UNO to process audio signals. Below is an example of how to generate a simple audio tone and amplify it using the module:
// Simple Arduino code to generate a tone and amplify it using the audio amplifier
const int audioPin = 9; // PWM pin connected to IN1 of the amplifier
void setup() {
pinMode(audioPin, OUTPUT); // Set the audio pin as an output
}
void loop() {
// Generate a 1 kHz square wave tone
tone(audioPin, 1000); // Play a 1 kHz tone on the audio pin
delay(1000); // Play the tone for 1 second
noTone(audioPin); // Stop the tone
delay(1000); // Wait for 1 second before repeating
}
No Sound Output:
Distorted Sound:
Overheating:
Noise or Interference:
Q1: Can I use this amplifier with a 3.3V power supply?
A1: No, the minimum supply voltage is 5V. Using a lower voltage may result in improper operation or no output.
Q2: How do I adjust the gain for each channel?
A2: Connect a potentiometer or a fixed resistor to the GAIN1 and GAIN2 pins. Adjust the resistance to set the desired gain level.
Q3: Can I use this amplifier for mono audio applications?
A3: Yes, you can use only one channel (e.g., IN1 and OUT1) for mono audio. Leave the unused channel unconnected.
Q4: What is the maximum speaker power this amplifier can drive?
A4: The amplifier can deliver up to 5W per channel when driving an 8Ω speaker.
By following this documentation, you can effectively integrate the Adjustable Dual Channel Audio Amplifier into your audio projects and achieve high-quality sound amplification.