Is there any way to pull from the API whether a given thermostat’s system is running at the moment? I’ve been working on some graphing of my SmartThings devices and just got one of those fancy Energy Meters. I’d like to be able to overlay on my energy usage graph the times when the HVAC was active in one or both zones and which mode it’s in (cool, heat, emergency heat).
I found these two values:
Control.Model.set(Control.Model.Property.statusCool, 0);
Control.Model.set(Control.Model.Property.statusHeat, 0);
…but it seems like whenever my system kicks on, they BOTH get set to 1. Anyone know what these two actually mean?