Rule Machine - Repeat with random wait time?

Is there a way to have a repeat with a random wait time between iterations?

From what I can see, repeats occur in parallel with each one starting in the amount of time specified.

I was thinking that I could do this (randomize the wait time between iterations) by adding a randomized delay between iterations if there was an option to set a repeat in series instead of in parallel (To start its next iteration after the first one ends), but I havenā€™t been able to find this option. Maybe Iā€™m missing something?

Perhaps you could use a variable for the repeat time (seconds in the variable) and change that variable within the loop. Like this:

The way that works is that each time around the variable ('random seconds') is fetched for the next loop delay time.

2 Likes

That should work. Thanks!