Skip to content

Instantly share code, notes, and snippets.

@alexastrum
Last active July 29, 2020 18:44
Show Gist options
  • Save alexastrum/cb024bfab760699688f89f0073e0773a to your computer and use it in GitHub Desktop.
Save alexastrum/cb024bfab760699688f89f0073e0773a to your computer and use it in GitHub Desktop.
void blinkLED(int duration) {
digitalWrite(LED_BUILTIN, HIGH);
delay(duration);
digitalWrite(LED_BUILTIN, LOW);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment