This commit is contained in:
Lukas
2013-05-14 22:03:11 +02:00
parent 732adb8d63
commit 38c35e3e6a
14 changed files with 282 additions and 33 deletions
@@ -0,0 +1,9 @@
void setup() {
Serial.begin(9600);
}
void loop() {
int val = analogRead(5);
Serial.println(val);
delay(100); // we have to make a delay to avoid overloading the serial port
}