Skip to content

Instantly share code, notes, and snippets.

@houhr
Last active August 29, 2015 14:14
Show Gist options
  • Save houhr/3802c0e64426348a137f to your computer and use it in GitHub Desktop.
Save houhr/3802c0e64426348a137f to your computer and use it in GitHub Desktop.
void setup(){
Serial.begin(9600);
}
void loop(){
int sensorValue = analogRead(A0);
Serial.println(sensorValue);
delay(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment