Some checks failed
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Successful in 6m28s
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Successful in 6m15s
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Failing after 3m13s
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Failing after 3m27s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
109 lines
3.2 KiB
Plaintext
109 lines
3.2 KiB
Plaintext
menu "System Control"
|
|
menu "WiFi Configuration"
|
|
config WIFI_ENABLED
|
|
bool "Enable WiFi"
|
|
default y
|
|
help
|
|
Enable or disable WiFi connectivity.
|
|
|
|
config WIFI_NETWORK_COUNT
|
|
depends on WIFI_ENABLED
|
|
int "Number of WiFi Networks"
|
|
default 1
|
|
range 1 5
|
|
help
|
|
Number of WiFi networks to configure (1-5).
|
|
|
|
config WIFI_SSID_1
|
|
depends on WIFI_ENABLED
|
|
string "WiFi SSID 1"
|
|
default "YourSSID1"
|
|
help
|
|
The SSID of the first WiFi network.
|
|
|
|
config WIFI_PASSWORD_1
|
|
depends on WIFI_ENABLED
|
|
string "WiFi Password 1"
|
|
default "YourPassword1"
|
|
help
|
|
The password of the first WiFi network.
|
|
|
|
config WIFI_SSID_2
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 2
|
|
string "WiFi SSID 2"
|
|
default ""
|
|
help
|
|
The SSID of the second WiFi network.
|
|
|
|
config WIFI_PASSWORD_2
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 2
|
|
string "WiFi Password 2"
|
|
default ""
|
|
help
|
|
The password of the second WiFi network.
|
|
|
|
config WIFI_SSID_3
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 3
|
|
string "WiFi SSID 3"
|
|
default ""
|
|
help
|
|
The SSID of the third WiFi network.
|
|
|
|
config WIFI_PASSWORD_3
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 3
|
|
string "WiFi Password 3"
|
|
default ""
|
|
help
|
|
The password of the third WiFi network.
|
|
|
|
config WIFI_SSID_4
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 4
|
|
string "WiFi SSID 4"
|
|
default ""
|
|
help
|
|
The SSID of the fourth WiFi network.
|
|
|
|
config WIFI_PASSWORD_4
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 4
|
|
string "WiFi Password 4"
|
|
default ""
|
|
help
|
|
The password of the fourth WiFi network.
|
|
|
|
config WIFI_SSID_5
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 5
|
|
string "WiFi SSID 5"
|
|
default ""
|
|
help
|
|
The SSID of the fifth WiFi network.
|
|
|
|
config WIFI_PASSWORD_5
|
|
depends on WIFI_ENABLED && WIFI_NETWORK_COUNT >= 5
|
|
string "WiFi Password 5"
|
|
default ""
|
|
help
|
|
The password of the fifth WiFi network.
|
|
|
|
config WIFI_CONNECT_RETRIES
|
|
depends on WIFI_ENABLED
|
|
int "WiFi Connection Retry Attempts per Network"
|
|
default 3
|
|
help
|
|
Number of times to retry connecting to each WiFi network before trying the next one.
|
|
endmenu
|
|
|
|
menu "Display Settings"
|
|
config DISPLAY_SDA_PIN
|
|
int "I2C SDA Pin"
|
|
default 35
|
|
help
|
|
GPIO pin number for the SDA line of the display.
|
|
|
|
config DISPLAY_SCL_PIN
|
|
int "I2C SCL Pin"
|
|
default 36
|
|
help
|
|
GPIO pin number for the SCL line of the display.
|
|
endmenu
|
|
endmenu
|