Send Sysex

Discuss Lemur and share techniques.
Post Reply
datune
Newbie
Posts: 2
Joined: 02 Feb 2012 17:48

Send Sysex

Post by datune »

Hi,

for the last 3 days I have been trying to figure out how to send Sysex to my Eventide Eclipse. I think I read just about every thread on this topic that I could find, and I downloaded lots of templates to see if any made use of Sysex, but could not find one.

Here's what I tried:

I created a customButton, set it to F0-System Exclusive. However, everytime I try to add Sysex Data into the "data" field, it colors the text red, and as soon as it loses focus, the data field resets it's value to nothing. This is the Sysex I am entering into this field, hoping that it would be bidirectional just like when using Midi CC values.

Code: Select all

F0 1C 70 01 01 0F 0F 0F 0F 0F 0D 0F 0F F7
I tried every variation I could think off, including removing F0 and F7, nothing seems to work.

Can someone please point me into the right direction please?
dbk
Regular
Posts: 98
Joined: 14 Dec 2011 11:35

Re: Send Sysex

Post by dbk »

Hello,

attach a custom midi script to your button.
it would look something like:

on expression x
midiout(0,{0xF0, 0x1C, 0x01,...,0xF7});

there are some threads covering this topic, i know because i started almost all of them :)

cheers,
Martin
datune
Newbie
Posts: 2
Joined: 02 Feb 2012 17:48

Re: Send Sysex

Post by datune »

Thanks!
Post Reply