Skip to content

Instantly share code, notes, and snippets.

@ghalfacree
Created January 13, 2017 22:45
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 ghalfacree/5aa494d73393f7479d52bd5c35862170 to your computer and use it in GitHub Desktop.
Save ghalfacree/5aa494d73393f7479d52bd5c35862170 to your computer and use it in GitHub Desktop.
/*
Timing Accuracy Test
*/
unsigned long time;
void setup() {
Serial.begin(9600);
}
void loop() {
time = micros();
Serial.println(time);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment