«Sending a Sysex Message» by hems.inlet
on 03 Jun'15 05:17 insimple example showing how to send a sysex messages
1 2 3 4 5 6 7 8 9 10 11 12
// running this line will show all your MIDI ins and outs on the console // find the number of the output interface you want to use MIDIClient.init; // select the midi out you would like to use m = MIDIOut(0); // send a sysex message on that output m.sysex(Int8Array[ 16rf0, 0, 0, 27, 11, 0,16rf7]) //taken from MIDIOut manual
reception
comments