当前位置:   article > 正文

esp32_web 网页配网

esp32_web 网页配网
  1. #include<WiFi.h>
  2. #include<WebServer.h>
  3. WebServer esp32_server(80); //声明一个 WebServer 的对象,对象的名称为 esp32_server
  4. //设置网络服务器响应HTTP请求的端口号为 80
  5. const char *AP_SSID="test";
  6. const char *AP_Password="123456789";
  7. void handleRoot() //该函数内为处理网站根目录 “/” 时所执行的内容
  8. {
  9. Serial.print("客户端访问!");
  10. esp32_server.send(200,"text/plain","Holle World!"); //用函数 send 向浏览器发送信息,200表示正常状态码,text/plain表示发送的内容为纯文本类型 text/html为HTML的网页信息,"Holle World!"为发送的内容
  11. }
  12. void handleFound()
  13. {
  14. esp32_server.send(404,"text/plain","404:Not Found!"); //用函数 send 向浏览器发送信息,404表示服务器上找不到请求的资源,text/plain表示发送的内容为纯文本类型,"404:Not Found!"为发送的内容
  15. }
  16. void setup() {
  17. // put your setup code here, to run once:
  18. Serial.begin(115200); //初始化串口通信并设置波特率为115200
  19. WiFi.softAP(AP_SSID,AP_Password); //设置AP模式热点的名称和密码,密码可不填则发出的热点为无密码热点
  20. Serial.print("\n ESP32建立的wifi名称为:");
  21. Serial.print(AP_SSID); //串口输出ESP32建立的wifi的名称
  22. Serial.print("\nESP32建立wifi的IP地址为:");
  23. Serial.print(WiFi.softAPIP()); //串口输出热点的IP地址
  24. esp32_server.begin(); //启动网络服务器
  25. esp32_server.on("/HolleWorld",HTTP_GET,handleRoot); //函数处理当有HTTP请求 "/" 时执行函数 handleRoot
  26. esp32_server.onNotFound(handleFound); //当请求的网络资源不在服务器的时候,执行函数 handleFound
  27. }
  28. void loop() {
  29. // put your main code here, to run repeatedly:
  30. esp32_server.handleClient();
  31. }

进阶 开启热点服务后扫描附近热点 然后 选择热点 输入密码.

  1. #include <WiFi.h>
  2. #include <DNSServer.h>
  3. #include <WebServer.h>
  4. #include <ESPmDNS.h>      //用于设备域名 MDNS.begin("esp32")
  5. #include <esp_wifi.h>     //用于esp_wifi_restore() 删除保存的wifi信息
  6.  
  7. const int baudRate = 115200;               //设置波特率
  8. const byte DNS_PORT = 53;                  //设置DNS端口号
  9. const int webPort = 80;                    //设置Web端口号
  10. const int resetPin = 0;                    //设置重置按键引脚,用于删除WiFi信息
  11. const int LED = 2;                         //设置LED引脚
  12. const char* AP_SSID  = "ESP32";    //设置AP热点名称
  13. const char* AP_PASS  = "123456789";               //设置AP热点密码
  14. const char* HOST_NAME = "MY_ESP";       //设置设备名
  15. String scanNetworksID = "";                //用于储存扫描到的WiFi ID
  16. int connectTimeOut_s = 15;                 //WiFi连接超时时间,单位秒
  17. IPAddress apIP(192, 168, 4, 1);            //设置AP的IP地址
  18. String wifi_ssid = "";                     //暂时存储wifi账号密码
  19. String wifi_pass = "";                     //暂时存储wifi账号密码
  20.  
  21. //定义根目录首页网页HTML源代码
  22. #define ROOT_HTML  "<!DOCTYPE html><html><head><title>WIFI Config by ysl</title><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"></head><style type=\"text/css\">.input{display: block; margin-top: 10px;}.input span{width: 100px; float: left; float: left; height: 36px; line-height: 36px;}.input input{height: 30px;width: 200px;}.btn{width: 120px; height: 35px; background-color: #000000; border:0px; color:#ffffff; margin-top:15px; margin-left:100px;}</style><body><form method=\"POST\" action=\"configwifi\"><label class=\"input\"><span>WiFi SSID</span><input type=\"text\" name=\"ssid\" value=\"\"></label><label class=\"input\"><span>WiFi PASS</span><input type=\"text\"  name=\"pass\"></label><input class=\"btn\" type=\"submit\" name=\"submit\" value=\"Submie\"> <p><span> Nearby wifi:</P></form>"
  23. //定义成功页面HTML源代码
  24. #define SUCCESS_HTML  "<html><body><font size=\"10\">successd,wifi connecting...<br />Please close this page manually.</font></body></html>"
  25.  
  26. DNSServer dnsServer;            //创建dnsServer实例
  27. WebServer server(webPort);      //开启web服务, 创建TCP SERVER,参数: 端口号,最大连接数
  28.  
  29. //初始化AP模式
  30. void initSoftAP(){
  31.   WiFi.mode(WIFI_AP);     //配置为AP模式
  32.   WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));   //设置AP热点IP和子网掩码
  33.   if(WiFi.softAP(AP_SSID,AP_PASS)){   //开启AP热点,如需要密码则添加第二个参数
  34.     //打印相关信息
  35.     Serial.println("ESP-32 SoftAP is right.");
  36.     Serial.print("Soft-AP IP address = ");
  37.     Serial.println(WiFi.softAPIP());
  38.     Serial.println(String("MAC address = ")  + WiFi.softAPmacAddress().c_str());
  39.   }else{  //开启热点失败
  40.     Serial.println("WiFiAP Failed");
  41.     delay(1000);
  42.     Serial.println("restart now...");
  43.     ESP.restart();  //重启复位esp32
  44.   }
  45. }
  46.  
  47. //初始化DNS服务器
  48. void initDNS(){
  49.   //判断将所有地址映射到esp32的ip上是否成功
  50.   if(dnsServer.start(DNS_PORT, "*", apIP)){
  51.     Serial.println("start dnsserver success.");
  52.   }else{
  53.     Serial.println("start dnsserver failed.");
  54.   }
  55. }
  56.  
  57. //初始化WebServer
  58. void initWebServer(){
  59.   //给设备设定域名esp32,完整的域名是esp32.local
  60.   if(MDNS.begin("esp32")){
  61.     Serial.println("MDNS responder started");
  62.   }
  63.  //必须添加第二个参数HTTP_GET,以下面这种格式去写,否则无法强制门户
  64.   server.on("/", HTTP_GET, handleRoot);                      //  当浏览器请求服务器根目录(网站首页)时调用自定义函数handleRoot处理,设置主页回调函数,必须添加第二个参数HTTP_GET,否则无法强制门户
  65.   server.on("/configwifi", HTTP_POST, handleConfigWifi);     //  当浏览器请求服务器/configwifi(表单字段)目录时调用自定义函数handleConfigWifi处理
  66.   server.onNotFound(handleNotFound);                         //当浏览器请求的网络资源无法在服务器找到时调用自定义函数handleNotFound处理
  67.   //Tells the server to begin listening for incoming connections.Returns None
  68.   server.begin();                                           //启动TCP SERVER
  69. //server.setNoDelay(true);                                  //关闭延时发送
  70.   Serial.println("WebServer started!");
  71. }
  72.  
  73. //扫描WiFi
  74. bool scanWiFi(){
  75.     Serial.println("scan start");
  76.   // 扫描附近WiFi
  77.    int n = WiFi.scanNetworks();//太多了就要五个
  78.    
  79.   Serial.println("scan done");
  80.   if (n == 0) {
  81.     Serial.println("no networks found");
  82.     scanNetworksID = "no networks found";
  83.     return false;
  84.   }else{
  85.     Serial.print(n);
  86.     Serial.println(" networks found");
  87.     for (int i = 0; i < n; ++i) {
  88.       // Print SSID and RSSI for each network found
  89.       Serial.print(i + 1);
  90.       Serial.print(": ");
  91.       Serial.print(WiFi.SSID(i));
  92.       Serial.print(" (");
  93.       Serial.print(WiFi.RSSI(i));
  94.       Serial.print(")");
  95.       Serial.println((WiFi.encryptionType(i) == WIFI_AUTH_OPEN) ? " " : "*");
  96.       scanNetworksID += "<P>" + WiFi.SSID(i) + "</P>";
  97.       delay(10);
  98.     }
  99.     return true;
  100.   }
  101. }
  102.  
  103. void connectToWiFi(int timeOut_s){
  104.       Serial.println("进入connectToWiFi()函数");
  105.       //设置为STA模式并连接WIFI
  106.       WiFi.mode(WIFI_STA);
  107.       WiFi.setAutoConnect(true);//设置自动连接
  108.       //用字符串成员函数c_str()生成一个const char*指针,指向以空字符终止的数组,即获取该字符串的指针。
  109.       if(wifi_ssid !=""){
  110.           Serial.println("用web配置信息连接.");
  111.          
  112.           WiFi.begin(wifi_ssid.c_str(), wifi_pass.c_str());
  113.           wifi_ssid = "";
  114.           wifi_pass = "";
  115.         }else{
  116.            Serial.println("用nvs保存的信息连接.");
  117.            WiFi.begin();//连接上一次连接成功的wifi
  118.         }
  119.       //WiFi.begin(wifi_ssid.c_str(), wifi_pass.c_str());
  120.       int Connect_time = 0; //用于连接计时,如果长时间连接不成功,复位设备
  121.       while (WiFi.status() != WL_CONNECTED) {  //等待WIFI连接成功
  122.         Serial.print(".");
  123.         digitalWrite(LED,!digitalRead(LED));
  124.         delay(500);
  125.         Connect_time ++;
  126.         if (Connect_time > 2*timeOut_s) {  //长时间连接不上,重新进入配网页面
  127.           digitalWrite(LED,LOW);
  128.           Serial.println("");
  129.           Serial.println("WIFI autoconnect fail, start AP for webconfig now...");
  130.           wifiConfig();   //转到网页端手动配置wifi
  131.           return;         //跳出 防止无限初始化
  132.           //break;        //跳出 防止无限初始化
  133.         }
  134.       }
  135.       if(WiFi.status() == WL_CONNECTED){
  136.           Serial.println("WIFI connect Success");
  137.           Serial.printf("SSID:%s", WiFi.SSID().c_str());
  138.           Serial.printf(", PSW:%s\r\n", WiFi.psk().c_str());
  139.           Serial.print("LocalIP:");
  140.           Serial.print(WiFi.localIP());
  141.           Serial.print(" ,GateIP:");
  142.           Serial.println(WiFi.gatewayIP());
  143.           Serial.print("WIFI status is:");
  144.           Serial.print(WiFi.status());
  145.           digitalWrite(LED,HIGH);      
  146.           server.stop();
  147.       }
  148. }
  149.  
  150. //用于配置WiFi
  151. void wifiConfig(){
  152.   initSoftAP();
  153.   initDNS();
  154.   initWebServer();
  155.   scanWiFi();
  156. }
  157.  
  158. //处理网站根目录“/”(首页)的访问请求,将显示配置wifi的HTML页面
  159. void handleRoot(){
  160.   if (server.hasArg("selectSSID")){
  161.       server.send(200, "text/html", ROOT_HTML + scanNetworksID + "</body></html>");
  162.     }else{
  163.       server.send(200, "text/html", ROOT_HTML + scanNetworksID + "</body></html>");
  164.     }    
  165. }
  166.  //提交数据后,返回给客户端信息函数
  167. void handleConfigWifi(){
  168.       //返回http状态
  169.       //server.send(200, "text/html", SUCCESS_HTML);
  170.       if (server.hasArg("ssid")) {//判断是否有账号参数
  171.         Serial.print("got ssid:");
  172.         wifi_ssid = server.arg("ssid");      //获取html表单输入框name名为"ssid"的内容
  173.         // strcpy(sta_ssid, server.arg("ssid").c_str());//将账号参数拷贝到sta_ssid中
  174.         Serial.println(wifi_ssid);
  175.       }else{//没有参数
  176.         Serial.println("error, not found ssid");
  177.         server.send(200, "text/html", "<meta charset='UTF-8'>error, not found ssid");//返回错误页面
  178.         return;
  179.       }
  180.       //密码与账号同理
  181.       if (server.hasArg("pass")) {
  182.         Serial.print("got password:");
  183.         wifi_pass = server.arg("pass");       //获取html表单输入框name名为"pwd"的内容
  184.         //strcpy(sta_pass, server.arg("pass").c_str());
  185.         Serial.println(wifi_pass);
  186.       }else{
  187.         Serial.println("error, not found password");
  188.         server.send(200, "text/html", "<meta charset='UTF-8'>error, not found password");
  189.         return;
  190.       }
  191.       server.send(200, "text/html", "<meta charset='UTF-8'>SSID:"+wifi_ssid+"<br />password:"+wifi_pass+"<br />已取得WiFi信息,正在尝试连接,请手动关闭此页面。");//返回保存成功页面      
  192.       delay(2000);    
  193.       WiFi.softAPdisconnect(true);     //参数设置为true,设备将直接关闭接入点模式,即关闭设备所建立的WiFi网络。
  194.       server.close();                  //关闭web服务      
  195.       WiFi.softAPdisconnect();         //在不输入参数的情况下调用该函数,将关闭接入点模式,并将当前配置的AP热点网络名和密码设置为空值.    
  196.       Serial.println("WiFi Connect SSID:" + wifi_ssid + "  PASS:" + wifi_pass);  
  197.       if(WiFi.status() != WL_CONNECTED){
  198.         Serial.println("开始调用连接函数connectToWiFi()..");
  199.         connectToWiFi(connectTimeOut_s);//进入配网阶段
  200.       }else{
  201.         Serial.println("提交的配置信息自动连接成功..");
  202.       }    
  203. }
  204.  
  205. // 设置处理404情况的函数'handleNotFound'
  206. void handleNotFound(){            // 当浏览器请求的网络资源无法在服务器找到时通过此自定义函数处理
  207.      handleRoot();                 //访问不存在目录则返回配置页面
  208. //   server.send(404, "text/plain", "404: Not found");  
  209. }
  210.  
  211. //LED闪烁,led为脚号,n为次数,t为时间间隔ms
  212. void blinkLED(int led,int n,int t){
  213.   for(int i=0;i<2*n;i++){
  214.      digitalWrite(led,!digitalRead(led));
  215.      delay(t);
  216.    }  
  217.  }
  218.  
  219. //删除保存的wifi信息,并使LED闪烁5次
  220. void restoreWiFi(){
  221.        delay(500);
  222.        esp_wifi_restore();  //删除保存的wifi信息
  223.        Serial.println("连接信息已清空,准备重启设备..");
  224.        delay(10);          
  225.        blinkLED(LED,5,500); //LED闪烁5次
  226.        digitalWrite(LED,LOW);
  227.   }
  228.  
  229. void checkConnect(bool reConnect){
  230.     if(WiFi.status() != WL_CONNECTED){
  231.       //  Serial.println("WIFI未连接.");
  232.       //  Serial.println(WiFi.status());
  233.         if(digitalRead(LED) != LOW){
  234.           digitalWrite(LED,LOW);
  235.         }    
  236.         if(reConnect == true && WiFi.getMode() != WIFI_AP && WiFi.getMode() != WIFI_AP_STA ){
  237.             Serial.println("WIFI未连接.");
  238.             Serial.println("WiFi Mode:");
  239.             Serial.println(WiFi.getMode());
  240.             Serial.println("正在连接WiFi...");
  241.             connectToWiFi(connectTimeOut_s);
  242.         }  
  243.     }else if(digitalRead(LED) != HIGH){
  244.         digitalWrite(LED,HIGH);
  245.     }
  246.   }
  247.  
  248. void setup() {
  249.   pinMode(LED,OUTPUT);                  //配置LED口为输出口
  250.   digitalWrite(LED,LOW);                //初始灯灭
  251.   pinMode(resetPin, INPUT_PULLUP);      //按键上拉输入模式(默认高电平输入,按下时下拉接到低电平)
  252.   Serial.begin(baudRate);
  253.   WiFi.hostname(HOST_NAME);             //设置设备名
  254.  
  255.   connectToWiFi(connectTimeOut_s);
  256. }
  257.  
  258. void loop() {
  259.       //长按5秒(P0)清除网络配置信息
  260.     if(!digitalRead(resetPin)){
  261.         delay(5000);
  262.         if(!digitalRead(resetPin)){  
  263.            Serial.println("\n按键已长按5秒,正在清空网络连保存接信息.");  
  264.            restoreWiFi();    //删除保存的wifi信息
  265.            ESP.restart();    //重启复位esp32
  266.            Serial.println("已重启设备.");
  267.         }      
  268.      }
  269.  
  270.     dnsServer.processNextRequest();   //检查客户端DNS请求
  271.     server.handleClient();            //检查客户端(浏览器)http请求
  272.     checkConnect(true);               //检测网络连接状态,参数true表示如果断开重新连接
  273.    
  274.     delay(30);
  275. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/471211
推荐阅读
相关标签
  

闽ICP备14008679号