|
Post by selthym on Jan 10, 2008 6:33:31 GMT -5
Is it possible to create more than 1 shift button in Bomes ie. padKontrol pad 1 + knob 1 = CC 10, pad 2 + Knob 1 = CC 11?
|
|
|
Post by Stray on Jan 10, 2008 7:40:26 GMT -5
Sure, you can have as many as you want. A shift button/pad just sets a global variable. A knob can send out different CCs depending on the value of those global variables.
|
|
|
Post by selthym on Jan 11, 2008 19:25:42 GMT -5
I have just downloaded the demo of the author edition of midi translator. How do you create this shift button. When I try to record incoming midi messages the 2nd message overwrites the first...
I am struggling to record the CC messages from the knobs as the recorded message always ends up being the location where you leave the knob and not the full range.
I am sure I am missing something basic here.
|
|
|
Post by Stray on Jan 14, 2008 13:07:50 GMT -5
I’ll give you a quick example…
Translator 1 (shift pad) – the pad would have to send a CC and be set up as a momentary switch. Incoming: B0 20 pp Rules: If pp==127 then ga=1 If pp==0 then ga=0 Outgoing: none
Translator 2 (knob) Incoming: B0 0A pp Rules: If ga<1 then qq=10 If ga>0 then qq=11 Outgoing: B0 qq pp
So the knob sends CC 10 by default. If you press and hold the shift pad, the knob will send CC 11. For multiple shifts, you set up the other shifts just like Translator 1, but with a different global (“gb” for example). And you add additional rules to the knob translator.
Hope that helps.
|
|