Altering the default MIDI assignment
For the default APC40 for instance:
Menu > Settings > MIDI > APC40 mkII settings > MIDI surface – Sliders > Configure
Move the slider or knob you want to change the assignment for and you’ll see its MIDI address and value appear bottom left.
Find where it is currently assigned to and right-click Delete its MIDI In setting.
Press OK and now go into “MIDI to PangoScript…” and press Configure.
Move the slider and it will jump to that MIDI message in the list. Double-click the Script column for it and now you can enter the PangoScript you want to assign to that slider/knob.
Animation speed: 0-100% | deadband in middle of fader | 100-400%
if ((extvalue(0,100) > 45) & (extvalue(0,100) < 55)) AnimationSpeed 100 //Fader 45-55% = 100% (nice big deadband)
if (extvalue(0,100) <= 45) AnimationSpeed extvalue (0,222) //Fader 0-45% = 0-100%
if (extvalue(0,100) >= 55) AnimationSpeed extvalue (-260,400) //Fader 55-100% = 100-400%
Scan rate: 10-100% | deadband in middle of fader | 100-200%
if ((extvalue(0,100) > 45) & (extvalue(0,100) < 55)) ScanRate 100 //Fader 45-55% = 100% (nice big deadband)
if (extvalue(0,100) <= 45) ScanRate extvalue(10,212) //Fader 0-45% = 10-100%
if (extvalue(0,100) >= 55) ScanRate extvalue (-20,200) //Fader 55-100% = 100-200%