Created
August 16, 2019 20:13
-
-
Save pknowledge/f0cc4aa28d9a79d2ec262c3b36c2b31f to your computer and use it in GitHub Desktop.
Setting Up the Circuit For Arduino Uno With Breadboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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