Wish List 0

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 - SE-4369
  • 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
BT06 bluetooth module:
BT06 bluetooth module is designed for intelligent wireless data transmission, and follow the V2.1 bluetooth
specification. This module supports the UART interface, and supports the SPP bluetooth serial port protocol, which has
the advantages of low cost, small size, low power consumption and high sensitivity

Characteristic:
-bluetooth V2.1+EDR
-bluetooth Class 2
-Built in PCB radio frequency antenna
-Support UART interface
-3.3V power
 
Application field:
-This module is mainly used in the field of short distance wireless data transmission. It can be connected to the bluetooth
-device of PC and the data exchange between the two modules. Avoid cumbersome cable connection, can directly replace
-the serial line.
-The bluetooth wireless data transmission;
-The industrial remote control and telemetry;
-The POS system, wireless keyboard and mouse;
-The traffic, underground positioning, alarm;
-The automatic data acquisition system;
-The wireless data transmission system; bank;
-The wireless data acquisition;
-The building automation, security equipment, wireless monitoring, access control system;
-The intelligent Home Furnishing, industrial control;
-The auto test equipment;
-Interactive television program voting equipment;
-The government energy-saving lamp device
-The wireless LED display system
-The bluetooth joysticks, gamepads
-The bluetooth printer
-The bluetooth remote control toy
-The automobile diagnostic instrument OBDII
 
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

Write a review

Please login or register to review