Skip to content

Instantly share code, notes, and snippets.

@giljr
Created June 27, 2018 02:28
Show Gist options
  • Save giljr/fd3e82a49842783b993dcf6e3365b11a to your computer and use it in GitHub Desktop.
Save giljr/fd3e82a49842783b993dcf6e3365b11a to your computer and use it in GitHub Desktop.
#include <LED.h>
LED led(13); // assign digital pin 13 to an LED
void setup() {
}
void loop() {
led.on();
delay(1000);
led.off();
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment