Skip to content

Instantly share code, notes, and snippets.

@isaiah7p
Created August 8, 2020 04:56
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 isaiah7p/92f811d72b966f2f8067e227fc5f33a0 to your computer and use it in GitHub Desktop.
Save isaiah7p/92f811d72b966f2f8067e227fc5f33a0 to your computer and use it in GitHub Desktop.
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(analogRead(A0));
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment