Play a pattern every X cycles

I have this very simple question but can't find an answer: how do you get tidal to pla a pattern once every X cycles?

Does this do what your looking for?

d1 $ every 4 (const $ s "be ho") $ silence

I'm on my phone so I might have messed something up. It should play drums every 4 cycles

Or there's this approach:

d1 $ mask "<0 1 1 1>" $ s "bd sd"
2 Likes

Thank you very much! This does indeed do the job. Happy also to learn about the use of 'const'!

2 Likes