added libraries and clean up

This commit is contained in:
Lukas
2013-02-14 02:59:15 +01:00
parent 52975c9dba
commit d94fed811b
16 changed files with 528 additions and 162 deletions
+9
View File
@@ -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
}