在LUA esp8266中获取网关地址

我需要ESP8266的网关地址。我已经得到了ESP8266的IP地址、掩码和网关地址,但我只需要网关地址。

我应该如何独自获得网关地址?

我在nodeMCU固件中使用了wifi.sta.getip()函数。

点赞
用户131929
用户131929

相关文档和示例请访问http://nodemcu.readthedocs.org/en/dev/en/modules/wifi/#wifistagetip

ip、netmask、gateway = wifi.sta.getip()
print(gateway)
2016-03-02 14:55:22