Launchkey Mini InControl Init Message
Posted: Mon Nov 25, 2019 12:38 am
Hi,
i would like to use my Launchkey Mini Mk2 to control QLC+.
Usually, you have to use/open Ableton to enable "InControl Mode", then you can use the RGB Pads with QLC+.
I already found out, that when i send a specific Midi Packet using Python, i can activate InControl Mode without Ableton.
But, i dont know how to "convert" this into the Init Message i need for QLC+.
Using Python3:
So i tried adding the bytearray to the Init Message:
But this looks to small for an Initmessage, compared to the others.
So i tried convert it into SysEx and out came:
but this didnt work either.
What can i do?
And when gets the Initmessage sent? I selected it in my Inputconfig.
Any help is appreciated, thanks
i would like to use my Launchkey Mini Mk2 to control QLC+.
Usually, you have to use/open Ableton to enable "InControl Mode", then you can use the RGB Pads with QLC+.
I already found out, that when i send a specific Midi Packet using Python, i can activate InControl Mode without Ableton.
But, i dont know how to "convert" this into the Init Message i need for QLC+.
Using Python3:
Code: Select all
>>> import mido
>>> midi_out = mido.open_output("Launchkey Mini LK Mini InControl")
>>> midi_out.send(mido.Message.from_bytes([0x90, 0x0C, 0x7F]))
Code: Select all
<!DOCTYPE MidiTemplate>
<MidiTemplate>
<Creator>
<Author>Haxxe</Author>
</Creator>
<Description>Sets the Launchkey Mini MK2 into InControl Mode. This is needed to control the button LEDs.</Description>
<Name>Launchkey Mini MK2</Name>
<InitMessage>90 0C 7F</InitMessage>
</MidiTemplate>
So i tried convert it into SysEx and out came:
Code: Select all
<InitMessage>F0 00 0C 7F F7</InitMessage>
What can i do?
And when gets the Initmessage sent? I selected it in my Inputconfig.
Any help is appreciated, thanks