mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
29 lines
685 B
Plaintext
29 lines
685 B
Plaintext
menu "Example Configuration"
|
|
|
|
config EXAMPLE_WIFI_SSID
|
|
string "Wi-Fi SSID"
|
|
default "eth2ap"
|
|
help
|
|
Set the SSID of Wi-Fi ap interface.
|
|
|
|
config EXAMPLE_WIFI_PASSWORD
|
|
string "Wi-Fi Password"
|
|
default "12345678"
|
|
help
|
|
Set the password of Wi-Fi ap interface.
|
|
|
|
config EXAMPLE_WIFI_CHANNEL
|
|
int "WiFi channel"
|
|
range 1 13
|
|
default 1
|
|
help
|
|
Set the channel of Wi-Fi ap.
|
|
|
|
config EXAMPLE_MAX_STA_CONN
|
|
int "Maximum STA connections"
|
|
default 4
|
|
help
|
|
Maximum number of the station that allowed to connect to current Wi-Fi hotspot.
|
|
|
|
endmenu
|