A quick debugging application, designed to connect to Resonite's OSC_Reciever component and to test connectivity.
Feel free to use it to validate if your network setup will allow OSC connectivity or as a jumping off point for further development.
- In Resonite, attach an OSC_Reciever Component to an Empty Object (Component can be found in Network/OSC)
- Specify the network port in the port field of the component.
- Specify the user in the user field of the component.
- Verify that the "Is Listening" checkbox is enabled
- Add a OSC_Value<T> component, with the data type Long.
- Drag the receiver from previous steps into the handler on the OSC_Value.
- Set the Path of the OSC_Value to /test
- Run this application using 2 CLI arguments, the first being the IP Address and the second being the port:
- e.g. OSCTester.exe 127.0.0.1 3001
You should then see the OSC Value counting upwards with the Unix Epoch in Seconds, which is generated from the application.
- You can add a 3rd argument to send/receive at the same time: OSCTester.exe 127.0.0.1 3001 3002.
- You can only specify 1 argument to ONLY receive: OSCTester.exe 3001

