Skip to content

Instantly share code, notes, and snippets.

@fumiya-kume
Created January 3, 2016 18:00
Show Gist options
  • Save fumiya-kume/3f76df8720bad7748c35 to your computer and use it in GitHub Desktop.
Save fumiya-kume/3f76df8720bad7748c35 to your computer and use it in GitHub Desktop.
Arduino
#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