Wish List 0

Hc 05 Ttl Bluetooth Transceiver Module (Without Button)

Rs. 164.00 Rs. 192.00

The Bluetooth Transceiver HC-05 TTL Module with enable/disable button Breakout is the latest Bluetooth wireless serial cable! This version of the popular Bluetooth uses the HC-05/HC-06 module. These modems work as a serial (RX/TX) pipe. Any serial stream from 9600 to 115200bps can be passed seamlessly from your computer to your target.
The remote unit can be powered from 3.3V up to 6V for easy battery attachment. All signal pins on the remote unit are 3V-6V tolerant. No level shifting is required.
Do not attach this device directly to a serial port. You will need an RS232 to TTL converter circuit or Arduino XBee USB Adapter if you need to attach this to a computer. You can either solder a 6-pin header or individual wires. The unit comes without a connector.
Please see related male and female pins below. And now, we provide HC-05/06, HC-05 could be set to Master or Slave by a user. HC-06 just be Master or Slave, that could be customized.

HC-05 Applications:
-Embedded Projects
-Industrial Applications
-Computer and portable Devices
-GPS receiver.etc.
 
Note: 
Product Image may vary in terms of design and colour of the board 

Features :
-CSR Bluetooth Chip Solution
-Bluetooth Spec v2.0 EDR Compliant
-Enhanced Data Rate (EDR) compliant with V2.0.E.2 of the specification for both 2Mbps and 3Mbps modulation modes
-Full Speed Bluetooth Operation with Full Piconet Support and Scatternet Support
-Incredible small size with 3.3V input, and RoHS Compliant
-UART interface and with baud rate setup function
-Support for 8Mbit External Flash Onboard
-Support for 802.11Co-Existence.
-A range of operation: 8 – 10 meter.
SPECIFICATION
Input Supply voltage (V)     3.6 ~ 6
Frequency                    2.4GHz ISM band
Modulation                   GFSK (Gaussian Frequency Shift Keying)
Emission power               ≤4dBm, Class 2
Sensitivity                  ≤-84dBm at 0.1% BERCSR
Range of operation (m)       8 ~ 10
 OVERVIEW
-Bluetooth protocol     Bluetooth Specification v2.0+EDR
-Frequency              2.4GHz ISM band
-Modulation             GFSK(Gaussian Frequency Shift Keying)
-Emission power         ≤4dBm, Class 2
-Sensitivity            ≤-84dBm at 0.1% BERCSR Bluetooth Chip Solution


-Enhanced Data Rate (EDR) compliant with V2.0.E.2 of the specification for both 2Mbps and 3Mbps modulation modes

-Full Speed Bluetooth Operation with Full Piconet Support and Scatternet Support

-Incredible small size with 3.3V input, and RoHS Compliant

-UART interface and with baud rate setup function

PACKAGE INCLUDES:

1 PCS x Hc 05 Ttl Bluetooth Transceiver Module (Without Button)


//SOURCE CODE TAKE FROM BELOW LINK

//https://create.arduino.cc/projecthub/electropeak/getting-started-with-hc-05-bluetooth-module-arduino-e0ca81

/*   

HC05 - Bluetooth AT-Command mode  

modified on 10 Feb 2019 

by Saeed Hosseini 

https://electropeak.com/learn/ 

*/ 

#include <SoftwareSerial.h> 

SoftwareSerial MyBlue(2, 3); // RX | TX 

int flag = 0; 

int LED = 8; 

void setup() 

{   

 Serial.begin(9600); 

 MyBlue.begin(9600); 

 pinMode(LED, OUTPUT); 

 Serial.println("Ready to connect\nDefualt password is 1234 or 000"); 

void loop() 

 if (MyBlue.available()) 

   flag = MyBlue.read(); 

 if (flag == 1) 

 { 

   digitalWrite(LED, HIGH); 

   Serial.println("LED On"); 

 } 

 else if (flag == 0) 

 { 

   digitalWrite(LED, HIGH); 

   Serial.println("LED Off"); 

 } 

}  

https://www.youtube.com/watch?v=OhnxU8xALtg

15 days

Write a review

Please login or register to review