Launchpad Mini Mk3 having two Midi interfaces

Status
Not open for further replies.
Good morning,

I got a Launchpad Mini Mk3 and was hoping to connect it to my Teensy 3.6 through the USB-host. Unfortunately it uses two different Midi interfaces (DAW in/out and MIDI in/out) - had a similar issue with the Korg SQ1 before where I gave up.
The second interface is the one I need to use to light the LP's buttons.
I thought I might just need to check for more USB interfaces, but I guess that doesn't make sense as it's one USB interface with two Midi ports. So yeah, no success so far.

Is this anyhow possible currently?

Thanks for your help!
 
Try adding the optional 4th "cable" parameter when sending. Normally it defaults to 0. So to send to the other port, try something like this:

Code:
  mydevice.sendNoteOn(60, 99, 1, 1);
 
Status
Not open for further replies.
Back
Top