大佬们,有没有8266创建服务器,又不用加入局域网的例子-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 4633|回复: 2

大佬们,有没有8266创建服务器,又不用加入局域网的例子

[复制链接]
发表于 2018-3-11 07:18 来自手机 | 显示全部楼层 |阅读模式
大佬们,有没有8266创建服务器,又不用加入局域网的例子,8266创建AP,手机直接连接控制IO口
发表于 2018-3-12 21:06 | 显示全部楼层
void SX_WifiClass::_setup_server() {
        //byte mac[6];
        WiFi.mode(WIFI_AP_STA); //WIFI_STA
        WiFi.softAPConfig(IPAddress(192, 168, 0, 1), IPAddress(192, 168, 0, 1), IPAddress(255, 255, 255, 0));
       
        /*String ssid = "";
        for (int i = 0; i < 6; i++) {
                ssid += String(mac, HEX);
        }
        Serial.println("SSID: " + ssid);
        Serial.println("ASS: " + pass);*/
        WiFi.softAP("DHTMonitor http://192.168.0.1:8080");
        /* You can remove the password parameter if you want the AP to be open. */
        //WiFi.softAP(ssid.c_str(), pass.c_str());

        _server.on("/", HTTP_GET, _handleRootGet);
        _server.on("/", HTTP_POST, _handleRootPost);  // if you add this subdirectory to your webserver call, you get text below
        _server.begin();
        Serial.println("HTTP server started.");
}
给你一个部分的代码。你参考一下上网自己找吧!很容易的!
 楼主| 发表于 2018-4-2 22:31 来自手机 | 显示全部楼层
我也说一句支持一下
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-30 23:57 , Processed in 0.089586 second(s), 15 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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