Hi,
I couldn’t send OSC message without args (just a simple OSC message with emtpy type string).
tried: op(‘oscout1’).sendOSC(‘/address’, [])
and: op(‘oscout1’).sendOSC(‘/address’, None)
Did i miss something?
Hi,
I couldn’t send OSC message without args (just a simple OSC message with emtpy type string).
tried: op(‘oscout1’).sendOSC(‘/address’, [])
and: op(‘oscout1’).sendOSC(‘/address’, None)
Did i miss something?
I’m not sure if OSC supports sending null arguments.
Try this
op(‘oscout1’).sendOSC(‘/address’, ‘’)
This will not work since sendOSC expectes a list as the second argument.
Of course OSC do support no arguments, you just put an empty string as the message type string