2017-03-27 09:52:46 +00:00
|
|
|
menu "Example Configuration"
|
2017-03-29 07:33:05 +00:00
|
|
|
|
|
|
|
config WIFI_SSID
|
2017-03-27 09:52:46 +00:00
|
|
|
string "WiFi SSID"
|
|
|
|
default "myssid"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
2017-03-29 07:33:05 +00:00
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
config WIFI_PASSWORD
|
|
|
|
string "WiFi Password"
|
|
|
|
default "mypassword"
|
|
|
|
help
|
|
|
|
WiFi password (WPA or WPA2) for the example to use.
|
|
|
|
|
2017-03-29 07:33:05 +00:00
|
|
|
choice POWER_SAVE_MODE
|
|
|
|
prompt "power save mode"
|
2017-10-10 04:33:47 +00:00
|
|
|
default POWER_SAVE_MODEM
|
2017-03-29 07:33:05 +00:00
|
|
|
help
|
|
|
|
Power save mode for the esp32 to use.
|
|
|
|
|
|
|
|
config POWER_SAVE_NONE
|
|
|
|
bool "none"
|
|
|
|
config POWER_SAVE_MODEM
|
|
|
|
bool "modem"
|
|
|
|
endchoice
|
|
|
|
|
2017-03-27 09:52:46 +00:00
|
|
|
endmenu
|