I can not find an OSC library for Arduino that supports Touch OSC's multitoggle controls. Am I doing something wrong, or is there a library that does have support for this control?
The library I'm using: https://github.com/recotana/ArdOSC
The OSC message I'm sending from Touch OSC:
/octobar/togglearray/2/2 1.
The Snippet relative to catch it on the Arduino:
server.begin(serverPort);
server.addCallback("/octobar/togglearray",&togglearray);
void togglearray(OSCMessage *_mes) {
Serial.println("Toggle Array");
}
I do have other callbacks working, and I have not pasted all of the server code here since it is working with fader and push button controls. The problem seems to be any control that supports multiple selection.
I have been trying to do almost exactly this and switched to the
Z_Osc
library as I could not work out how to parse the incoming messages using ArdOsc.I do something like this: