How can I create three bytes raw midi messages in the following forms
to interact with my launchpad from within PD?
128, <Key>, <Velocity> 176, <Contoller>, <Data>
Thanks for your help in advance. Achim
Achim Christian Bornhöft wrote:
How can I create three bytes raw midi messages in the following forms to interact with my launchpad from within PD?
128, <Key>, <Velocity>
That's a note off message, are you sure you don't mean 144? Then you could use a message with two values like:
[<key> <velocity>( | [noteout]
176, <Contoller>, <Data>
[<controller> <data>{ | [ctlout]
or if it's always the same controller,
{data( | [ctlout <controller>]
Martin