added libraries and clean up
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user