Unverified Commit a8b46af9 authored by Kit Klein's avatar Kit Klein Committed by GitHub
Browse files

Correct wifi auth types for esp32 (#3047)

Correcting the AP config auth types.  The ones defined in the current documentation don't seem to exist.
parent 1e177194
...@@ -445,7 +445,7 @@ function can be used. ...@@ -445,7 +445,7 @@ function can be used.
- `cfg` table to hold configuration: - `cfg` table to hold configuration:
- `ssid` SSID chars 1-32 - `ssid` SSID chars 1-32
- `pwd` password chars 8-64 - `pwd` password chars 8-64
- `auth` authentication method, one of `wifi.OPEN`, `wifi.WPA_PSK`, `wifi.WPA2_PSK` (default), `wifi.WPA_WPA2_PSK` - `auth` authentication method, one of `wifi.AUTH_OPEN`, `wifi.AUTH_WPA_PSK`, `wifi.AUTH_WPA2_PSK` (default), `wifi.AUTH_WPA_WPA2_PSK`
- `channel` channel number 1-14 default = 11 - `channel` channel number 1-14 default = 11
- `hidden` false = not hidden, true = hidden, default = false - `hidden` false = not hidden, true = hidden, default = false
- `max` maximum number of connections 1-4 default=4 - `max` maximum number of connections 1-4 default=4
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment