Hc 05 Wireless Bluetooth Module Without Base Plate
Rs. 251.00 Rs. 289.00
- Product Code: BLUETOOTH
- SKU -
- Availability: In Stock
- Price in reward points: 2
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
HC-05 6 Pin Wireless Serial Bluetooth Module is a Bluetooth module for use with any microcontroller. It uses the UART protocol to make it easy to send and receive data wirelessly.
The HC-05 Wireless Bluetooth Module without Baseplate is a slave only device. This means that it can connect to most phones and computers with Bluetooth but it cannot connect to another slave-only device such as keyboards and other HC-06 modules. To connect with other slave devices a master module would be necessary such as the HC-05 version which can do both master and slave.
We also stock HC-05 Module with base plate
Applications:
-Embedded Projects.
-Industrial Applications.
-Computer and Portable Devices.
-GPS receiver.
Features:
-Working current: matching for 30 mA, matching the communication for 8 mA.
-Dormancy current: no dormancy.
-Used for a GPS navigation system, water, and electricity gas meter reading system.
-With the computer and Bluetooth adapter, PDA, seamless connection equipment.
-Bluetooth module HC-08 Master and slave Two in one module.
-Use the CSR mainstream Bluetooth chip, Bluetooth V2.0 protocol standards.
-Potter default rate of 9600, the user can be set up.
-Bluetooth protocol: Bluetooth Specification v2.0+EDR
-Speed: Asynchronous: 2.1Mbps(Max) / 160 kbps, Synchronous: 1Mbps/1Mbps.
-Security: Authentication and encryption.
-Profiles: Bluetooth serial port.
SPECIFICATION | |
Input Supply voltage (V) | 3.6 ~ 6 |
Input current (mA) | 50 |
Maximum Operating Range (m) | 10 |
Operating Frequency | 2.4GHz ISM band |
Modulation | GFSK (Gaussian Frequency Shift Keying) |
Emission power | 4dBm, Class 2 |
Sensitivity | -84dBm at 0.1% BER |
Operating Temperature (℃) | -20 ~ +75 |
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% BER. |
PACKAGE INCLUDES:
1 PCS x Hc 05 Wireless Bluetooth Module Without Base Plate
//SOURCE CODE TAKEN FROM BELOW LINK
//https://create.arduino.cc/projecthub/akshayjoseph666/interfacing-bluetooth-module-hc-05-with-arduino-uno-f5209b
//sketch created by Akshay Joseph
char inputByte;
void setup() {
Serial.begin(9600);
pinMode(13,OUTPUT);
}
void loop() {
while(Serial.available()>0){
inputByte= Serial.read();
Serial.println(inputByte);
if (inputByte=='Z'){
digitalWrite(13,HIGH);
}
else if (inputByte=='z'){
digitalWrite(13,LOW);
}
}
}
15 days