ESP8266之烧写arduino的程序到ESP8266板做客户端并与数据交互-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 4752|回复: 0

ESP8266之烧写arduino的程序到ESP8266板做客户端并与数据交互

[复制链接]
发表于 2018-4-20 19:41 | 显示全部楼层 |阅读模式
本帖最后由 李德凯 于 2020-1-13 08:20 编辑

总操作流程:


下安装
安装时路径不要改,这是对应arduino ide中的路径


https://pan.baidu.com/s/1ZAKDMQ9ojpurD2UM8BtwAA

  • 成功标识:


1-1.png
烧写
各器件链接
  • 使用usb转串口链接esp8266
1-2.png
烧写程序
  • arduino id 配置
1-3.png
  • 写程序



#include <ESP8266WiFi.h>
WiFiClient client;
const char *ssid     = "TP-LINK888";//要加入路由的wifi名
const char *password = "QwE@123@*~*";//要加入路由的wifi密码
const char *host = "192.168.0.102";//服务器IP
const int httpPort =8234;//服务器端口号
void setup() {
  Serial.begin(115200);
  delay(10);
  Serial.print("Connecting to ");
  Serial.println(ssid);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.println("WiFi connected");
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
  while (!client.connect(host, httpPort)) {
    Serial.println("connection failed");
    delay(500);
  }
  Serial.print("connecting to ");
  Serial.println(host);
  client.write("successfully\r\n");//绑定apikey,修改成你自己的apikey
  delay(10);
}

void loop() {

  //接收信息
  while(client.available()){
    String line = client.readStringUntil('\r');
     Serial.println(line);
  }
  //发送信息
  while(Serial.available()){
    String line = Serial.readStringUntil('\r');
    client.println(line);
  }

}







  • 烧写失败,拔出usb转串口重插
1-4.png
测试
串口/网络助手调试

https://pan.baidu.com/s/1m5MAc4ZON0x-nsT-WQAr7g

  • 制作服务端
1-6.png
各器件链接
  • 使用usb转串口链接esp8266
1-5.png
  • 串口助手调试


先开启服务端,再插入“usb转串口”


1-7.gif


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

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

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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