Hc 05 Bluelink Rs232
Rs. 357.00 Rs. 429.00
- Brand: https://www.itead.cc/wiki/Serial_Port_Bluetooth_Module_(Master/S
- Product Code: BLUETOOTH
- SKU -
- Availability: In Stock
- Price in reward points: 4
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
Power | 3.3V |
bluetooth pairing password | 1234 |
Default Baud Rate | 38400 |
Size | 34x25mm |
SPECIFICATION:
-Bee Adapter, conveniently linked bluetooth Bee and PC data exchange
-Sensor Shield, for insertion bluetooth Bee to the for , the convenience of bluetooth data for control
-bluetooth adapter for bluetooth and bluetooth Bee, etc. from the device paired.
-Comes with efficient on-board antenna, the antenna exposed transmit better signal quality over longer distances, transparent serial port can be used with a variety of bluetooth adapter, bluetooth phone paired. User-friendly design to facilitate the secondary development.
-The module has been tested to work with the market all paired bluetooth adapter (included with bluetooth laptops and mobile phones)
-This bluetooth module supports master and slave mode, the user can set many detailed parameters AT commands. Way than using a separate slave mode is more freedom and flexibility, can be adapted to the special needs of more users. General and PC, PDA and other bluetooth devices can be paired to slave mode.
OVERVIEW | |
Power | 3.3V |
bluetooth pairing password | 1234 |
Default Baud Rate | 38400 |
Size | 34x25mm |
PACKAGE INCLUDES:
1 PCS x Hc 05 Bluelink Rs232
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");
}
}
15 days