Wish List 0

Hc 05 Bluebee Xbee Compatible Bluetooth

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.

OVERWIEW
Power                       3.3V 
bluetooth pairing password  1234
Default Baud Rate           38400
Size                        34x25mm

PACKAGE INCLUDES:

1 PCS x Hc 05 Bluebee Xbee Compatible Bluetooth


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.elecfreaks.com/blog/android-bluetooth-part2.html/

/*********************************************************************

**  Description:                                                    **

**  This file is a sample code for your reference.                  **

**                                                                  **

**  Copyright (C) 2011 ElecFreaks Corp.                          **

**  Created by ElecFreaks Robi.W /10 June 2011                      **

**                                                                  **

**  http://www.elecfreaks.com                                       **

*********************************************************************/

#include <SoftwareSerial.h>


#define rxPin 2

#define txPin 3


SoftwareSerial mySerial =  SoftwareSerial(rxPin, txPin);


void setup()

{

  // define pin modes for tx, rx, led pins:

  pinMode(rxPin, INPUT);

  pinMode(txPin, OUTPUT);

  mySerial.begin(38400);

  Serial.begin(9600);

}


void loop()

{

  // listen for new serial coming in:

  char someChar = mySerial.read();

  // print out the character:

  mySerial.print(someChar);

  // print to Serial Monitor

  Serial.print(someChar);

}

[/cce_cpp]

15 days

Write a review

Please login or register to review