Midi input on FX parameters
-
Hi everyone,
How can I map Midi CC input to FX parameters?
-
@Willem-B Do you mean for example controlling the delay knob via the mod-wheel?
-
@d-healey Exactly :)
-
There are a few ways, depending on which effects and which parameters.
Some of them can be controlled using a MIDI modulator, like this:
If it can't be controlled in this way then you have two choices. You can add a control to your main interface and connect it to the desired parameter using the property editor. Then you can right click on the control and select learn MIDI CC, then move a hardware controller to assign it. You can edit the preset afterwards to change it to a different CC number if you don't have a hardware controller assigned to the CC number you want to use.
The other way is to script it. For this you'll need a reference to the module and you can set the parameter in the
on controller
callback. -
@d-healey Thank you!