Created
January 20, 2019 22:37
-
-
Save blister/322f8ca1f1d242adcce2aaa739ea95d7 to your computer and use it in GitHub Desktop.
This file contains 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 blink(int blinks) { | |
for ( int i = 0; i <= blinks; i++ ) { | |
digitalWrite(led, HIGH); | |
delay(250); | |
digitalWrite(led, LOW); | |
delay(250); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment