summaryrefslogtreecommitdiffstats
path: root/robofactor-theremin/src/sketch.cpp
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2015-05-05 23:00:20 +0200
committerpiernov <piernov@piernov.org>2015-05-05 23:00:20 +0200
commita111b56e1b367fada78b56963aa6f05cbd59e431 (patch)
treea56c30d0eea5de9616f70a6a4b00043360fc829a /robofactor-theremin/src/sketch.cpp
downloadarduino-projects-a111b56e1b367fada78b56963aa6f05cbd59e431.tar.gz
arduino-projects-a111b56e1b367fada78b56963aa6f05cbd59e431.tar.bz2
arduino-projects-a111b56e1b367fada78b56963aa6f05cbd59e431.tar.xz
arduino-projects-a111b56e1b367fada78b56963aa6f05cbd59e431.zip
initial commitHEADmaster
Diffstat (limited to 'robofactor-theremin/src/sketch.cpp')
-rw-r--r--robofactor-theremin/src/sketch.cpp15
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