Arduino Blinking Light

Yeah my first Ardiuno Blinking Light project done, check it out. Place LED in breadboard, connect wires to Arduino board, add a few lines of code, seen below:

int ledPin = 13;
void setup()
{
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin,HIGH);
delay(1000);
digitalWrite(ledPin, LOW);
delay(1000);
}

And you have a blinking light…AMAZING…maybe just for geeks!!!:)

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s