Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Sending a Sysex Message
name
code content
// 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
code description
simple example showing how to send a sysex messages
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change