Created
January 26, 2020 02:41
-
-
Save takataka5614/1681d133048a64898db36d674e152eb0 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 setup() { | |
pinMode(11, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(11, HIGH); | |
delay(1000); | |
digitalWrite(11, LOW); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment