diff --git a/firmware/esp32/overland-controller/app_config.cpp b/firmware/esp32/overland-controller/app_config.cpp index 4f36755..4f59749 100644 --- a/firmware/esp32/overland-controller/app_config.cpp +++ b/firmware/esp32/overland-controller/app_config.cpp @@ -158,6 +158,8 @@ void saveConfig() { preferences.putBool((prefix + "weather").c_str(), appConfig.tempSensors[i].weather); preferences.putString((prefix + "group").c_str(), appConfig.tempSensors[i].group); preferences.putInt((prefix + "priority").c_str(), appConfig.tempSensors[i].priority); + preferences.putBool((prefix + "high_alert_enabled").c_str(), appConfig.tempSensors[i].highAlertEnabled); + preferences.putFloat((prefix + "high_alert_f").c_str(), appConfig.tempSensors[i].highAlertF); } preferences.putBool("bms_enabled", appConfig.bms.enabled);