Skip to content

Instantly share code, notes, and snippets.

@osteele
Last active October 7, 2020 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save osteele/8ec22d013e471100cb0a7324f21727af to your computer and use it in GitHub Desktop.
Save osteele/8ec22d013e471100cb0a7324f21727af to your computer and use it in GitHub Desktop.
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("setup");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(analogRead(A0));
// Serial.println(100);
// Serial.println("loop");
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment