You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
400 B

4 => int device;
MidiIn min;
MidiMsg msg;
SinOsc s => dac;
if( !min.open( device ) ) {
me.exit();
}
<<< "MIDI device:", min.num(), " -> ", min.name() >>>;
// infinite time-loop
while( true )
{
min => now;
while( min.recv(msg) )
{
<<< msg.data1, msg.data2, msg.data3 >>>;
}
13 => int ctlNrFreq;
if(msg.data2 == 13) {
msg.data3 => s.freq;
}
}