Skip to content

Instantly share code, notes, and snippets.

@jgrahamc
Created October 4, 2012 14:29
Show Gist options
  • Save jgrahamc/3833872 to your computer and use it in GitHub Desktop.
Save jgrahamc/3833872 to your computer and use it in GitHub Desktop.
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delay(250);
digitalWrite(13, LOW);
delay(250);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment