RichTJ99 Posted September 8, 2013 Posted September 8, 2013 Hi, I have a new LED bulb & I was thinknig it would be nice to have it come on each night at 515pm & shut off at 1115pm. This is what I have so far: Program1: If Time is 5:15:00PM Then Set 'Main: Living Room LED Bulb' On Else - No Actions - (To add one, press 'Action') Program2: If Time is 11:15:00PM Then Set 'Main: Living Room LED Bulb' Off Else - No Actions - (To add one, press 'Action') Thanks, Rich
Michel Kohanim Posted September 8, 2013 Posted September 8, 2013 Hi Rich, This should work for your requirements. With kind regards, Michel
apostolakisl Posted September 8, 2013 Posted September 8, 2013 You might instead try. If Time is from 5:15:00PM to 11:15:00PM same day Then Set 'Main: Living Room LED Bulb' On Else Set 'Main: Living Room LED Bulb' Off
RichTJ99 Posted September 9, 2013 Author Posted September 9, 2013 Thanks, the single program seems cleaner!
oberkc Posted September 9, 2013 Posted September 9, 2013 Thanks, the single program seems cleaner! It probably is a bit cleaner, if this meets your needs. My only observation is that there are times when separating the two programs make sense. Keep this in mind as your needs and desires evolve.
apostolakisl Posted September 9, 2013 Posted September 9, 2013 Thanks, the single program seems cleaner! It probably is a bit cleaner, if this meets your needs. My only observation is that there are times when separating the two programs make sense. Keep this in mind as your needs and desires evolve. This does become the case with multiple conditions besides on at one time off at another time. For example, if you want it to turn on at one time only if the status of another light is off. If from 8pm to 10pm same day and status light x is off Then set light y on Else set light y off The above program will run every time someone changes the status of light x. The result will by that light y turns off every time light x changes and the time is not 8 to 10. Also, if someone turns light x on between 8 to 10, light y will turn off.
Recommended Posts