Loading...
Logo
Processing Forum
I use rwmidi libruary with 2 midi keyboards.  To connect two devises is no problem:

Copy code
  1. import rwmidi.*;
    MidiInput input0;
    MidiInput input1;
    MidiOutput output;

    input0 = RWMidi.getInputDevices()[0].createInput(this);
    input1 = RWMidi.getInputDevices()[1].createInput(this);
    output = RWMidi.getOutputDevices()[0].createOutput();
   

I would like to separate each device. I can use following code:

Copy code
  1. void noteOnReceived(Note note) {  
      println("note on " + note.getPitch()); }

But it gives same "note on " for both of the devices withput information wich device is currently in use. 

How to separate "note on " information for every midi keyboard (input0, input1) ? 

Replies(1)

Even though this thread got a little old, i came up with a possible solution recently.

The RWMidi Library contains a getChannel() command, which you can use to separate midi devices, if you setup different channels for each device. 

Here is some example code with a controller change:

Copy code
  1.   public void controllerChangeReceived(rwmidi.Controller cntrl) {
  2.     
  3.     int chan = cntrl.getChannel();

  4.     if (chan==1) {
  5.     ...
  6.     }else{ ... }