Page 1 of 1

Send Sysex

Posted: 02 Feb 2012 18:06
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?

Re: Send Sysex

Posted: 03 Feb 2012 10:58
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

Re: Send Sysex

Posted: 03 Feb 2012 18:35
by datune
Thanks!