diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-26 01:07:50 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-26 01:09:11 +0300 |
commit | 650df97c063a7af47c2d70a2b0c1fe7da3da5a0e (patch) | |
tree | 17b1b79b6dd3115a18c0aa24efae9c30ae0c6526 /docs/library/network.rst | |
parent | ef2ffc0e4ec9aee2d773e051980d8149534a7347 (diff) | |
download | micropython-650df97c063a7af47c2d70a2b0c1fe7da3da5a0e.tar.gz micropython-650df97c063a7af47c2d70a2b0c1fe7da3da5a0e.zip |
docs/network: esp8266: scan(): Add note that bssid is bytes object.
Diffstat (limited to 'docs/library/network.rst')
-rw-r--r-- | docs/library/network.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/library/network.rst b/docs/library/network.rst index 49e7e53bf8..7c074941e7 100644 --- a/docs/library/network.rst +++ b/docs/library/network.rst @@ -300,6 +300,9 @@ For example:: (ssid, bssid, channel, RSSI, authmode, hidden) + `bssid` is hardware address of an access point, in binary form, returned as + bytes object. You can use ``ubinascii.hexlify()`` to convert it to ASCII form. + There are five values for authmode: * 0 -- open |