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

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 5701|回复: 0

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

[复制链接]
发表于 2018-5-2 14:38 | 显示全部楼层 |阅读模式
本帖最后由 李德凯 于 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-6.png

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


2-1.gif
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 16:34 , Processed in 0.074744 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表