两个Microduino BT互相通信
502748957@qq.com(讨论 | 贡献)2018年6月13日 (三) 09:32的版本
默认串口为软串口(D4,D5),这里介绍默认串口的连接方法,如果更改跳线你需要对应更改串口程序。注意软串口波特率不能高于38400.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(4, 5); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
}
void loop() // run over and over
{
if(Serial.available())
{
mySerial.write(Serial.read());
}
if(mySerial.available())
{
Serial.write(mySerial.read());
}
}
将程序下载到核心板,可以通过串口输入数据相互发送数据。 注意,蓝牙连接后,AT命令不起作用了,只能当数据发送出去。 |