Disable heating in summer #22

Merged
localhorst merged 20 commits from feature/summer-mode into main 2025-10-24 17:38:20 +02:00
Showing only changes of commit 33c7bc4007 - Show all commits
+2 -2
View File
@@ -102,11 +102,11 @@ void taskControl(void *pvParameters)
sControlTemperatureEntry currentControlEntry = getControlCurrentTemperatureEntry();
if (getOutdoorTemperature().average60s.fValue >= SUMMER_MODE_TEMPERATURE_THRESHOLD_HIGH)
if (getOutdoorTemperature().fDampedValue >= SUMMER_MODE_TEMPERATURE_THRESHOLD_HIGH)
{
bSummerMode = true;
}
else if (getOutdoorTemperature().average60s.fValue <= SUMMER_MODE_TEMPERATURE_THRESHOLD_LOW)
else if (getOutdoorTemperature().fDampedValue <= SUMMER_MODE_TEMPERATURE_THRESHOLD_LOW)
{
bSummerMode = false;
}