Skip to content

Instantly share code, notes, and snippets.

@kgleeson
Created January 27, 2014 21:26
Show Gist options
  • Save kgleeson/8657636 to your computer and use it in GitHub Desktop.
Save kgleeson/8657636 to your computer and use it in GitHub Desktop.
int LED = D7;
void setup() {
pinMode(LED, OUTPUT);
}
void loop() {
digitalWrite(LED, HIGH);
delay(250);
digitalWrite(LED, LOW);
delay(250);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment