我正在使用Esptouch在Esp8266上进行智能配置WiFi。我确实将IP更改为静态IP,但是没有连接。那么,有人有什么想法可以帮助我吗?抱歉我的英语不好
Either
答案 0 :(得分:-1)
当ESP处于AP_STA(或AP)模式时,是否要更改本地IP。
如果是,请将其添加到您的代码中:
IPAddress local_IP(192, 168, 10,11);
IPAddress gateway(192, 168, 4, 9);
IPAddress subnet(255, 255, 255, 0);
WiFi.softAPConfig(local_IP, gateway, subnet);
WiFi.softAP(ssid, password);`//change the SSID and password
您可以更改值,local_IP是执行WiFi.localIP()时得到的。