Created
July 8, 2016 17:13
-
-
Save jongio/0ba2aeedb93516074f385383ebc1b57b 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(0, OUTPUT); | |
| } | |
| void loop() { | |
| digitalWrite(0, HIGH); | |
| delay(500); | |
| digitalWrite(0, LOW); | |
| delay(500); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment