sendOSC function doesn't work

I trying to send many data to another PC with osc.
so I tried to send DAT oscsend, and oscin,
but couldn’t get the messages from my pc
and keep pops up this message.
how to solve this kind of issues?

(for the first image, I added / in the front, but it has same issues)

send osc Dat, its not like send osc Chop, you have to write explicitely ‘/’ in front of address.
With a Python like that:
address = ‘/test’ + channel.name
Like that the osc receiver will understand it
And for another PC, you have to write the right IP address in “network address” and to be sure you are in the same IP category.

1 Like


The sendOSC function itself doesn’t work. I"m doing something like op(‘oscout1’).sendOSC(‘/from_td’, [1]) that gives the above error

hello,
it seems you use a oscout Chop, sendOSC function works with oscout Dat !
Jacques