Convert MIDI beatclock to Note tap

ryan2349

2015-02-18 19:17:16

Hello!

I am trying to convert MIDI beatclock to a note on tap. The beatclock of course is sent 24 per quater note so 96 per note. I need to set up some sort of rule so that MIDI translator only translates every 96th 0xf8 message. Any ideas?

Ryan

DvlsAdvct

2015-02-18 19:20:01

Use rules to do it. Something like:

Code: Select all

Translator 1: Clock Incoming
Incoming Message: F8
Rules: g0=g0+1
if g0>96 then g0=1
if g0!=1 then exit rules, skip outgoing action
Outgoing Message: <whatever you want>
That make sense?
Jared