The first circuit in the Inventor’s Guide is a simple one that turns on and off a single LED repeatedly. I used:
- 1 x Arduino Duemilanove
- 1 x breadboard
- 1 x 5mm Yellow LED
- 1 x 330 ohm resistor
- 3 x wires (1 each for gnd, 5v and pin 13)
You can download a copy of the breadboard layout sheet here, or watch an assembly video here.
This was a good introductory circuit to cut my teeth with correctly wiring the parts together, as well as uploading the C program to the Arduino from the IDE.

{ 2 } Comments
I don’t understand why we need the red wire connected to the 5V output. I disconnected it and the sample still works fine, pin 13 is outputting the 5V on digitalWrite(13, HIGH) … Am I missing something ?
Hi Selim, it looks like a good breakdown of the reason for this is here.
Depending on what model of Arduino you have, it can potentially output enough current from a digital pin to power an LED. I’m able to duplicate this same behaviour you are experiencing with my own Duemilanove. I suspect that the 5V input is part of the circuit diagram to demonstrate best-practices, as well as for the case where pin 13 acts as a sink instead of a source. Thanks for the comment, that was really interesting to investigate
Post a Comment