Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ndef not functional remotely #19

Open
jreus opened this issue Sep 6, 2016 · 1 comment
Open

Ndef not functional remotely #19

jreus opened this issue Sep 6, 2016 · 1 comment

Comments

@jreus
Copy link

jreus commented Sep 6, 2016

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);
@jreus jreus changed the title Ndef not functional Ndef not functional remotely Sep 6, 2016
@sensestage
Copy link

I think this is related to #18
A lot of communication back and forth happens behind the scenes in Ndef.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants