- Edited
Seems like there's a problem reading digital inputs in SC?
I'm using a Salt with a Salt + expander, latest release of SC3 / SC plugins libs, and the bela-remote extension from: https://github.com/sensestage/bela-remote
I'm trying to control SC remotely through the SC IDE.
I ran scsynth
with this command:
scsynth -u 57110 -z 16 -J 8 -K 8 -G 16 -i 2 -o 2 -o 2 -B 0.0.0.0
And I wrote a small script in SC to test:
(
{
var tr3 = DigitalIn.kr(15);
Out.ar(0, tr3 * SinOsc.ar(440))
}.play;
)
When running this script, sometimes SC correctly gates the sine wave, but other times it seems to be reading that the pin is always HIGH (I get a solid tone).
Any ideas here?