Created
February 1, 2019 18:54
-
-
Save bboyho/7c4a85d7ffd95bb2319f07b1729120e8 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
int ledPin = 13; | |
void setup() { | |
pinMode(ledPin, OUTPUT); | |
for (int i = 0; i < 3; i++) { | |
digitalWrite(ledPin, HIGH); | |
delay(50); | |
digitalWrite(ledPin, LOW); | |
delay(50); | |
} | |
} | |
void loop() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment