Skip to content

Instantly share code, notes, and snippets.

@halferty
Created April 9, 2018 05:41
Show Gist options
  • Save halferty/70621e27819e9eca6942d05031ac0503 to your computer and use it in GitHub Desktop.
Save halferty/70621e27819e9eca6942d05031ac0503 to your computer and use it in GitHub Desktop.
arduino leonardo pro mini blink LED
void setup() {
pinMode(17, OUTPUT);
}
void loop() {
digitalWrite(17, HIGH);
delay(100);
digitalWrite(17, LOW);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment