We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I'm trying to have two way conversation with pure data. I can send messages no problem but processing doesn't seem to be receiving them.
I tried running the oscP5sendReceive sketch from examples and I just get the oscP5 startup messages
and then nothing. The sketch is definitely looping away fine, I ran it again with a print message in draw() and that gets written out at every call to draw().
Any thoughts? Is this working for anyone else with the same setup?
Thanks, Ciaran
Answers
when you press the mouse inside the sketch window, you should see
### received an osc message. addrpattern: /test typetag: i
printed into the console.Otherwise you can try to change the IP address for the remote location to 192.168.3.1
myRemoteLocation = new NetAddress("192.168.3.1",12000);
Apologies, late night reading the code, I thought the send message was in draw(). @-)
This does indeed work and going back over my own code I noticed that I put quotation marks around this
osc = new OscP5("this", 12000);
8-| I knew it had to be something simple.
Thanks for the quick response (and the library!)
Cheers, C