Blinking LED Using Arduino IDE

by TechnoFrost in Circuits > Arduino

190 Views, 0 Favorites, 0 Comments

Blinking LED Using Arduino IDE

Summer-Training-in-Arduino.jpg

Hi guys welcome to this instructable(which is also my first instructable)I hope you guys like this!!!

First of all get an arduino uno board.If you don't know about arduino then click here.This is the base of all projects.The first thing you need to learn is how to get an LED to blink.This explains it and in this you will also find the code which you can download.I would recommend knowing block programming first or having some experience with robotics before.So lets get started with the connections.

Supplies

Here's all you need:

1)Arduino Uno and cable

2)Computer windows 7 and up

3)Led and resistor(Optional)

4)Breadboard

Connection and Wiring

blinking led.jpg

There is a diagram for the connections.Its up to you whether you want to use a resistor or not.If you don't want to put an LED it is okay.You can also use the Onboard LED connected on pin number 13.

The Code

Screen shot.png
void setup() {
pinMode(13,OUTPUT);
} 
void loop() { 
digitalWrite(13,HIGH); 
delay(20); 
digitalWrite(13,LOW);
delay(20);
}

THE END

Downloads