Hi there ,
I’m having issues with getting MIDI Out for my Launchpad Mini MK2 to work. I’m using Linux, and the buttons don’t light up like I would expect them to.
I can get it to work using amidi
from the alsa utils package:
# illuminates the button at x=0, y=0 in green
amidi -p hw:1,0,0 --send-hex='90003C'
I can not get it to work using supercollider:
MIDIClient.init;
~launchpadDest = MIDIClient.destinations.select({|d| d.name.contains("Launchpad Mini")})[0]
~launchpadOut = MIDIOut.newByName(~launchpadDest.device, ~launchpadDest.name)
~launchpadOut.noteOn(0x90, 0, 0x3c)
Any ideas what is wrong? I tried to use the official documentation to figure out which midi signals to send.