OSC messages to CH and XFADE from Qlab

jakob
Posts: 2
Joined: Tue Sep 03, 2019 9:19 am

OSC messages to CH and XFADE from Qlab

Post by jakob »

Hi Dave and all,

I hope you can help me out here:
I'm having trouble to access the individual channels via OSC from QLAB. (no problem with TouchOSC though)
I can switch banks and presets without problem with e.g.

Code: Select all

/dmxis/preset/1
but sending

Code: Select all

/dmxis/ch/1 "0.5"
does not work. Same for

Code: Select all

/dmxis/xfade "30"

Any ideas why that is?

Thx and all best,
Jakob

PS: And since I'm here: is it possible to define longer crossfades than 30 sec via OSC? ;-)
Last edited by jakob on Tue Sep 03, 2019 11:09 am, edited 1 time in total.
jakob
Posts: 2
Joined: Tue Sep 03, 2019 9:19 am

Re: No OSC access to Channel and XFADE from Qlab

Post by jakob »

OK, I tried one last thing and finally had success - the proper way to send channel commands from QLab to DMXIS is:

Code: Select all

 /dmxis/ch/1 0,5 
The proper way to send xfade commands is:

Code: Select all

 /dmxis/xfade 10,0 
No "" and the comma is important, even if you want to send full integeres. So

Code: Select all

1
should be written as

Code: Select all

1,0
Hope that's helpful for someone else. Besides: DMXIS rocks! :-)
Post Reply