Need your advice :

Need your advice : if using the Demo reel code how can I make each animation to change let’s say every 10 minutes rather then few seconds. Thanks

You can change the line that has:

EVERY_N_SECONDS( 10 ) { nextPattern(); }

to:

EVERY_N_MINUTES( 10 ) { nextPattern(); }

thanks It works