Skip to content

Instantly share code, notes, and snippets.

@scottswaaley
Created August 3, 2016 17:01
Show Gist options
  • Save scottswaaley/27811ec74217db1f92b6abbc94343fe8 to your computer and use it in GitHub Desktop.
Save scottswaaley/27811ec74217db1f92b6abbc94343fe8 to your computer and use it in GitHub Desktop.
int i = 0;
while(i<10) {
Serial.print("I am on # ");
Serial.println(i);
i = i+1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment