Skip to content

Instantly share code, notes, and snippets.

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 synctam/8e6d8c6c21d458085dd8b1b8ae4ec3b7 to your computer and use it in GitHub Desktop.
Save synctam/8e6d8c6c21d458085dd8b1b8ae4ec3b7 to your computer and use it in GitHub Desktop.
void setup() {
Serial.begin(115200);
}
void loop() {
static int count = 0;
count++;
Serial.printf("count = %d\n", count);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment