Lemur fader control via Sysex

Discuss Lemur and share techniques.
Post Reply
serge789
Newbie
Posts: 1
Joined: 18 Jan 2013 10:20

Lemur fader control via Sysex

Post by serge789 »

Hello.

I have to control a GrandMa2 via Lemur but the Grandma can only send MSC which is a sysex string.

Sending sysex now works with this custum Midi setup:

Message: FO
trigger: Fader1.x
data: {0x7F, 0x00, 0x02, 0x01,0x06,0x00,0x01, 16383*Fader1.x-128*floor(16383*Fader1.x/128), floor(16383*Fader1.x/128)}

But I don't know how to make it bidiretional.

Can anybody help?
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Lemur fader control via Sysex

Post by Softcore »

Not really sure what you should do, but off the top of my head you can set up a monitor and a script "on Midi" that will get all the received sysex messages.

Then by having in that script:

Code: Select all

Monitor.value=MIDI_ARGS;
you will be able to see the incoming data and possibly figure out a way to 'translate" it into 0-1 ranged values that will provide the bi-directional feedback for your objects.
Post Reply