Files
system-control/firmware/main/Kconfig.projbuild
2025-09-13 20:59:08 +02:00

45 lines
1.3 KiB
Plaintext

menu "System Control"
menu "WiFi Configuration"
config WIFI_ENABLED
bool "Enable WiFi"
default y
help
Enable or disable WiFi connectivity.
config WIFI_SSID
depends on WIFI_ENABLED
string "WiFi SSID"
default "YourSSID"
help
The SSID of the WiFi network to connect to.
config WIFI_PASSWORD
depends on WIFI_ENABLED
string "WiFi Password"
default "YourPassword"
help
The password of the WiFi network to connect to.
config WIFI_CONNECT_RETRIES
depends on WIFI_ENABLED
int "WiFi Connection Retry Attempts"
default 5
help
Number of times to retry connecting to the WiFi network before giving up.
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