The Amplifier Board 6 x 100 W (Sure Electronics AA-AB34181) is a high-performance audio amplifier board designed to deliver up to 100 watts of output power per channel across six independent channels. Built around the TDA7498 Class-D amplifier chip, this board is ideal for applications requiring high-quality audio output, such as home theater systems, professional audio setups, and multi-room audio systems. Its compact design and efficient power handling make it a versatile choice for both hobbyists and professionals.
The following table outlines the key technical details of the Amplifier Board 6 x 100 W:
Parameter | Value |
---|---|
Manufacturer | Sure Electronics |
Part Number | AA-AB34181 |
Amplifier Chip | TDA7498 |
Output Power | 6 x 100 W (RMS per channel @ 4 Ω, 36 V) |
Supply Voltage Range | 14 V to 39 V DC |
Recommended Supply Voltage | 36 V DC |
Input Sensitivity | 1.5 Vrms |
Input Impedance | 22 kΩ |
Output Impedance | 4 Ω to 8 Ω |
Efficiency | Up to 90% |
Dimensions | 6.00 x 4.50 inches (152.4 x 114.3 mm) |
Weight | 0.5 kg |
The amplifier board features multiple input and output connections. Below is a detailed description of the pin configuration:
Pin | Label | Description |
---|---|---|
1 | VCC | Positive DC power input (14-39 V) |
2 | GND | Ground connection |
Channel | Pin | Label | Description |
---|---|---|---|
CH1 | 1 | IN1+ | Positive audio input for Channel 1 |
2 | IN1- | Negative audio input for Channel 1 | |
CH2 | 3 | IN2+ | Positive audio input for Channel 2 |
4 | IN2- | Negative audio input for Channel 2 | |
CH3 | 5 | IN3+ | Positive audio input for Channel 3 |
6 | IN3- | Negative audio input for Channel 3 | |
CH4 | 7 | IN4+ | Positive audio input for Channel 4 |
8 | IN4- | Negative audio input for Channel 4 | |
CH5 | 9 | IN5+ | Positive audio input for Channel 5 |
10 | IN5- | Negative audio input for Channel 5 | |
CH6 | 11 | IN6+ | Positive audio input for Channel 6 |
12 | IN6- | Negative audio input for Channel 6 |
Channel | Pin | Label | Description |
---|---|---|---|
CH1 | 1 | OUT1+ | Positive speaker output for Channel 1 |
2 | OUT1- | Negative speaker output for Channel 1 | |
CH2 | 3 | OUT2+ | Positive speaker output for Channel 2 |
4 | OUT2- | Negative speaker output for Channel 2 | |
CH3 | 5 | OUT3+ | Positive speaker output for Channel 3 |
6 | OUT3- | Negative speaker output for Channel 3 | |
CH4 | 7 | OUT4+ | Positive speaker output for Channel 4 |
8 | OUT4- | Negative speaker output for Channel 4 | |
CH5 | 9 | OUT5+ | Positive speaker output for Channel 5 |
10 | OUT5- | Negative speaker output for Channel 5 | |
CH6 | 11 | OUT6+ | Positive speaker output for Channel 6 |
12 | OUT6- | Negative speaker output for Channel 6 |
While the amplifier board is not directly programmable, it can be controlled using an Arduino UNO to manage audio input switching or volume control. Below is an example of using the Arduino to control a relay for switching audio inputs:
// Example: Arduino code to control a relay for audio input switching
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Initialize relay to OFF state
}
void loop() {
// Turn on the relay to switch audio input
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the relay on for 5 seconds
// Turn off the relay to switch back
digitalWrite(relayPin, LOW);
delay(5000); // Keep the relay off for 5 seconds
}
No Sound Output:
Distorted Audio:
Overheating: