“Microduino-Module BLE/zh”的版本间的差异
502748957@qq.com(讨论 | 贡献) |
502748957@qq.com(讨论 | 贡献) (→扩展) |
||
第117行: | 第117行: | ||
*'''[[【使用AT指令修改蓝牙设置】]]''' | *'''[[【使用AT指令修改蓝牙设置】]]''' | ||
*'''[[【修改跳线以更改串口引脚】]]''' | *'''[[【修改跳线以更改串口引脚】]]''' | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
第128行: | 第122行: | ||
[[file:Microduino-BT-UUID.png|800px|thumb|center|Microduino-BT-UUID]] | [[file:Microduino-BT-UUID.png|800px|thumb|center|Microduino-BT-UUID]] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
===通过CoreUSB对Shield BT4.0进行串口调试=== | ===通过CoreUSB对Shield BT4.0进行串口调试=== |
2018年6月14日 (四) 08:24的版本
Language | English |
---|
Microduino-BT模块是基于CC2541芯片的蓝牙低能耗 (BLE) 的串口透明传输模块,专为 U 型27 PIN 标准 Microduino 接口设计。原模块参考Microduino-【BT】/zh。 目录特色
规格
文档支持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);
}
}
与IOS设备通信与MAC设备通信扩展
通过CoreUSB对Shield BT4.0进行串口调试
通过Core+的uart1对Microduino BT进行串口调试
注意:如果使用Android设备调试,系统要4.3以上的才能检测到Microduino BT模块。通讯源代码参考:https://github.com/iascchen/android-microduino Microduino-Shield BT4.0 简单测试
其它应用: Microduino 物联网智能家居方案 Microduino 小车 Microduino KIT Microduino BLE_Android-202KIT/zh 问题解答
购买历史
图库视频 |