Skip to content

Instantly share code, notes, and snippets.

@jedp
Created December 23, 2014 01:19
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 jedp/57b0a71986cf2879ce9b to your computer and use it in GitHub Desktop.
Save jedp/57b0a71986cf2879ce9b to your computer and use it in GitHub Desktop.
Connecting the eTape to the Arduino
#define ETAPE A0
float resistance;
void setup(void) {
Serial.begin(9600);
}
void loop(void) {
resistance = analogRead(ETAPE);
Serial.println(resistance);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment