Tado: Suppress a warning when thermostat is off

master
Michael Zanetti 2023-05-12 12:46:19 +02:00
parent 4acddd2219
commit b771933527
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ void IntegrationPluginTado::onZoneStateReceived(const QString &homeId, const QSt
thing->setStateValue(zonePowerStateTypeId, (state.heatingPowerPercentage > 0));
thing->setStateValue(zoneConnectedStateTypeId, state.connected);
thing->setStateValue(zoneTargetTemperatureStateTypeId, state.settingTemperature);
thing->setStateValue(zoneTargetTemperatureStateTypeId, qMax(5.0, state.settingTemperature));
thing->setStateValue(zoneTemperatureStateTypeId, state.temperature);
thing->setStateValue(zoneHumidityStateTypeId, state.humidity);
thing->setStateValue(zoneWindowOpenStateTypeId, state.windowOpen);