pool: new day fix
This commit is contained in:
parent
2b6652411a
commit
f3c444d0de
8
pool.js
8
pool.js
@ -198,7 +198,6 @@ function update_temp(temp) {
|
|||||||
|
|
||||||
print("[POOL] update_temp - max:", status.temp_max, "today:", status.temp_today, "yesterday:", status.temp_yesterday);
|
print("[POOL] update_temp - max:", status.temp_max, "today:", status.temp_today, "yesterday:", status.temp_yesterday);
|
||||||
|
|
||||||
if (status.temp_max !== status.update_temp_max_last) {
|
|
||||||
Shelly.call (
|
Shelly.call (
|
||||||
"Sys.GetStatus",
|
"Sys.GetStatus",
|
||||||
{},
|
{},
|
||||||
@ -214,7 +213,7 @@ function update_temp(temp) {
|
|||||||
|
|
||||||
status.update_time = t;
|
status.update_time = t;
|
||||||
|
|
||||||
if (status.temp_max !== null) {
|
if ((status.temp_max !== null) && (status.temp_max !== status.update_temp_max_last)) {
|
||||||
if ((t - status.update_time_last) > 0.15) { // 9 minutes
|
if ((t - status.update_time_last) > 0.15) { // 9 minutes
|
||||||
update_pump(status.temp, status.temp_max, t);
|
update_pump(status.temp, status.temp_max, t);
|
||||||
status.update_time_last = t;
|
status.update_time_last = t;
|
||||||
@ -225,12 +224,11 @@ function update_temp(temp) {
|
|||||||
print("[POOL] to much update_pump, skipped", status.tick_pump_skip);
|
print("[POOL] to much update_pump, skipped", status.tick_pump_skip);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
print("[POOL] no temp change, skip update_pump");
|
print("[POOL] no temp change, skip update_pump");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
status.lock_update = false;
|
status.lock_update = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user