Skip to content

Instantly share code, notes, and snippets.

@nickodell
Created July 22, 2012 18:01
Show Gist options
  • Save nickodell/3160520 to your computer and use it in GitHub Desktop.
Save nickodell/3160520 to your computer and use it in GitHub Desktop.
arduino blink
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
dititalWrite(13, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment