使用 ESP8266 在 Arduino 中获取网关地址
Get gateway address in Arduino using ESP8266
我需要 ESP8266 的默认网关 IP 地址。我知道在 LUA 中您可以使用此代码检索它:
ip, netmask, gateway = wifi.sta.getip()
print(gateway)
但是如何使用Arduino/C++?
使用 WiFi.gatewayIP().toString()
将其作为字符串获取。
我需要 ESP8266 的默认网关 IP 地址。我知道在 LUA 中您可以使用此代码检索它:
ip, netmask, gateway = wifi.sta.getip()
print(gateway)
但是如何使用Arduino/C++?
使用 WiFi.gatewayIP().toString()
将其作为字符串获取。