Bluetooth Serial Port Wireless Data Module Compatible Spp C With Hc 06 Bluetooth 2.1 Modules For 51 Single Ch
Rs. 143.00 Rs. 161.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
SPECIFICATION | |
Working voltage | 2.2 - 4.2V |
Operating temperature | -40 - 85 ° C |
Antenna | PCB onboard antenna |
Wake-up mode average current | 19MA |
Sleep mode average current | 40uA |
OVERWIEW:
-bluetooth V2.1+EDR
-bluetooth Class 2
-Built in PCB radio frequency antenna
-Support UART interface
-3.3V power
PACKAGE INCLUDES:
1 PCS x Bluetooth Serial Port Wireless Data Module Compatible Spp C With Hc 06 Bluetooth 2.1 Modules For 51 Single Ch
//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");
}
}
15 days