Hc 06 Wireless Bluetooth Module Without Baseplate
Rs. 276.00 Rs. 332.00
- Product Code: BLUETOOTH
- SKU -
- Availability: In Stock
- Price in reward points: 3
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATION | |
Model | HC-06 (without Baseplate) |
Operating Voltage | 3.3V |
Operating Current | 40mA |
Bluetooth version | V2.0+EDR |
Default Baud Rate | 9600,8,1,n. |
Signal coverage | 30ft |
Operating temperature range | -20ºC to +55ºC |
OVERVIEW:
-Works with any USB Bluetooth adapters.
-Default Baud Rate: 9600,8,1,n.
-Built-in antenna.
-Coverage up to 30ft.
PACKAGE INCLUDES:
1 PCS x Hc 06 Wireless Bluetooth Module Without Baseplate
//SOURCE CODE TAKEN FROM BELOW LINK
//http://arduinolearning.com/learning/arduino-and-hc-06-bluetooth-example.php
#include <SoftwareSerial.h>// import the serial library
SoftwareSerial BT(10, 11); // RX, TX
int ledpin=13; // led on D13 will show blink on / off
int BluetoothData; // the data given from Computer
void setup()
{
// put your setup code here, to run once:
BT.begin(9600);
BT.println("Bluetooth On please press 1 or 0 blink LED ..");
pinMode(ledpin,OUTPUT);
}
void loop()
{
// put your main code here, to run repeatedly:
if (BT.available())
{
BluetoothData=BT.read();
if(BluetoothData=='1')
{
// if number 1 pressed ....
digitalWrite(ledpin,1);
BT.println("LED On D13 ON ! ");
}
if (BluetoothData=='0')
{
// if number 0 pressed ....
digitalWrite(ledpin,0);
BT.println("LED On D13 Off ! ");
}
}
delay(100);// prepare for next data ...
}
15 days