I have some outdoor lights that I want to control on at 5am and off at sunrise and then again on at dusk and off at 11pm. I've been able to get the evening task to fire correctly by using the same task as is defined in the video tutorial, however my morning task doesn't seem to work. Here's my logic that I'm using:
Code: Select all
If ( 'System Time.TimeAndDate' is Equal '5:15 am' ) And
If ( 'System Time.Weekday' is Equal '1' ) And
If ( 'System Time.Sunrise Indicator' is Equal '0' ) Then
Change 'X10 - Deck Lights.Power State' to 'On'
Else If ( 'System Time.TimeAndDate' is Equal '3/2/2009 6:46:00 am' ) Then
Change 'X10 - Deck Lights.Power State' to 'Off'
Code: Select all
If ( 'System Time.TimeAndDate' is Equal '3/2/2009 5:55:pm' ) Then
Change 'X10 - Deck Lights.Power State' to 'On'
Else If ( 'System Time.TimeAndDate' is Equal '11:00 pm') Then
Change 'X10 - Deck Lights.Power State' to 'Off'
NOTE: Both morning and evening tasks are set to use sunrise/sunset variables and are not hard coded as it appears here.
UPDATE 3/2/2009 PM: I checked the log this afternoon when I arrived home and it looks like the morning sunrise portion did fire. So, something must be messed up with my logic for the morning lights on statement. I'm going to keep working on it, but I wish there was an easier way to debug which portions of the logic were met. Maybe I just missed that option somewhere...I'll keep at it.