Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6351825

Browse files
committedApr 1, 2021
typo
1 parent a6d0fc3 commit 6351825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎doc/esp8266wifi/soft-access-point-class.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The first parameter of this function is required, remaining four are optional.
5151
Meaning of all parameters is as follows:
5252

5353
- ``ssid`` - character string containing network SSID (max. 32 characters)
54-
- ``psk`` - optional character string with a pre-shared key. For WPA2-PSK network it hould be minimum 8 characters long and not longer than 64 characters. If not specified, the access point will be open for anybody to connect.
54+
- ``psk`` - optional character string with a pre-shared key. For WPA2-PSK network it should be minimum 8 characters long and not longer than 64 characters. If not specified, the access point will be open for anybody to connect.
5555
- ``channel`` - optional parameter to set Wi-Fi channel, from 1 to 13. Default channel = 1.
5656
- ``hidden`` - optional parameter, if set to ``true`` will hide SSID.
5757
- ``max_connection`` - optional parameter to set max simultaneous connected stations, `from 0 to 8 <https://bbs.espressif.com/viewtopic.php?f=46&t=481&p=1832&hilit=max_connection#p1832>`__. Defaults to 4. Once the max number has been reached, any other station that wants to connect will be forced to wait until an already connected station disconnects.
@@ -152,7 +152,7 @@ Disconnect stations from the network established by the soft-AP.
152152
153153
WiFi.softAPdisconnect(wifioff)
154154
155-
Function will set currently configured SSID and psk of the soft-AP to null values. The parameter ``wifioff`` is optional. If set to ``true`` it will switch the soft-AP mode off.
155+
Function will set currently configured SSID and pre-shared key of the soft-AP to null values. The parameter ``wifioff`` is optional. If set to ``true`` it will switch the soft-AP mode off.
156156

157157
Function will return ``true`` if operation was successful or ``false`` if otherwise.
158158

0 commit comments

Comments
 (0)
Please sign in to comment.