2 Commits

Author SHA256 Message Date
localhorst 10cf9dd778 Reenable WiFi AP lock (#32)
Reviewed-on: #32
Co-authored-by: localhorst <localhorst@mosad.xyz>
Co-committed-by: localhorst <localhorst@mosad.xyz>
2026-05-10 13:06:41 +02:00
localhorst a7d577a948 Error handling on system boot (#30)
Implements #3

Reviewed-on: #30
Co-authored-by: localhorst <localhorst@mosad.xyz>
Co-committed-by: localhorst <localhorst@mosad.xyz>
2026-05-10 12:39:47 +02:00
+14
View File
@@ -36,6 +36,20 @@ menu "Smart Oil Heating Control System"
default "192.168.0.1"
help
NTP server address for time synchronization.
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
menu "GPIO Configuration"