-1
如何使ESP 32 wifi模塊連接到靜態IP地址? Click on this link to see the code which i referred靜態IP地址到ESP 32
如何使ESP 32 wifi模塊連接到靜態IP地址? Click on this link to see the code which i referred靜態IP地址到ESP 32
在AP
模式的默認IP
是192.168.4.1
要爲esp32
設置static IP
在Arduino IDE
:
定義staticIP地址
IPAddress apIP(42, 42, 42, 42);
建立一個自定義的IP地址
WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));