I have the following logic. At sunrise (currently around 0700), blinds open to 50%. At 0800, I want the blinds to open to 15%.
What is happening is that the blinds open to 50% at 0700 and then WorkHours gets set to True at 0800, but the blinds stay at 50%.
I imagine I am missing something obvious. Any ideas?
Condition:
OpenBlinds IsDay AND (WorkHours OR !WorkHours)
Schedule:
WorkHours Day of Week 08:00:00 1,2,3,4,5 None Day of Week 17:20:00 1,2,3,4,5 None
Logic Action:
Blinds SetLoadLevelTarget newLoadlevelTarget={(WorkHours ? 15 : 50)}