[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] arduino



Thanks Artem, that works perfectly.
Maybe could be added to the Arduino helpfile

Best

-a-


On 3 Dec 2008, at 05:27, Артём Попов wrote:


Ah,  it's like a responder on the SC side?
Could you post a more verbose example?


An example for a potentiometer (variable resistor) would look like:

// Arduino:
#include <SimpleMessageSystem.h>
int val1 = 0;

void setup() { Serial.begin(9600); }
void loop()
{
  val1 = analogRead(0);
  messageSendInt(val1); // repeat for more sensor values
  messageEnd();
  delay(50);
}

//SuperCollider:
p = ArduinoSMS("/dev/ttyUSB0", 9600); // matches 9600 in setup() above
(
p.action = { |... msg|
//    msg.postln;
    ~a1 = msg[0] / 1024; (convert 0..1024 to 0..1)
    TempoClock.default.tempo = ~a1 * 2 + 1;
};
)
p.close;

_______________________________________________
sc-users mailing list


--------------------------------------------------
Andrea Valle
--------------------------------------------------
CIRMA - DAMS
Università degli Studi di Torino
--------------------------------------------------

- La Repubblica promuove lo sviluppo della cultura e la ricerca scientifica e tecnica.
- La Repubblica detta le norme generali sull'istruzione ed istituisce scuole statali per tutti gli ordini e gradi.
(Costituzione della Repubblica Italiana, art. 9 e 33)