1menu "Example Configuration" 2 3 config ESP_WIFI_SSID 4 string "SoftAP SSID" 5 default "esp32_ssid" 6 help 7 SSID (network name) to set up the softAP with. 8 9 config ESP_WIFI_PASSWORD 10 string "SoftAP Password" 11 default "esp32_pwd" 12 help 13 WiFi password (WPA or WPA2) for the example to use for the softAP. 14 15 config ESP_MAX_STA_CONN 16 int "Maximal STA connections" 17 default 4 18 help 19 Max number of the STA connects to AP. 20endmenu 21