diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-03 01:04:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-03 01:04:40 +0300 |
commit | a6cf45864f985b3f8b83020da48f04f479ca4433 (patch) | |
tree | 51548a2aa7ddbb60a81c5fd253c188d4f88b1fdc /docs/library/network.rst | |
parent | 35e63f00073724451b7755310b42c4cecf3977e0 (diff) | |
download | micropython-a6cf45864f985b3f8b83020da48f04f479ca4433.tar.gz micropython-a6cf45864f985b3f8b83020da48f04f479ca4433.zip |
docs/network: esp8266: MAC address is set via .config() method.
Diffstat (limited to 'docs/library/network.rst')
-rw-r--r-- | docs/library/network.rst | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/docs/library/network.rst b/docs/library/network.rst index 1c8d73b5f5..fe4eaa7525 100644 --- a/docs/library/network.rst +++ b/docs/library/network.rst @@ -283,14 +283,6 @@ For example:: Disconnect from the currently connected wireless network. - .. method:: wlan.mac([address]) - - Get or set the network interface MAC address. - - If the ``address`` parameter is provided, sets the address to its - value, which should be bytes object of length 6. If the function - is called wihout parameters, returns the current address. - .. method:: wlan.scan() Scan for the available wireless networks. @@ -366,6 +358,7 @@ For example:: ========= =========== Parameter Description ========= =========== + mac MAC address (bytes) essid WiFi access point name (string) channel WiFi channel (integer) hidden Whether ESSID is hidden (boolean) |