ofxOscMessage m;
m.setAddress( "/test" );
m.addFloatArg( ofGetElapsedTimef() );
sender.sendMessage( m );
that’s (trimmed down) from the example code - it sends a float when you hit the letter “a” – just the elapsed time in seconds. if you run the serd/recv examples you can see it in action by hitting “a” on the send example… take a look in keypressed() for how it’s done.
director receives OSC data as #bundle, and i don’t know how to encode that, and i don’t want to waste my cpu cycles in director encoding OSC packet data.
instead i’ve used: