Im having an issue with sending multiple midi notes with a pad momentary switch. Im attempting to use lua scripting, my script looks like follows:
function sendNotes_m(valueObject, value)
parameterMap.set(1, PT_NOTE, 1, NOTE_ON);
end
This style of function has worked for me for resetting parameters but im now realizing that this isn’t actually sending any midi. can anyone help with sending multiple midi notes from one momentary press?