Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Listening to CC messages
name
code content
// connect will connect to all midi in devices // if you need to specify one, // check the sources at: MIDIClient.sources // and connect using MIDIIn.connect( source_index ) MIDIIn.connect; // show incoming control data ~control = { arg src, chan, num, val; [chan,num,val].postln; }; MIDIIn.addFuncTo(\control, ~control);
code description
Simple example showing how to listen for MIDI control 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