osc+chuck=wip
This commit is contained in:
@@ -5,6 +5,29 @@
|
||||
* nouveau Rural Art System 2021 - TerreBlanque
|
||||
*/
|
||||
|
||||
MidiIn input;
|
||||
MidiMsg msg;
|
||||
|
||||
1 => int port; // please explain
|
||||
|
||||
if (!input.open(port)) {
|
||||
<<< "erreur open" >>>;
|
||||
me.exit();
|
||||
}
|
||||
|
||||
// print out device that was opened
|
||||
<<< "MIDI device:", input.num(), " -> ", input.name() >>>;
|
||||
|
||||
// infinite loop
|
||||
while (1) {
|
||||
input => now;
|
||||
|
||||
while ( input.recv(msg) ) {
|
||||
<<< msg.data1, msg.data2, msg.data3 >>>;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user