Haiku Record running time of Thermostats

heffneil

Active Member
I have the RC-2000 thermostats and they record their run time by day and week. I would like to record this information centrally. Would this be possible with HH? Thanks,

Neil
 
It is possible. But not by retrieving the values from the thermostat as those are not exposed. You would have to record them using HaikuHelper. This is where the coming database support will be very useful.

Generally it can be done in:
Code:
function onThermostatStatusChange(thermostat) {
 
}

That callback will be called whenever the thermostat's status changes, at that point you can check the status and log it every time it changes (likely into the coming HTML5 database support).
 
Back
Top