Skip to content
Snippets Groups Projects
Commit 06deec9d authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

docs/network: esp8266: Add wlan.ifconfig() method.

parent 50ef851b
No related branches found
No related tags found
No related merge requests found
......@@ -335,6 +335,14 @@ For example::
point and has a valid IP address. In AP mode returns ``True`` when a
station is connected. Returns ``False`` otherwise.
.. method:: wlan.ifconfig([(ip, subnet, gateway, dns)])
Get/set IP-level network interface paremeters: IP address, subnet mask,
gateway and DNS server. When called with no arguments, this method returns
a 4-tuple with the above information. To set the above values, pass a
4-tuple with the required information. For example::
nic.ifconfig(('192.168.0.4', '255.255.255.0', '192.168.0.1', '8.8.8.8'))
.. only:: port_wipy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment