Esp8266和Arduino的通讯问题
这是我的第一篇博客,有错误请多多包含,关于Esp8266和Arduino的通讯我是通过软串口的方式实现,这是我用的开发版是Mega 2560和 Esp8266-NodeMcu(被坑了一把不是乐鑫科技的),Mega 2560可以作为软串口引脚的有:10, 11, 12, 13, 14, 15, 50, 51, 52, 53, 62,63, 64, 65, 66, 67, 68, 69.ESP8266的软串口引脚貌似是GPIO引脚都可以用。关于软串口的库及使用可以点我
话不多说 直接上代码
ESP8266的代码
#include<SoftwareSerial.h>
SoftwareSerial ESP8266Serial(1,3);//定义软串口 RX: 1(GPIO 1) TX: 2(GPIO 2)
char SerialData;
void setup()
{
Serial.begin(9