1menu "Example Configuration"
2
3    config ESP_WIFI_SSID
4        string "WiFi SSID"
5        default "myssid"
6        help
7            SSID (network name) for the example to connect to.
8
9    config ESP_WIFI_PASSWORD
10        string "WiFi Password"
11        default "mypassword"
12        help
13            WiFi password (WPA or WPA2) for the example to use.
14    config ESP_WIFI_CHANNEL
15        int "WiFi Channel"
16        range 1 13
17        default 1
18        help
19            WiFi channel (network channel) for the example to use.
20
21    config ESP_MAX_STA_CONN
22        int "Maximal STA connections"
23        default 4
24        help
25            Max number of the STA connects to AP.
26endmenu
27