Hey guys,
I need help on some timer conditions:
I want to trigger my blinds to shut down at 2h after sunset, but not before 8pm.
And the reversed condition:
e.g. 1h after sunset, but latest at 10pm
How can I define this. I already tried to combine some timer condition with OR, but it's hard to test…
Thanks, Netsrac
Hi,
Here is an example than can help you:
<rule id="ouverture_volets_etage"> <condition type="and"> <condition type="timer" trigger="true"> <at hour="7" min="30" /> <until hour="12" min="0" /> </condition> <condition type="timer" trigger="true"> <at type="sunrise" offset="-10m" /> <until hour="12" min="0" /> </condition> </condition> <actionlist> <action type="set-value" id="volets_etage_move" value="off" /> </actionlist> </rule>
Regards, Ben
Log in to post a comment.
Hey guys,
I need help on some timer conditions:
I want to trigger my blinds to shut down at 2h after sunset, but not before 8pm.
And the reversed condition:
e.g. 1h after sunset, but latest at 10pm
How can I define this. I already tried to combine some timer condition with OR, but it's hard to test…
Thanks, Netsrac
Hi,
Here is an example than can help you:
Regards,
Ben