Skip to content

Instantly share code, notes, and snippets.

@RodrigoSC
Last active February 18, 2017 19:39
Show Gist options
  • Save RodrigoSC/125bb6a5cccbd4b1ab99535718c21c23 to your computer and use it in GitHub Desktop.
Save RodrigoSC/125bb6a5cccbd4b1ab99535718c21c23 to your computer and use it in GitHub Desktop.
#define LED_PIN 7
void setup() {
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN, HIGH);
delay(1000);
digitalWrite(LED_PIN, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment