Hi all,
I would like to be able to write:
if … then after random(10,20) turn on X and turn on Y
With the semantics that both should be done after the same random amount of time.
Currently this would only cause X to be turned on after the random time, but not Y.
I assume further that writing:
if … then after random(10,20) turn on X and after random (10,20) turn on Y
Would not achieve what I want (they would both be turned on at two different random times).
Instead of solving this by creating additional dummy devices or rules, in general can I somehow express that two or more actions are grouped ? Something like:
if … then after random(10,20) (turn on X and turn on Y)
doesn’t parse…