Skip to content

Instantly share code, notes, and snippets.

@beefy
Created August 15, 2016 21:47
Show Gist options
  • Save beefy/51cf92f909e3ed97c73ab0592a260223 to your computer and use it in GitHub Desktop.
Save beefy/51cf92f909e3ed97c73ab0592a260223 to your computer and use it in GitHub Desktop.
arduino pulse
void setup()
{
}
void loop()
{
digitalWrite(9,HIGH);
delay(100);
digitalWrite(9,LOW);
delay(900);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment