mirror of
https://github.com/beestat/app.git
synced 2025-06-04 22:27:27 -04:00
Fixed #280 - Sometimes ecobee reports auxHeat2 > auxHeat1
This commit is contained in:
parent
e3e87de7a1
commit
88108cf93f
@ -498,6 +498,15 @@ class runtime extends cora\api {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* See #280.
|
||||||
|
*/
|
||||||
|
if(
|
||||||
|
$columns['auxHeat2'] > $columns['auxHeat1']
|
||||||
|
) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Date and time are first two columns of the returned data. It is
|
// Date and time are first two columns of the returned data. It is
|
||||||
// returned in thermostat time, so convert it to UTC first.
|
// returned in thermostat time, so convert it to UTC first.
|
||||||
$timestamp = $this->get_utc_datetime(
|
$timestamp = $this->get_utc_datetime(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user