Accesso rapido:  

Forum: Old versions

Topic: Map Rotary Knob To Activate Button

Questo argomento è obsoleto e potrebbe contenere informazioni obsolete o errate.

ClayDJPRO InfinityMember since 2011
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
 

Inviato 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
 

Inviato Tue 12 Jun 12 @ 5:08 pm
ClayDJPRO InfinityMember since 2011
Thanks for the info Synthet, it worked great!

DJClay
 

Inviato 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
 

Inviato Wed 13 Jun 12 @ 3:21 pm


(Vecchi argomenti e forum sono automaticamente chiusi)