1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00

Fixed "System off" sometimes showing between stage transitions

This commit is contained in:
Jon Ziebell 2024-09-02 05:38:07 -04:00
parent 0b5f1e13b8
commit 333c2e1ae7

View File

@ -388,10 +388,10 @@ beestat.runtime_thermostat.get_data = function(thermostat_id, range, key) {
if ( if (
durations.off_heat_cool.seconds === 0 && durations.off_heat_cool.seconds === 0 &&
( (
runtime_thermostat.compressor_1 < 300 && (runtime_thermostat.compressor_1 +
runtime_thermostat.compressor_2 < 300 && runtime_thermostat.compressor_2) < 300 &&
runtime_thermostat.auxiliary_heat_1 < 300 && (runtime_thermostat.auxiliary_heat_1 +
runtime_thermostat.auxiliary_heat_2 < 300 runtime_thermostat.auxiliary_heat_2) < 300
) )
) { ) {
// If currently running and it stops. // If currently running and it stops.