diff options
author | Joar Wandborg <joar@wandborg.se> | 2017-10-25 14:18:11 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-10-27 11:04:52 +0300 |
commit | b9923262db4600b3618aa143bb4bcc93bf299814 (patch) | |
tree | e77127c436816427b462bef03ae6f7ee6c343548 | |
parent | c64eb4f8ce20b025bb5762d9ce6e093d15a19dce (diff) |
docs/library/network: Add dhcp_hostname parameter
I have not actually tested this, going by information available in https://forum.micropython.org/viewtopic.php?t=2584
-rw-r--r-- | docs/library/network.rst | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/docs/library/network.rst b/docs/library/network.rst index 3b0aa535e..99a7c242c 100644 --- a/docs/library/network.rst +++ b/docs/library/network.rst @@ -422,16 +422,17 @@ parameter should be `id`. Following are commonly supported parameters (availability of a specific parameter depends on network technology type, driver, and `MicroPython port`). - ========= =========== - Parameter Description - ========= =========== - mac MAC address (bytes) - essid WiFi access point name (string) - channel WiFi channel (integer) - hidden Whether ESSID is hidden (boolean) - authmode Authentication mode supported (enumeration, see module constants) - password Access password (string) - ========= =========== + ============= =========== + Parameter Description + ============= =========== + mac MAC address (bytes) + essid WiFi access point name (string) + channel WiFi channel (integer) + hidden Whether ESSID is hidden (boolean) + authmode Authentication mode supported (enumeration, see module constants) + password Access password (string) + dhcp_hostname The DHCP hostname to use + ============= =========== |