

The ZK-1002T Stereo Amplifier by Arrarown is a compact and versatile audio amplifier designed to enhance stereo audio output. It supports multiple input options, including Bluetooth and AUX, and features adjustable volume controls for optimal sound quality. With its small form factor and high efficiency, the ZK-1002T is ideal for a variety of audio applications, such as home audio systems, DIY speaker projects, and portable sound systems.








The ZK-1002T is designed to deliver high-quality stereo sound while maintaining low power consumption. Below are the key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Arrarown |
| Part ID | ZK-1002T |
| Input Voltage Range | 5V - 24V DC |
| Output Power | 50W x 2 (Stereo) |
| Audio Input Options | Bluetooth 5.0, AUX |
| Impedance Range | 4Ω - 8Ω |
| Frequency Response | 20Hz - 20kHz |
| Signal-to-Noise Ratio | ≥ 90dB |
| Dimensions | 82mm x 50mm x 20mm |
| Weight | ~50g |
The ZK-1002T features a straightforward interface for power, input, and output connections. Below is the pin configuration:
| Pin Name | Description |
|---|---|
+ |
Positive DC power input (5V - 24V) |
- |
Negative DC power input (GND) |
AUX IN L |
Left channel AUX input |
AUX IN R |
Right channel AUX input |
| Pin Name | Description |
|---|---|
SPK OUT L+ |
Positive terminal for left speaker |
SPK OUT L- |
Negative terminal for left speaker |
SPK OUT R+ |
Positive terminal for right speaker |
SPK OUT R- |
Negative terminal for right speaker |
The ZK-1002T is easy to integrate into audio systems. Follow the steps below to use the amplifier effectively:
+ and - terminals.AUX IN L and AUX IN R pins, respectively.SPK OUT L+ and SPK OUT L- terminals.SPK OUT R+ and SPK OUT R- terminals.The ZK-1002T can be used with an Arduino UNO to control audio playback via Bluetooth. Below is an example code snippet to demonstrate basic functionality:
/* Example: Controlling ZK-1002T via Arduino UNO
This code demonstrates how to send a signal to the amplifier
to indicate playback status using an LED indicator.
*/
const int ledPin = 13; // Pin connected to an LED for status indication
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
digitalWrite(ledPin, LOW); // Turn off the LED initially
}
void loop() {
// Simulate playback status
digitalWrite(ledPin, HIGH); // Turn on the LED (indicates playback)
delay(5000); // Keep the LED on for 5 seconds
digitalWrite(ledPin, LOW); // Turn off the LED (indicates stop)
delay(2000); // Wait for 2 seconds before repeating
}
No Sound Output
Distorted Sound
Bluetooth Connection Issues
Overheating
Q: Can I use a 12V battery to power the ZK-1002T?
A: Yes, a 12V battery is within the supported voltage range and can be used to power the amplifier.
Q: What is the maximum range of the Bluetooth connection?
A: The Bluetooth range is approximately 10 meters in an open environment.
Q: Can I connect headphones to the ZK-1002T?
A: No, the ZK-1002T is designed for speaker output and is not suitable for headphones.
Q: Is the amplifier compatible with 2Ω speakers?
A: No, the amplifier is designed for speakers with an impedance of 4Ω - 8Ω. Using 2Ω speakers may cause damage.