Skip to content

Instantly share code, notes, and snippets.

@monpetit
Created May 19, 2015 05:29
Show Gist options
  • Save monpetit/b0a0cce50b54325188e3 to your computer and use it in GitHub Desktop.
Save monpetit/b0a0cce50b54325188e3 to your computer and use it in GitHub Desktop.
const int pin = 8;
void setup()
{
pinMode(pin, OUTPUT);
while (1) {
digitalWrite(8, HIGH);
digitalWrite(8, LOW);
}
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment