dlorenzo Posted July 8, 2015 Posted July 8, 2015 How can I program a fan to be run for 30 seconds every 10 minutes? I am lost don't know where to begin with this one ... THanks!
LeeG Posted July 8, 2015 Posted July 8, 2015 (edited) Need to know what starts the process. If always, set Program to Run at Startup. If by some device action, such as pressing a KPL button or similar, just need to know what that is. The meat of the Program If depends on additional information Then Repeat every 10 minutes Set 'fan' On Wait 30 seconds Set 'fan Off Else Set 'fan' Off Edited July 8, 2015 by LeeG
dlorenzo Posted July 9, 2015 Author Posted July 9, 2015 Need to know what starts the process. If always, set Program to Run at Startup. If by some device action, such as pressing a KPL button or similar, just need to know what that is. The meat of the Program If depends on additional information Then Repeat every 10 minutes Set 'fan' On Wait 30 seconds Set 'fan Off Else Set 'fan' Off Thanks! I will use a variable to get the program running.
larryllix Posted July 9, 2015 Posted July 9, 2015 Thanks! I will use a variable to get the program running. Only state variables will trigger programs when they change value. Integer types do not trigger programs but can be used for testable status in logic statements. ISY has an event based engine. You don't usually poll devices with software.
Recommended Posts