All tutorials

1 · First steps

Blink an LED

Beginner10 min

Goal

Turn an LED on pin 13 on and off every second.

Why it matters

This is the “Hello World” of electronics: it proves the board, the code and the wiring all work.

Steps

  1. 01Drop an Arduino UNO, a 220 Ω resistor and an LED on the canvas.
  2. 02Set the LED pin to 13 and wire it through the resistor.
  3. 03Call pinMode(13, OUTPUT) inside setup().
  4. 04Alternate digitalWrite(13, HIGH/LOW) with delay(1000) inside loop().

This tutorial runs inside the Circuitly simulator: your wiring and your code are checked automatically at every step.

Next tutorials