我正在使用这样的草图:
WiFi.config(IP, Gate, Subnet);
WiFi.begin (ssid, pass);
//-- somewhere below I want to drop the static IP configuration and obtain IP with DHCP.
WiFi.disconnect ();
WiFi.begin (ssid, pass). //ssid and pass are the same as above.
但是IP没有改变。好像没有重新连接WiFi。如何在不重新启动的情况下删除静态 IP 配置?我正在使用带有 esp8266 -12e 的 nodemcu v3。