If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
If you want to send your Wiimote's event to Processing, use the file "Wiimote to Max" from the Samples Library, or create your own by routing OSC messages to localhost:9000.
If you want to send your Wiimote's event to Processing, use the file "Wiimote to Max" from the Samples Library, or create your own by routing OSC messages to localhost:9000.
Best,
Camille
Thanks Camille, the example works fine. When I plugged it into my program, because I'm sending and receiving other OSC messages as well I had to add this line, (suggested from the examples):
// set the remote location to be the localhost on port 9000;
myRemoteLocation = new NetAddress("127.0.0.1", 9000);
Comment