MCookie-BLE
Language | English |
---|
mCookie-BLE模块是蓝牙低能耗 (BLE) 的串口传输模块。可与其他蓝牙设备进行连接通讯。如手机,ipad借助相关APP可以和BT模块通信。 特色
规格
文档支持AT指令配置/控制, 具体AT指令表见此文档附录:[CC2541文档] 注意:
均会返回"ERROR",无法使用 开发编程手册:Protocol_Reference 蓝牙通信程序(通用)
#include <SoftwareSerial.h>
String item;
String currentInfo="";
SoftwareSerial mySerial(4, 5); //根据实际模块上的跳线,选择对应端口
#define my_Serial mySerial
void setup()
{
item = "";
my_Serial.begin(9600);
Serial.begin(9600);
}
void loop()
{
if (my_Serial.available() > 0) {
currentInfo = my_Serial.readStringUntil('\n');
Serial.println(currentInfo);
}
if (Serial.available() > 0) {
item = Serial.readString();
my_Serial.println(item);
Serial.println(item);
}
}
使用lightblue连接蓝牙模块(名称为Microduino或mCookie-xxxxx) 连接后选择"read write without response Notify.
与IOS设备通信与MAC设备通信扩展应用蓝牙彩灯 问题解答
图库 |