Created
January 13, 2017 22:45
-
-
Save ghalfacree/5aa494d73393f7479d52bd5c35862170 to your computer and use it in GitHub Desktop.
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
/* | |
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