![]() |
|
#1
|
||||
|
||||
|
I've just bought a Korg NanoKontrol, predominantly to help control Mobius (and Reaper), and have hit a slight snag.
The problem I'm having is in getting Mobius to recognise certain commands. Specifically, I want to set some of the knobs to allow -12 to +12 settings of the RATE command (rather than the default -/+ 24), but I can't figure out how to get Mobius to respond to this. I don't know if anyone on this list is familiar with the Korg Nano, but the editor allows setting limits to the CC values. These settings can be saved, however, I don't how to get Mobius to read these settings. I hope this makes some sort of sense to somebody. Thanks, Stephen Last edited by stevoj; 12-16-2009 at 03:11 PM. |
|
#2
|
||||
|
||||
|
Rate shift is not a bindable controller like output level and pan.
You can however create a "control script" that converts the MIDI value from the knob into a rate shift. Code:
!name Nano Rate Shift !controller Variable shift (float(midiValue) / 5.29) - 12 Message Rate shifting $shift RateShift shift a value from 0 to 127, this gets divided by the 5.29 which is 127 / 24 (the number of "chunks" in the range) then offset down by 12 so you have a range of -12 to 12 rather than 0 to 24. Register this script then in MIDI Control assign the Nano knob to this script. |
|
#3
|
||||
|
||||
|
Great, this works really well, many thanks Jeff.
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|