Pitch Wheel on UI - control from keyboard?
-
@d-healey thanks will give it a try.
Re rant - probably because kids produce on the sofa without any keyboard...
-
@d-healey so how do I get the value from the pitch bend cc?
-
@DanH said in Pitch Wheel on UI - control from keyboard?:
pitch bend cc?
Message.getControllerValue()
-
@d-healey said in Pitch Wheel on UI - control from keyboard?:
Message.getControllerValue()
great got it! Thanks :)
For anyone else the slider's range needs to be set from 0 - 16383
-
@d-healey not getting an error but nor am I getting any pitch movement - have I done it wrong?!
inline function onPITCHWHEELControl(component, value) { Synth.sendController(Message.PITCH_BEND_CC, value); }; Content.getComponent("PITCHWHEEL").setControlCallback(onPITCHWHEELControl);
-
@DanH Oh yeah getting MIDI out from instruments is tricky, search the forum and see what comes up.
-
I had use of it (draggable ui modwheels) once or twice.
It has uses if the synth uses it as an important modulation macro and I don't happen to have a keyboard turned on or near me.But yeah it's very likely a waste of CPU.
-
@griffinboy I just don't get it because as a user I'll usually assign my mod-wheel to control some knob/slider on the UI (via MIDI learn).
So if the knob is already on the UI I don't need a second slider that is only controllable by CC0. The only reason for this mod-wheel slider is because you don't already have a control on your UI for the thing you want the user to control. And now you're restricting their choice of CC to control this thing to CC0. Why not design your UI with the control on it, and let the user assign the CC they want to use?
-
Yep you are right that is a better architecture I don't disagree.
-
@d-healey Well the modwheel on my ui will be another modulator that you can drop onto almost any control, but I also quite like it as a hardwired vibrato pitch modulation effect!