ESP8266之8266+arduino uno r3(做客户端)与服务端数据交互-Arduino中文社区 - Powered by Discuz! Archiver

李德凯 发表于 2018-5-2 14:38

ESP8266之8266+arduino uno r3(做客户端)与服务端数据交互

本帖最后由 李德凯 于 2020-1-13 08:17 编辑

总操作流程:

1、各器件链接
2、写程序
3、测试


各器件链接




esp8266-01与arduino uno r3 连接


esp8266-01:3v3对应 arduino uno r3:3.3v
esp8266-01:EN   对应 arduino uno r3:3.3v
esp8266-01:IO0对应 arduino uno r3:3.3v
esp8266-01:TX   对应 arduino uno r3:10
esp8266-01:RX   对应 arduino uno r3:11
esp8266-01:RX   对应 arduino uno r3:GND
esp8266-01:IO16 对应 arduino uno r3:RESET


写程序




#include <SoftwareSerial.h>

SoftwareSerial mySerial(10, 11); //注意引脚不要用1和0

void setup()
{
Serial.begin(115200);
while (!Serial) {
}
Serial.println("Goodnight moon!");

mySerial.begin(115200);
mySerial.println("Hello, world?");
}

void loop() // run over and over
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}


测试


制作服务端











先开启服务端,启动开发板



页: [1]
查看完整版本: ESP8266之8266+arduino uno r3(做客户端)与服务端数据交互