Skip to content

Instantly share code, notes, and snippets.

@monpetit
Created May 19, 2015 05:31
Show Gist options
  • Save monpetit/d15258ee248bb585a65c to your computer and use it in GitHub Desktop.
Save monpetit/d15258ee248bb585a65c to your computer and use it in GitHub Desktop.
void setup()
{
DDRB |= (1 << 0);
while (1) {
PORTB ^= (1 << 0);
}
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment