OMNIStat2 Automation script

randye007

Member
Hi All,
 
  Hopefully this is a simple one ...
 
  I have some logic in my automation scripts to set the HUMIDITY SETPOINT=0 when the OMNIStat2 mode is set to COOL.
  Here is my script:
 
WHEN Main T'Stat SECURE
AND IF Main T'Stat SYSTEM MODE IS COOL 
THEN Main T'Stat HUMIDIFY SETPOINT 0
 
   However, the HUMIDITY SETPOINT never gets set to 0. 
 
   I suspect for this logic to work, the OMNIStat2 status would need to go from SECURE to NOT READY back to SECURE again for the logic to trigger.
 
   Any ideas of how to write this script?
 
Thanks,
  Randy
 
This should work:
 
Every 1 minute
AND IF Main T'Stat SYSTEM MODE IS COOL 
THEN Main T'Stat HUMIDIFY SETPOINT 0
 
randye007 said:
Thanks picta!
That did the trick. It's unfortunate I can't trigger off the OMNIStat2 Mode changing to COOL.
 
Randy
You can't, but what you can do is set a trigger to trigger every minute them test if the mode is cool.  I would NOT test any more often than once per minute.
 
Back
Top