Hc 05 Ttl Bluetooth Transceiver Module (Without Button)
Rs. 126.00 Rs. 148.00
- Brand: https://www.itead.cc/wiki/Serial_Port_Bluetooth_Module_(Master/S
- Product Code: BLUETOOTH
- SKU -
- Availability: In Stock
- Price in reward points: 3
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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)
https://www.itead.cc/wiki/Serial_Port_Bluetooth_Module_(Master/Slave)_:_HC-05
//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