Skip to content

Instantly share code, notes, and snippets.

@taesamja
Created September 5, 2016 01:49
Show Gist options
  • Save taesamja/0d85815f98b0c5a66b27d3aa5cad5cd7 to your computer and use it in GitHub Desktop.
Save taesamja/0d85815f98b0c5a66b27d3aa5cad5cd7 to your computer and use it in GitHub Desktop.
const int led = 9;
void setup() {
pinMode(led, OUTPUT);
}
void setup() {
digitalWrite(led, HIGH);
delay(100);
digitalWrite(led, LOW);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment