2020-02-03 09:02:25 +01:00
|
|
|
# put here your custom config value
|
2020-04-21 02:58:18 +02:00
|
|
|
menu "WIFI AP Configuration"
|
2020-02-03 09:02:25 +01:00
|
|
|
config ESP_WIFI_SSID
|
|
|
|
string "WiFi SSID"
|
|
|
|
default "myssid"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
|
|
|
|
|
|
|
config ESP_WIFI_PASSWORD
|
|
|
|
string "WiFi Password"
|
|
|
|
default "mypassword"
|
|
|
|
help
|
|
|
|
WiFi password (WPA or WPA2) for the example to use.
|
2020-04-21 02:58:18 +02:00
|
|
|
|
|
|
|
config ESP_WIFI_RETRIES
|
|
|
|
int "WiFi connection retries"
|
|
|
|
default 5
|
2020-02-03 09:02:25 +01:00
|
|
|
endmenu
|