I would like to map a rotary knob (not endless) on my mixer to ‘press’ or ‘switch’ an effect parameter button.
If the knob is at position 0 then I would like it to activate ‘effect button 1’, If the knob is at 50 then I would like it to activate ‘effect button 2’, If the knob is at 100 then I would like it to activate ‘effect button 3’.
Thanks in advance for the info.
Clay
If the knob is at position 0 then I would like it to activate ‘effect button 1’, If the knob is at 50 then I would like it to activate ‘effect button 2’, If the knob is at 100 then I would like it to activate ‘effect button 3’.
Thanks in advance for the info.
Clay
发表时间 Tue 12 Jun 12 @ 4:28 pm
param_equal 0% ? effect button 1 1 : param_equal 100% ? effect button 3 1 : param_greater 50% ? effect button 2 1
its a little clumsy like that though as the knob essentially does nothing between 1% - 50%, you should change it so if the knob is at 0% turn the effect off, if below 50% button 1, if below 100% button 2, if at 100% button 3... it's done like this
param_greater 0% ? effect active on & param_smaller 50% ? effect button 1 1 : param_smaller 100% ? effect button 2 1 : param_equal 100% ? effect button 2 1 : effect active off
its a little clumsy like that though as the knob essentially does nothing between 1% - 50%, you should change it so if the knob is at 0% turn the effect off, if below 50% button 1, if below 100% button 2, if at 100% button 3... it's done like this
param_greater 0% ? effect active on & param_smaller 50% ? effect button 1 1 : param_smaller 100% ? effect button 2 1 : param_equal 100% ? effect button 2 1 : effect active off
发表时间 Tue 12 Jun 12 @ 5:08 pm
Thanks for the info Synthet, it worked great!
DJClay
DJClay
发表时间 Wed 13 Jun 12 @ 2:37 pm
always a pleasure, but i actually made a mistake
aram_greater 0% ? effect active on & param_smaller 50% ? effect button 1 1 : param_smaller 100% ? effect button 2 1 : param_equal 100% ? effect button 3 1 : effect active off
aram_greater 0% ? effect active on & param_smaller 50% ? effect button 1 1 : param_smaller 100% ? effect button 2 1 : param_equal 100% ? effect button 3 1 : effect active off
发表时间 Wed 13 Jun 12 @ 3:21 pm