Hi All,
I am trying to write a trigger that will fire only if the temperature has dropped by 1 degree since the furnace started. This will start an action that "reboots" the furnace.
I have defined "hvac_heating" (0 = off, 1 = on) and "temperature" (float) items. I need something that does the logical equivalent of:
temperature.last(0) + 1 > temperature.last(hvac_heating.last(value=0).clock)
Any ideas how I can make a trigger that does this?
-G
I am trying to write a trigger that will fire only if the temperature has dropped by 1 degree since the furnace started. This will start an action that "reboots" the furnace.
I have defined "hvac_heating" (0 = off, 1 = on) and "temperature" (float) items. I need something that does the logical equivalent of:
temperature.last(0) + 1 > temperature.last(hvac_heating.last(value=0).clock)
Any ideas how I can make a trigger that does this?
-G
Comment