Skip to content

Instantly share code, notes, and snippets.

@pknowledge
Created August 16, 2019 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pknowledge/f0cc4aa28d9a79d2ec262c3b36c2b31f to your computer and use it in GitHub Desktop.
Save pknowledge/f0cc4aa28d9a79d2ec262c3b36c2b31f to your computer and use it in GitHub Desktop.
Setting Up the Circuit For Arduino Uno With Breadboard
void setup()
{
pinMode(8,OUTPUT); // Set pin 8 is OUTPUT
}
void loop()
{
digitalWrite(8,HIGH);
delay(100);
digitalWrite(8,LOW);
delay(200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment