Skip to content

Project 1.1.1: LED ON

Description This project shows how to turn on an LED using an Arduino Uno. It introduces basic circuit connections and simple Arduino programming.
Use case This project finds utility in basic signaling setups. For instance, it could be applied in an easier and basic lighting system, where LEDs turning on together provide ample brightness when someone enters a room.

Components (Things You will need)

LED Arduino Uno Arduino USB Cable Breadboard Jumper Wires

Building the circuit

Things Needed:

  • Arduino Uno = 1
  • Arduino USB cable = 1
  • Red LED = 1
  • Red jumper wires = 1
  • Blue jumper wires = 1
  • 220Ω resistor

Mounting the component on the breadboard

Step 1: Place the LED on the breadboard. The longer leg is the positive pin, while the shorter leg is the negative pin.

LED fixed on breadboard.

NB: Make sure you identify where the positive pin (+) and the negative pin (-) is connected to on the breadboard. The longer pin of the LED is the positive pin and the shorter one, the negative PIN.

WIRING THE CIRCUIT

Things Needed:

  • Red male-male-to-male jumper wires = 1
  • Blue male-to-male jumper wires = 1

Step 2: Connect the positive leg of the LED to pin 6 on the Arduino through a 220Ω resistor. Connect the negative leg of the LED to GND on the Arduino using a jumper wire.

LED fixed on breadboard

PROGRAMMING

Step 1: Open your Arduino IDE. See how to set up here: Getting Started.

Step 2: Type pinMode (6, OUTPUT);

Pinmode decalration.

Step 3: Type digitalWrite (6, HIGH);

Pinmode decalration.

as shown in the picture above.

NB: pinMode will help the Arduino board to decide which port should be activated. The code below will turn off the light bulb.

Step 4: Save your code. See the Getting Started section

Step 5: Select the arduino board and port See the Getting Started section:Selecting Arduino Board Type and Uploading your code.

Step 6: Upload your code.

CONCLUSION

This project helps learners understand how to connect and control an LED using Arduino. It is a simple introduction to electronic circuits and programming.