Last active
November 18, 2017 14:44
-
-
Save h-sakano/ffc8e5c1c978cfda28dbb82a6f302780 to your computer and use it in GitHub Desktop.
初めてのArduino(Lチカまで) ref: https://qiita.com/h-sakano/items/ae57617f06a107bee3f3
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
int led = 13; | |
void setup() { | |
// put your setup code here, to run once: | |
pinMode(led, OUTPUT); | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: | |
digitalWrite(led, HIGH); | |
delay(1000); | |
digitalWrite(led, LOW); | |
delay(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment