2018-03-12 22:44:49 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_WIFI_SSID
|
|
|
|
string "WiFi SSID"
|
|
|
|
default "myssid"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
2018-03-12 22:44:49 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_WIFI_PASSWORD
|
|
|
|
string "WiFi Password"
|
|
|
|
default "mypassword"
|
|
|
|
help
|
|
|
|
WiFi password (WPA or WPA2) for the example to use.
|
2020-04-17 05:31:46 -04:00
|
|
|
config ESP_WIFI_CHANNEL
|
|
|
|
int "WiFi Channel"
|
|
|
|
range 1 13
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
WiFi channel (network channel) for the example to use.
|
2019-01-25 11:10:53 -05:00
|
|
|
|
2019-05-09 10:43:06 -04:00
|
|
|
config ESP_MAX_STA_CONN
|
2019-01-25 11:10:53 -05:00
|
|
|
int "Maximal STA connections"
|
|
|
|
default 4
|
|
|
|
help
|
|
|
|
Max number of the STA connects to AP.
|
2018-03-12 22:44:49 -04:00
|
|
|
endmenu
|