diff options
Diffstat (limited to 'robofactor-theremin/src')
-rw-r--r-- | robofactor-theremin/src/sketch.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/robofactor-theremin/src/sketch.cpp b/robofactor-theremin/src/sketch.cpp new file mode 100644 index 0000000..f6c5847 --- /dev/null +++ b/robofactor-theremin/src/sketch.cpp @@ -0,0 +1,15 @@ +#include <Arduino.h> + +// the setup routine runs once when you press reset: +void setup() { + Serial.begin(9600); // Initialise le port série à 9600 bauds +} + +// the loop routine runs over and over again forever: +void loop() { + int sensorValue = analogRead(A0); // Lit la valeur sur le pin A0 + Serial.print("["); // Envoie le caractère de début + Serial.print(sensorValue); // Envoie la valeur lue + Serial.println("]"); // Envoie le caractère de fin + delay(20); // Attend 20 millisecondes +}
\ No newline at end of file |