Created
January 3, 2016 18:00
-
-
Save fumiya-kume/3f76df8720bad7748c35 to your computer and use it in GitHub Desktop.
Arduino
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
#define LED 13 | |
void setup() { | |
pinMode(LED, OUTPUT); | |
} | |
void loop() { | |
delay(1000); | |
digitalWrite(LED,HIGH); | |
delay(1000); | |
digitalWrite(LED,LOW); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment