Skip to content

Instantly share code, notes, and snippets.

@jerog1
Created March 31, 2014 17:43
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 jerog1/9897913 to your computer and use it in GitHub Desktop.
Save jerog1/9897913 to your computer and use it in GitHub Desktop.
int knob0;
//int knob1;
void setup() {
// initialize the serial communication:
Serial.begin(9600);
}
void loop() {
knob0=analogRead(A0);
//knob1=analogRead(A1);
Serial.print(knob0);
// Serial.print(",");
// Serial.println(knob1);
delay(.2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment