Jazz-Soft.net
We make it sound!
Home » Documentation » Jazz-Plugin » Reference » MidiOutRaw()

MidiOutRaw()

Function

MidiOutRaw ( array ) - send a non-standard MIDI sequence.

array is the sequence of bytes to send.

MIDI Out device must be open before the output.

Example

Jazz.MidiOutLong([0xf0,0x7f,0x7f,0x04,0x01]);  // No output
Jazz.MidiOutLong([0x7f,0x7f,0xf7,0x90,0x3c]);  // Outputs f0 7f 7f 04 01 7f 7f f7
Jazz.MidiOutLong([0x7f,0x40,0x7f,0x43,0x7f]);  // Outputs 90 3c 7f
                                               // Outputs 90 40 7f
                                               // Outputs 90 43 7f

Jazz.MidiOutRaw([0xf0,0x7f,0x7f,0x04,0x01]);   // Outputs f0 7f 7f 04 01
Jazz.MidiOutRaw([0x7f,0x7f,0xf7,0x90,0x3c]);   // Outputs 7f 7f f7 90 3c
Jazz.MidiOutRaw([0x7f,0x40,0x7f,0x43,0x7f]);   // Outputs 7f 40 7f 43 7f

See also