Skip to content

Instantly share code, notes, and snippets.

@boxalljohn
Created July 15, 2013 04:17
Show Gist options
  • Save boxalljohn/5997466 to your computer and use it in GitHub Desktop.
Save boxalljohn/5997466 to your computer and use it in GitHub Desktop.
// Example 4.1
void setup()
{
pinMode(12, OUTPUT);
}
void loop()
{
digitalWrite(12, HIGH);
delay(500);
digitalWrite(12, LOW);
delay(2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment