Skip to content

Instantly share code, notes, and snippets.

@verytired
Last active December 27, 2016 06:12
Show Gist options
  • Save verytired/31845ebe98fbcfbcbfe4d93fffd27b94 to your computer and use it in GitHub Desktop.
Save verytired/31845ebe98fbcfbcbfe4d93fffd27b94 to your computer and use it in GitHub Desktop.
tidal同期用
(
SuperDirt.start;
b = NetAddr.new("127.0.0.1", 12345); // create the NetAddr
OSCdef(\test, {
|msg, time, addr, recvPort| 'osc'.postln;
msg.postln;
b.sendMsg("/hello", "there");
}, '/play2', n); // def style
)
//OSCresponderNode.new( addr, cmdName, action )
/*o = OSCresponderNode( n, '/play2', {
arg t, r, msg;
( "time:" + t ).postln;
msg[1].postln;
}).add;*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment