Модуль беспроводной связи bluetooth HC-05 в форм факторе BEE. Для подключения к Arduino вам понадобится специальный шилд. Шаг ножек на разъёме 1.27 мм.
ТЕХНИЧЕСКИЕ ПАРАМЕТРЫ
- Напряжение питания: 3,3 В (3-3,6 В)
- Скорость передачи данных: 1200–1382400
- Дальность связи при прямой видимости: 30 м
ПРИМЕР КОДА
#include "BTBee.h"
//#include
//SoftwareSerial BTSerial(10, 11); // RX | TX
#include
AltSoftSerial BTSerial(10, 11);
// RX | TX pins are there for backward compatibility and
// ignored in favor of the fixed RX=8, TX=9
void setup(){
pinMode(9, OUTPUT); // this pin will pull the BT Module pin 34 (key pin) HIGH to switch module to AT mode
digitalWrite(9, HIGH);
Serial.begin(115200);
Serial.println("Enter AT commands:");
BTSerial.begin(115200); // your own BT Module default speed in AT command more
}
void loop(){
// Keep reading from BT Module and send to Arduino Serial Monitor
if (BTSerial.available())
Serial.write(BTSerial.read());
// Keep reading from Arduino Serial Monitor and send to BT Mo dule
if (Serial.available())
BTSerial.write(Serial.read());
delay(10);
}
КОМПЛЕКТ ПОСТАВКИ
- Bee Bluetooth HC05 модуль х 1
Наверняка понадобятся
Метки: #bee, #hc05, #Bluetooth