I received my iPod Touch last week and have played around a little with the TouchOSC app. I've gotten Augustus to respond to the iPod by rewriting the OSC messages in Osculator.
However, I haven't gotten the /exec message to work. I've tried every combination of arguments I could think of but I always get the message "error while parsing message: /exec: failed to exec function" from Augustus.
Osculator has a weird way to rewrite OSC input so its hard to describe what I've done here, but I've also tried debugging in Supercollider.
While things like this work perfectly
Code: Select all
(
b = NetAddr.new("127.0.0.1", 7001);
for(0,81,{ arg i;
b.sendMsg("/getInfo", i, "osc.udp://127.0.0.1:57120", "/Augustus");
}
)
)Code: Select all
b.sendMsg("/exec", "selectLoop", 2);Do you have a suggestion?
Cheers,
Axel
