SuperCollider newbie starting point

Discuss Lemur and share techniques.
Post Reply
nitefish
Regular
Posts: 56
Joined: 24 Aug 2012 07:43

SuperCollider newbie starting point

Post by nitefish »

I'm able to send lemur values to SC with the new OSC system(in SC).
Thanks to Marinus for his help.


adapted from the OSCresponderNode Help:
n = NetAddr("Lemur IP", nil);
o = OSCresponderNode(n, '/Fader/x', { |t, r, msg| msg.postln }).add;
p = OSCresponderNode(n, '/Switches/x', { |t, r, msg| msg.postln }).add;
o.remove;
p.remove;
Post Reply