diff options
author | piernov <piernov@piernov.org> | 2015-05-05 23:00:20 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2015-05-05 23:00:20 +0200 |
commit | a111b56e1b367fada78b56963aa6f05cbd59e431 (patch) | |
tree | a56c30d0eea5de9616f70a6a4b00043360fc829a /robofactor-theremin/src | |
download | arduino-projects-master.tar.gz arduino-projects-master.tar.bz2 arduino-projects-master.tar.xz arduino-projects-master.zip |
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 |