We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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);
The text was updated successfully, but these errors were encountered:
I think this is related to #18 A lot of communication back and forth happens behind the scenes in Ndef.
Sorry, something went wrong.
No branches or pull requests
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.
Whereas the following works fine:
The text was updated successfully, but these errors were encountered: