Wish List 0

Hc 05 Bluelink Rs232

Rs. 357.00 Rs. 429.00

Description:
-Bluetooth Bee bluetooth wireless module using XBEE design, compact size, compatible with XBEE expansion base for a variety of 3.3V microcontroller systems, modules can use the AT command set master-slave mode, baud rate, pairing password, the user information, default baud rate: 38400, default slave mode, the pairing 1234.

Power  3.3V 
bluetooth pairing password 1234
Default Baud Rate  38400
Size  34x25mm
 
Features:
-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.


Note:
-It's HC-05 bluetooth module Slave and master two in one module
-Never use more than 3.3V power supply, which may destroy the module
-Modify the baud rate after a reboot of the module

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


//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

Write a review

Please login or register to review