Skip to content

Instantly share code, notes, and snippets.

@tekk
Created April 4, 2018 07:29
Show Gist options
  • Save tekk/5ba36e1145a80817c3c4a5013630f8e4 to your computer and use it in GitHub Desktop.
Save tekk/5ba36e1145a80817c3c4a5013630f8e4 to your computer and use it in GitHub Desktop.
void setup()
{
Serial.begin(115200);
}
void loop()
{
static unsigned long x = 0;
if (x++ % 100 == 0)
{
Serial.println("1 of 100!");
}
Serial.print(".");
}
@tekk
Copy link
Author

tekk commented Apr 4, 2018

Jardovi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment