Home Forums Macros Matrix last midi command [feature request] Reply To: Matrix last midi command [feature request]

#7194
Philippe OllivierPhilippe
Keymaster

Hi,

Assuming that you mapped your midi device to the matrix, you have the possibility to accces to those informations with :

Declare Local int $lastDial$ = 0

$lastDial$ = {currentCaseValueString()}
Post {"Current dial is = " + $lastDial$}
Post {"CC for the current dial is = " + $midiMappingValue[lastDial]$}
Post {"Midi channel for the current dial is = " + $midiMappingChannel[lastDial]$}
Post {"The Midi device is = " + $midiMappingDevice$}
// Which Case is it ?
Message { "Button or Dial number " + currentCaseValueString() + " : " + currentCaseOptionValueFloat(0)}

Does this help you?

Philippe