找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3152|回复: 1
收起左侧

esp8266关于arduino的一些测试文件

[复制链接]
ID:229133 发表于 2018-11-19 17:52 | 显示全部楼层 |阅读模式
0.png
  1. void setup() {
  2.   inputString.reserve(20);
  3.   swSerial.begin(9600);
  4.   Serial.begin(9600);
  5.   while (!Serial)
  6.     ;
  7.   Serial.println("Starting wifi");
  8.   wifi.setTransportToTCP();// this is also default
  9.   // wifi.setTransportToUDP();//Will use UDP when connecting to server, default is TCP
  10.   wifi.endSendWithNewline(true); // Will end all transmissions with a newline and carrage return ie println.. default is true
  11.   wifi.begin();
  12.   //Turn on local ap and server (TCP)
  13.   wifi.startLocalAPAndServer("MY_CONFIG_AP", "password", "5", "2121");
  14.   wifi.connectToAP("wifissid", "wifipass");
  15.   wifi.connectToServer("192.168.0.28", "2121");
  16.   wifi.send(SERVER, "ESP8266 test app started");
  17. }


  18. void loop() {
  19.   //Make sure the esp8266 is started..
  20.   if (!wifi.isStarted())
  21.     wifi.begin();
  22.   //Send what you typed in the arduino console to the server
  23.   static char buf[20];
  24.   if (stringComplete) {
  25.     inputString.toCharArray(buf, sizeof buf);
  26.     wifi.send(SERVER, buf);
  27.     inputString = "";
  28.     stringComplete = false;
  29.   }
  30.   //Send a ping once in a while..
  31.   if (millis() > nextPing) {
  32.     wifi.send(SERVER, "Ping ping..");
  33.     nextPing = millis() + 10000;
  34.   }
  35.   //Listen for incoming messages and echo back, will wait until a message is received, or max 6000ms..
  36.   WifiMessage in = wifi.listenForIncomingMessage(6000);
  37.   if (in.hasData) {
  38.     if (in.channel == SERVER)
  39.       Serial.println("Message from the server:");
  40.     else
  41.       Serial.println("Message a local client:");
  42.     Serial.println(in.message);
  43.     //Echo back;
  44.     wifi.send(in.channel, "Echo:", false);
  45.     wifi.send(in.channel, in.message);
  46.     nextPing = millis() + 10000;
  47.   }
  48.   //If you want do disconnect from the server use:
  49.   // wifi.disconnectFromServer();
  50. }


复制代码


ESP8266wifi-master.zip

14.72 KB, 下载次数: 13, 下载积分: 黑币 -5

评分

参与人数 1黑币 +50 收起 理由
admin + 50 共享资料的黑币奖励!

查看全部评分

回复

使用道具 举报

ID:425007 发表于 2018-11-20 09:36 来自手机 | 显示全部楼层
这个是有什么用的?
回复

使用道具 举报

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

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

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