Skip to content

Instantly share code, notes, and snippets.

@rockos
Created April 3, 2015 23:44
Show Gist options
  • Save rockos/c7532f1938fa2b720c52 to your computer and use it in GitHub Desktop.
Save rockos/c7532f1938fa2b720c52 to your computer and use it in GitHub Desktop.
#define MAX_DIGIT 3
int readData() {
char c[MAX_DIGIT] = "0";
for (int i = 0; i < MAX_DIGIT; i++ ) {
c[i] = Serial.read();
if (c[i] =='¥0')
break;
}
return atoi(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment