OscOut objects send OSC messages to devices (e.g., computers) that listen for incoming OSC events.
Use the following function to create a OscOut object:
Function | Description |
OscOut( IPaddress, port ) | Creates a new OscOut object to send messages to another OSC device (such as a smartphone, or tablet) at the given IPaddress (a string, e.g., “192.168.1.223″) and port (an int in the range 1024 to 65535). |
Once an OscOut object (e.g., oscOut) has been created, the following functions are available:
Function | Description |
oscOut.sendMessage( address, arg1, arg2, … ) | Sends out an OSC message with address and 0 or more arguments to the device listening. |