

The REF-BTS 2CH is a reference design for a 2-channel Bluetooth stereo audio system, manufactured by RUET Electra Force. This component is typically used for wireless audio applications, providing high-quality stereo sound over Bluetooth connections. It is ideal for use in home audio systems, portable speakers, and automotive audio systems.
| Parameter | Value |
|---|---|
| Bluetooth Version | 5.0 |
| Operating Voltage | 3.3V - 5V |
| Current Consumption | 50mA (typical) |
| Audio Output Power | 2 x 3W (at 4Ω load) |
| Frequency Response | 20Hz - 20kHz |
| Signal-to-Noise Ratio (SNR) | >90dB |
| Total Harmonic Distortion (THD) | <0.1% |
| Dimensions | 50mm x 30mm x 10mm |
| Pin No. | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power Supply (3.3V - 5V) |
| 2 | GND | Ground |
| 3 | L_OUT | Left Channel Audio Output |
| 4 | R_OUT | Right Channel Audio Output |
| 5 | BT_EN | Bluetooth Enable (Active High) |
| 6 | STATUS | Bluetooth Connection Status Indicator |
| 7 | RXD | UART Receive (for configuration) |
| 8 | TXD | UART Transmit (for configuration) |
Below is an example code to configure the REF-BTS 2CH using an Arduino UNO:
#include <SoftwareSerial.h>
// RX and TX pins for SoftwareSerial
const int RX_PIN = 10;
const int TX_PIN = 11;
// Create a SoftwareSerial object
SoftwareSerial btSerial(RX_PIN, TX_PIN);
void setup() {
// Initialize serial communication with the computer
Serial.begin(9600);
// Initialize serial communication with the Bluetooth module
btSerial.begin(9600);
// Enable the Bluetooth module
pinMode(5, OUTPUT);
digitalWrite(5, HIGH);
// Wait for the Bluetooth module to initialize
delay(1000);
// Send a test command to the Bluetooth module
btSerial.println("AT");
}
void loop() {
// Check if data is available from the Bluetooth module
if (btSerial.available()) {
// Read the data and print it to the Serial Monitor
char c = btSerial.read();
Serial.print(c);
}
// Check if data is available from the Serial Monitor
if (Serial.available()) {
// Read the data and send it to the Bluetooth module
char c = Serial.read();
btSerial.print(c);
}
}
No Audio Output:
Bluetooth Connection Issues:
UART Communication Problems:
By following this documentation, users should be able to effectively integrate and troubleshoot the REF-BTS 2CH in their wireless audio applications.







