You need:
1) Arduino board.
2) Bread board.
3) Wires.
4) LED(s).
5) Computer.
6) Arduino compiler.
7) USB cable to upload your code on arduino board.
Well, let's start with schematics below. I've done it by myself, it will explain you how to connect all components together:
I marked wires with green color. And LED(s) with yellow. One very meaningful thing: LEDs have got short and long wires! You need to connect GND to the short one, and digital pin(s) to the long one!
After you have connected all components you need to write a code, which your arduino board will execute. So, let's do it!
#define LED1 13 //LED connected to digital pin 13
//if you have more than one LED,
// you need to declare and initialize another variables
#define LED2 12 //LED connected to digital
#define LED3 11 //LED connected to digital pin 11
void setup() //setup function
{
pinMode(LED1, OUTPUT); //set the digital pin as output
//for first LED
//if you have more than one LED,
// you need to set another digital pins as output
pinMode(LED2, OUTPUT); //set the digital pin as output
//for second LED
pinMode(LED3, OUTPUT); //set the digital pin as output
//for third LED
}
void loop() //loop function
{
digitalWrite(LED1, HIGH); //turns our first LED on
delay(1000); //waits for a second
//if you have more than one LED,
//you need to write a code for another LED(s)
digitalWrite(LED1, LOW); //turns our first LED off
digitalWrite(LED2, HIGH); //turns our second LED on
delay(1000); //waits for a second
digitalWrite(LED2, LOW); //turns our second LED off
digitalWrite(LED3, HIGH); //turns our third LED on
delay(1000); //waits for a second
digitalWrite(LED3, LOW); //turns our third LED off
}
Well, now we need to upload our code and that's it! To do it you need to connect you arduino board to your computer and press upload button, which you can see on the screenshot below.
If you have got some questions, don't be shy - write comments!