send midi by script
Hello,
I try to send mlidi CC channel 1 note 46 value 127 but it doesn't work.
Herec is my function :
function sendToKorg(value) {
try {
var command = "CC " + TARGET_CC + " @ " + value;
log("Envoi de : " + command);
sendMIDI("nanoKONTROL2",command);
} catch(e) {
log("Erreur sendMIDI : " + e);
}
}
Can you show me how to do it.
Thanks.
Comments
I found the solution :
Hello @limoges,
For info, there are code snippets in the help center.
Best. Philippe