// title: Sending a Sysex Message // author: hems.inlet // description: // simple example showing how to send a sysex messages // code: // 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