37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
menu "Smart Oil Heating Control System"
|
|
|
|
config SSID
|
|
string "SSID"
|
|
default "my WiFi SSID"
|
|
config WIFI_PASSWORD
|
|
string "WIFI_PASSWORD"
|
|
default "my WIFI Password"
|
|
config STATIC_IP_ADDR
|
|
string "Static IPv4 address"
|
|
default "192.168.0.42"
|
|
config STATIC_IP_NETMASK
|
|
string "Static IPv4 netmask"
|
|
default "255.255.0.0"
|
|
config STATIC_GATEWAY_IP_ADDR
|
|
string "Static IPv4 gateway address"
|
|
default "192.168.0.1"
|
|
config SNTP_SERVER_IP_ADDR
|
|
string "SNTP IPv4 server address"
|
|
default "192.168.0.1"
|
|
config ENV_WIFI_BSSID_LOCK
|
|
bool "Lock to specific Access Point (BSSID)"
|
|
default n
|
|
help
|
|
When enabled, the device will only connect to the access point
|
|
with the specified MAC address (BSSID). Useful when multiple APs
|
|
share the same SSID.
|
|
config ENV_WIFI_BSSID
|
|
string "Access Point MAC Address (BSSID)"
|
|
default "00:00:00:00:00:00"
|
|
depends on ENV_WIFI_BSSID_LOCK
|
|
help
|
|
MAC address of the access point to connect to.
|
|
Format: XX:XX:XX:XX:XX:XX (uppercase or lowercase)
|
|
|
|
endmenu
|