OSC: Subscribe

I'm trying to subscribe to my show data on eos, but when i send "/eos/subscribe=1" it does not subscribe. I've tried seeing what demo programs like EOSSyncDemo do, but couldn't find it in the code. I see that EOSSyncDemo does indeed sync with the show data, so is the syntax printed in the "EOS Integration..." incorrect or am I doing something wrong?

  • If anyone is having this problem, the solution is to send "1" as the arguments. You can not send your arguments in your message. So your message should be "/eos/subscribe" and your argument should be "1". Hope this helps someone out there.
  • Hi Carl,

    Good question. We put this as "=1" as an attempt to represent the arguments as a string. This isn't OSC standard syntax though, so for applications like TouchOSC they will need to be sent as the arguments.

    I'll submit this as an item to clarify on our next revision of the show control user guide.

    Thanks!

    Hans
  • This is correct. You need to send a bool argument with the command. 1 = True e.g Yes I do want to subscribe, 0 = False e.g No I don't want to subscribe..