如何使 ESP 32 wifi模块连接到静态IP地址? Click on this link to see the code which i referred
答案 0 :(得分:1)
IP
模式中的默认AP
为192.168.4.1
在static IP
中为Arduino IDE
设置esp32
:
定义staticIP地址
IPAddress apIP(42, 42, 42, 42);
设置自定义IP地址
WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));