Top picks this week. Up to 50% off the best selling products.
– Serial Transparent Communication – Works like a wireless serial cable replacement
– Fully Compatible with HC-06 – Can pair with existing HC-05/HC-06 devices
– 5V TTL Logic – Directly interfaces with Arduino, STM32, ESP8266, and more
– Default Baud Rate: 115200 bps
– LED Indicator – Shows connection status (blinking = unpaired, solid = connected)
– Compact & Reliable – Small size, low power consumption
This UGE Bluetooth module functions similarly to the HC-06 module, providing SPP (Serial Port Profile) communication for wireless UART transmission. It allows microcontrollers (like Arduino, ESP32, STM32, etc.) to communicate with PCs, smartphones, or other Bluetooth devices using serial commands over Bluetooth.
| Pin | Function |
|---|---|
| VCC | 5V Power Input |
| GND | Ground |
| TX | UART Transmit (5V logic) |
| RX | UART Receive (5V logic) |
– Wireless Serial Communication between Arduino, ESP8266, ESP32, Raspberry Pi, STM32, etc.
– Robotics & Remote Control Systems – Control devices via Bluetooth from a smartphone or PC
– Wireless Debugging & Data Logging – Send/receive serial data without wires
– Industrial Automation – Replace wired UART communication in embedded systems
– Smart Home & IoT – Bluetooth-based device control
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(2, 3); // RX, TX (Connect TX of Bluetooth module to D2, RX to D3)void setup() {
Serial.begin(115200); // Serial monitor
BTSerial.begin(115200); // Bluetooth module baud rate
Serial.println("Bluetooth Module Ready!");
}
void loop() {
if (BTSerial.available()) {
Serial.write(BTSerial.read()); // Read data from Bluetooth and print to Serial
}
if (Serial.available()) { BTSerial.write(Serial.read()); // Send data to Bluetooth
}
}
This self-made Bluetooth SPP serial module is a reliable, easy-to-use wireless UART solution, ideal for Arduino, ESP8266, STM32, Raspberry Pi, and other microcontrollers. If it works like an HC-06, it should support AT commands for configuration and 5V logic compatibility for seamless integration.
| Weight | 0.01 kg |
|---|
You must be logged in to post a review.
Reviews
There are no reviews yet.