View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide

warteraum_berlin_0.1

Home   How To   Code Pool   Public Library   Theory   Events
// first dowload and add this class to SCClassLibrary:
WarteRaum2.sc
// the run setup script:
		// this first, wait till server runs,
s.boot; 
	// then:
(
var addressEnds, addresses;
addressEnds = [228, 240, 212, 175];

WarteRaum2("adc", 0, addressEnds);

addresses = addressEnds.collect({ |a| NetAddr("130.149.50" ++ a, 57110) });
r = Router(\route, s.addr, clientID: 0).addr_(addresses);
p = ProxySpace.push(r);
)

// tests
~out.play; 

~out = { SinOsc.ar(Rand(300, 2000), 0, 0.3) };


~out = { RLPF.ar(Saw.ar(~a.kr,  0.2), 1000) };

~out = { LFPulse.kr(20) * SinOsc.ar(~a.kr * 3, 0, 0.2) };
~a = 51.midicps;
~a.fadeTime = 1;
~a = { SinOsc.kr(100, 0, 30, 400) };



~otto =  {SinOsc.ar }
~otto.play;



Link to this Page