Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
magnuselden authored and magnuselden committed Dec 7, 2023
2 parents 88b0079 + ea86c66 commit a6b76c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ async def async_cycle_waterboost(timeout: int, async_update_system: callable, hu
break
await asyncio.sleep(5)
await async_update_system(operation=HvacOperations.WaterBoost, set_val=0)
await asyncio.sleep(180)
await async_update_system(operation=HvacOperations.WaterBoost, set_val=0)
hub.observer.broadcast("water boost done")
return True

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@
HvacPresets.Normal: {
Demand.ErrorDemand: 0,
Demand.NoDemand: 0,
Demand.LowDemand: 26,
Demand.MediumDemand: 34,
Demand.HighDemand: 46
Demand.LowDemand: 20,
Demand.MediumDemand: 26,
Demand.HighDemand: 32
},
HvacPresets.Eco: {
Demand.ErrorDemand: 0,
Demand.NoDemand: 0,
Demand.LowDemand: 26,
Demand.MediumDemand: 34,
Demand.HighDemand: 46
Demand.LowDemand: 20,
Demand.MediumDemand: 24,
Demand.HighDemand: 28
},
HvacPresets.Away: {
Demand.ErrorDemand: 0,
Demand.NoDemand: 0,
Demand.LowDemand: 0,
Demand.MediumDemand: 26,
Demand.HighDemand: 26
Demand.MediumDemand: 20,
Demand.HighDemand: 20
}
}

Expand Down

0 comments on commit a6b76c1

Please sign in to comment.