Created
December 23, 2014 01:19
-
-
Save jedp/57b0a71986cf2879ce9b to your computer and use it in GitHub Desktop.
Connecting the eTape to the Arduino
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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