diff options
author | adzierzanowski <a.dzierzanowski1@gmail.com> | 2020-01-16 11:16:43 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-01-22 16:43:25 +1100 |
commit | a55c17dc69ac43cd41e7efe603e20298a5513b06 (patch) | |
tree | b7437855b8b87680748b95c9ac1632fa0e82fd9a /docs/esp32 | |
parent | 59746ac14a7e639b8abd50fe626549e115c19c68 (diff) | |
download | micropython-a55c17dc69ac43cd41e7efe603e20298a5513b06.tar.gz micropython-a55c17dc69ac43cd41e7efe603e20298a5513b06.zip |
esp32/modnetwork: Add max_clients kw-arg to WLAN.config for AP setting.
This allows the user to configure the maximum number of clients that are
connected to the access point. Resolves #5125.
Diffstat (limited to 'docs/esp32')
-rw-r--r-- | docs/esp32/quickref.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst index c58f4aa760..8861ca4ac8 100644 --- a/docs/esp32/quickref.rst +++ b/docs/esp32/quickref.rst @@ -82,6 +82,7 @@ The :mod:`network` module:: ap = network.WLAN(network.AP_IF) # create access-point interface ap.config(essid='ESP-AP') # set the ESSID of the access point + ap.config(max_clients=10) # set how many clients can connect to the network ap.active(True) # activate the interface A useful function for connecting to your local WiFi network is:: |