Hc 05 Bluebee Xbee Compatible Bluetooth
Rs. 357.00 Rs. 429.00
- Brand: https://www.itead.cc/wiki/Serial_Port_Bluetooth_Module_(Master/S
- Product Code: BLUETOOTH
- SKU -
- Availability: In Stock
- Price in reward points: 4
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Power | 3.3V |
-bluetooth pairing password | 1234 |
-Default Baud Rate | 38400 |
-Size | 34x25mm |
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
https://www.itead.cc/wiki/Serial_Port_Bluetooth_Module_(Master/Slave)_:_HC-05
//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