esp32-wifi-manager/Kconfig

34 lines
765 B
Plaintext
Raw Normal View History

2018-09-02 20:10:41 -04:00
menuconfig WIFI_MANAGER_ENABLED
bool "WiFi Manager"
default y
help
Select this option to enable WIFI_MANAGER driver and show the submodule with configuration
2018-09-02 20:10:41 -04:00
if WIFI_MANAGER_ENABLED
2018-09-22 01:12:17 -04:00
config WIFI_MANAGER_CONNECTION_DELAY
int "# of milliseconds to wait between connection attempts"
default 1000
config WIFI_MANAGER_TEST_AP
string "ESSID for test AP"
config WIFI_MANAGER_TEST_PWD
string "password for test AP"
2018-09-02 20:10:41 -04:00
2018-09-22 00:30:58 -04:00
config WIFI_MANAGER_TEST_AP1
string "ESSID for test AP"
config WIFI_MANAGER_TEST_PWD1
string "password for test AP"
config WIFI_MANAGER_TEST_AP2
string "ESSID for test AP"
config WIFI_MANAGER_TEST_PWD2
string "password for test AP"
2018-09-02 20:10:41 -04:00
config WIFI_MANAGER_MAX_AP
int "Maximum number of APs to store in flash"
default 8
endif