Skip to content

Instantly share code, notes, and snippets.

@nulltask
Created October 22, 2011 20:49
Show Gist options
  • Save nulltask/1306479 to your computer and use it in GitHub Desktop.
Save nulltask/1306479 to your computer and use it in GitHub Desktop.
p026
#define LED 13
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
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