Rules help

stephenmathie

2013-03-01 11:11:13

Hi

I use Bome with TouchOSC to convert control change to velocity so my GrandMA2 lighting desk can read my TouchOSC remote.

I have not used rules, though I have read a few posts on here and the manual, but my questions is this;

Could I set a conditional rule that if an encoder is turned anti clockwise and thus it's value is going down, the rule would output a midi note on command, and inversely if is turned clockwise and its value is going up, could a rule be set to output a different note on?

This basically represents a rather crude workaround for a lighting desk that frustratingly only reads velocity and note on/off information.

Any help or examples would be greatly appreciated.


Stephen

DvlsAdvct

2013-03-02 00:20:19

Hi stephenmathie

What you want is very easy. You would simply have a translator for turning the knob anti-clockwise and a translator for turning the knob clockwise with its own outgoing action.

Code: Select all

Translator 1: Anti-Clockwise
Incoming Message: B0 00 3F
Rules: None
Outgoing Message: 90 00 7F

Translator 2: Clockwise
Incoming Message: B0 00 41
Rules: None
Outgoing Message: 90 01 7F
Does that make sense?