mitch236 Posted May 11, 2010 Posted May 11, 2010 I wrote the following program to increase the reliability of turning of all the receptacles in my theater until I have the time to trouble shoot for the culprit. It seems that one of the receptacles always times out for some reason. I decided to use a repeat in the commands. My question is does the repeat work on the previous commands and then run the remainder of the program? It would seem that is the way it works but please give any feedback. The program: If IR 'IR_019' is Pressed Then Set 'Indoor / Thermostats / Theater / HVAC Theater' Mode Off Wait 5 seconds Set 'Indoor / Thermostats / Theater / HVAC Theater' Fan Auto Wait 5 minutes Set 'Theater / Receptacle / Theater SW' Off Wait 5 seconds Set 'Theater / Receptacle / Theater SE' Off Wait 5 seconds Set 'Theater / Receptacle / Theater NW' Off Wait 5 seconds Set 'Theater / Receptacle / Theater NE' Off Wait 1 minute Repeat 1 times Wait 30 minutes Set 'Theater / Equipment Fan' Off Else - No Actions - (To add one, press 'Action')
Michel Kohanim Posted May 11, 2010 Posted May 11, 2010 Hi mitch236, Repeat only repeats all the statements immediately following it (not before it). With kind regards, Michel
Recommended Posts