Skip to content

Commit

Permalink
If a zone temperature is unknown (hour glass on Evotouch or -- on pho…
Browse files Browse the repository at this point in the history
…ne app for example after changing Evotouch batteries) the Honeywell servers report 128.0 for the room temp. Set a maximum limit of 50 to prevent a huge spike on the graph that crushes the rest of the graph due to autoscaling. Also add limits for setpoint which can only range from 5 to 35.
  • Loading branch information
DBMandrake committed Dec 10, 2015
1 parent a9c6f97 commit 5ab281d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions evohome_
Expand Up @@ -56,11 +56,14 @@ class EvohomeMuninPlugin(MuninPlugin):
label="Temperature",
info="Temperature in Room",
type="GAUGE",
max="50"
)),
('setpoint', dict(
label="Temperature SP",
info="Temperature Setpoint in Room",
type="GAUGE",
max="35",
min="5"
)),
('outside_temperature', dict(
label="Outside Temperature",
Expand Down

0 comments on commit 5ab281d

Please sign in to comment.