Created
October 17, 2016 17:14
-
-
Save Mango-kid/575aaae357ac4e8dda8f7f720f6d7ec5 to your computer and use it in GitHub Desktop.
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(2, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(2, HIGH); | |
delay(1000); | |
digitalWrite(2, LOW); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment