Created
April 9, 2018 05:41
-
-
Save halferty/70621e27819e9eca6942d05031ac0503 to your computer and use it in GitHub Desktop.
arduino leonardo pro mini blink LED
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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