Wish List 0

Hc 06 Wireless Bluetooth Module Without Baseplate

Rs. 276.00 Rs. 332.00

  • Product Code: BLUETOOTH
  • SKU - SE-4360
  • 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
The HC-06 Wireless Bluetooth Module is a Serial port Bluetooth module which having fully qualified Bluetooth V2.0+EDR (Enhanced Data Rate) 3Mbps Modulation with complete 2.4GHz radio transceiver and baseband.
It uses CSR Blue core 04-External single-chip Bluetooth with CMOS technology and frequency hopping spread spectrum technique (FHSS) to avoid interference with other devices and to have full duplex transmission. The device works on the frequency range from 2.402 GHz to 2.480GHz.
HC-06 Bluetooth Module Advantages
HC-06 is the best option when short-distance wireless communication is needed. The module is used for wireless communications of less than 100 meters.
The module is very easy to interface and to communicate.
The module is one of the cheapest solutions for wireless communication of all types present in the market.
The module consumes very less power to function and can be used on battery-operated mobile systems.
The module can be interfaced with almost all controllers or processors as it uses the UART interface.

Applications:
-Hobby projects
-Engineering applications
-Robotics
-Mobile Phone Accessories
-Servers
-Computer Peripherals
-Sports and Leisure Equipment
-USB Dongles

Features:
-Works with any USB Bluetooth adapters.
-Default Baud Rate: 9600,8,1,n.
-Built-in antenna.
-Coverage up to 30ft.
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

Write a review

Please login or register to review