Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ConradIrwin/ce65c8517ddf2eea38a048697d820080 to your computer and use it in GitHub Desktop.

Select an option

Save ConradIrwin/ce65c8517ddf2eea38a048697d820080 to your computer and use it in GitHub Desktop.
int firstTime = 1;
while (...) {
if (firstTime) {
firstTime = 0;
} else {
// take reading here.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment