One Rule Question, One Raw Midi Question

Hi all, I have 2 questions.

Is it possible for a rule that looks for seemingly random CCs that I can define in one translator?

Ex

If pp!=8, 20, 35 , 45 then exit rules, skip outgoing action

Or CCs with some pattern could work

If pp!=8,13,18,23,28,33 then exit rules, skip outgoing action

My second question pertains to Raw midi as an outgoing translator.

Is it possible to put delays throughout an outgoing strand?

Ex
BF 06 7F (2) BF 0B 7F (5) BF 10 7F

The parenthesis being delays in ms.

Thanks for the help!

This is how you would need to construct anything that is not sequencial

if pp==8 then goto ‘over’
if pp==20 then goto ‘over’
if pp==35 then goto ‘over’
if pp==45 then goto ‘over’
exit rules skip outgoing action

Label ‘over’
// normal processing for this translator continues

No, but you could have a construct that uses a timer to send each command. See attached example. We set the delay and repeat count in the first translator and the second translators, identify the current step and send the proper CC number.

Multi-CC-Timer-with-Delay.bmtp (1.1 KB)

Steve Caldwell
Bome Customer Care


Also available for paid consulting services: bome@sniz.biz

Thanks so much! perfect.