forked from supercollider/supercollider
-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Ndefs seem also not to work when coding remotely on the Bela.
The following code doesn't throw any errors, but produces no signal at either output.
s = Server.new('belaServer', NetAddr("192.168.7.2", 57110));
s.initTree;
s.startAliveThread;
Ndef(\sintone -> 'belaServer', {
AnalogOutput.ar( DC.ar( 0 ), SinOsc.ar(440).range(0.0, 0.5) ); // output channel must be audio rate
Out.ar( 0, SinOsc.ar(440) );
}).play;
Whereas the following works fine:
x = {
AnalogOutput.ar( DC.ar( 0 ), SinOsc.ar(440).range(0.0, 0.5) );
Out.ar( 0, SinOsc.ar(440) );
}.play(target: s);