The Bluetooth Audio Receiver 5.0 by Kit (Part ID: JL) is a versatile device designed to receive audio signals wirelessly via Bluetooth 5.0 technology. This component allows for high-quality audio streaming from compatible devices such as smartphones, tablets, and computers. It is ideal for applications in home audio systems, car audio systems, and portable speaker setups.
Specification | Value |
---|---|
Bluetooth Version | 5.0 |
Operating Voltage | 3.3V - 5V |
Current Consumption | 20mA - 30mA |
Audio Output | Stereo, 3.5mm jack |
Transmission Range | Up to 10 meters (33 feet) |
Supported Profiles | A2DP, AVRCP |
Dimensions | 30mm x 20mm x 5mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (3.3V - 5V) |
2 | GND | Ground |
3 | RX | UART Receive (for configuration) |
4 | TX | UART Transmit (for configuration) |
5 | L_OUT | Left audio output |
6 | R_OUT | Right audio output |
To configure the Bluetooth Audio Receiver 5.0 using an Arduino UNO, you can use the following code:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial BTSerial(10, 11); // RX, TX
void setup() {
// Start the hardware serial communication
Serial.begin(9600);
// Start the software serial communication
BTSerial.begin(9600);
Serial.println("Bluetooth Audio Receiver 5.0 Configuration");
}
void loop() {
// Read from the Bluetooth module and send to the Serial Monitor
if (BTSerial.available()) {
Serial.write(BTSerial.read());
}
// Read from the Serial Monitor and send to the Bluetooth module
if (Serial.available()) {
BTSerial.write(Serial.read());
}
}
By following this documentation, users can effectively integrate the Bluetooth Audio Receiver 5.0 into their audio systems, ensuring high-quality wireless audio streaming.