CC value outside of controller callback
-
Inside the controller callback I assign the value of a CC I'm interested in to a slider. Then I can check the slider's value in any other callback if I want to know the current value of that CC. Is this the best way to do it or is there a more direct way to check the value of a CC outside of the controller callback?
-
Use a variable?
-
@Christoph-Hart Actually I did this too but I found one problem with both approaches, when the instrument is first loaded you have no idea what the CC value is until the user moves the controller.
-
Thats what the default value parameter in the cc modulator is for.
-
@Christoph-Hart Oh, that makes sense! Thanks!