ChronopiumSilvestris
Member
Hi there!
I'm trying to use the OSC library to send OSC messages to SuperCollider, reading first 24 analog inputs with two multiplexers and then sending them this way:
OSCMessage msg("/cuerdas");
msg.add((int32_t)cuerda1); // cuerda1 is one of my analog readings
msg.send(SLIPSerial);
SLIPSerial.endPacket();
msg.empty();
but I'm having a problem:
when I listen to /dev/ttyACM0 from SuperCollider I get some sort of static noise, I guess it interferes with something else (I'm using an USB soundcard). So I decided to try a different serial port, but the Arduino IDE won't let me choose any other. Perhaps something to do with permissions?
I'm trying to use the OSC library to send OSC messages to SuperCollider, reading first 24 analog inputs with two multiplexers and then sending them this way:
OSCMessage msg("/cuerdas");
msg.add((int32_t)cuerda1); // cuerda1 is one of my analog readings
msg.send(SLIPSerial);
SLIPSerial.endPacket();
msg.empty();
but I'm having a problem:
when I listen to /dev/ttyACM0 from SuperCollider I get some sort of static noise, I guess it interferes with something else (I'm using an USB soundcard). So I decided to try a different serial port, but the Arduino IDE won't let me choose any other. Perhaps something to do with permissions?