Blocks with different time intervals within a timer

This time I'm trying to set different time intervals for two blocks within a one-second interval timer.

The first block will have a 3-second interval, and the second block a 5-second interval.

It's worth noting that the timer starts at one second.

Any suggestions?

Honestly it's not preatty clear to me what you intend, but if you want to schedule two tasks with two different timebases with only one clock, you could implement something like the following:

The clock1 fires every 1 second, and every 3 seconds it calls for the task that is executed every 3 seconds, while every 5 seconds it calls for the task executed every 5 seconds. (if this is what you need)

Please be aware that every 15 seconds (3*5) the two tasks will be executed both.

1 Like

thank you so much

1 Like

Wow ! Glad to have helped you :grin:

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.