Fading LED With Arduino Analog Output in Tinkercad

Let’s learn to adjust an LED’s brightness using one of the Arduino’s analog outputs. You’ve probably already learned how to use Arduino’s digital i/o pins to send HIGH and LOW signals to an LED, but some of these pins are capable of simulating a signal somewhere in between. These pins are labeled on the Arduino Uno with tildes (~) next to the pin number. We’ll connect an LED to one of these special pins and compose a simple program to slowly fade the LED brighter and dimmer.

You can follow along virtually using Tinkercad Circuits.You can even view this lesson from within Tinkercad if you like! Explore the sample circuit or build your own in a new circuit workplane. Click “Start Simulation” to watch the LED fade. You can use the simulator any time to test your circuits. Tinkercad Circuits is a free browser-based program that lets you build and simulate circuits. It’s perfect for learningteaching, and prototyping.

Find this circuit on Tinkercad

If you want to follow along with your physical Arduino Uno (or compatible) board, you’ll also need a USB cable and a computer with the free Arduino software (or plugin for the web editor) installed, a breadboard, an LED, resistor (any one from 100-1K ohms will do), and some breadboard wires.

Step 1: Breadboard LED Circuit

The LED is connected in series with a resistor between Arduino pin 9 and ground. Remember that the solderless breadboard rows are connected inside, so you can plug in components and wires to make quick temporary connections.

You’ll see the following connections:

  • Breadboard power (+) and ground (-) rails to Arduino 5V and ground (GND), respectively
  • LED cathode (negative, shorter leg) to one leg of a resistor (anywhere from 100-1K ohms is fine)
  • Other resistor leg to ground
  • LED anode (positive, longer leg) to Arduino pin 9

Step 2: Build Brightness Adjustment Code With Blocks

Click Start Simulation to watch the LED fade brighter and dimmer.

Let’s go over the simple program we’re using to fade the LED, which can be built in code blocks or composed using the Arduino programming language. Click Code Editor to open the code blocks editor.

Start with a control block that counts. Set it to count up by five. Click the dropdown next to “for” and select “rename variable…”, then rename it to “brightness”. Adjust the “from” and “to” values to 0 and 255, respectively.

Inside the counting loop, add an output block to set one of the special pins, and adjust it to pin 9. Navigate to Variables and drag the brightness block to the output block to set pin 9 to the current value of brightness, which changes over the course of the counting loop.

Add a wait block, and set it to 30 milliseconds. This gives time for the light to shine at each brightness level so you have time to see it before it changes. The duration of this block can be changed to slow down or speed up the fading effect.

The counting loop you created fades the LED from off to all the way on. To fade the LED back off again, we have to create another counting loop. Either drag a new counting loop into the editor, or duplicate this one, and this time change it to count down, start with 255, and go down to zero.

Step 3: Brightness Adjustment Arduino Code Explained

In the code text editor, you can see the Arduino code generated by the code blocks:

/*
  Fade
  This example shows how to fade an LED on pin 9
  using the analogWrite() function.

  The analogWrite() function uses PWM, so if  you
  want to change the pin you're using, be  sure to
  use another PWM capable pin. On most  Arduino,
  the PWM pins are identified with   a "~" sign,
  like ~3, ~5, ~6, ~9, ~10 and ~11.
*/

This first section is a comment, describing what the program does. We’ll define and explore PWM in the next steps.

int brightness = 0;

void setup()
{
  pinMode(9, OUTPUT);
}

The main body of the program starts out by creating a variable called brightness and sets it equal to zero, then inside the setup() pin 9 is initialized as an output.

void loop()
{
  for (brightness = 0; brightness <= 255; brightness += 5) {
    analogWrite(9, brightness);
    delay(30); // Wait for 30 millisecond(s)
  }
  for (brightness = 255; brightness >= 0; brightness -= 5) {
    analogWrite(9, brightness);
    delay(30); // Wait for 30 millisecond(s)
  }
}

The program’s loop uses two for loops to count up from 0 to 255 by increments of 5. The analogWrite() function takes two arguments: the Arduino pin number (9 in our case), and a value between 0 (off) and 255 (all the way on).

To program your physical Arduino Uno, copy the code from the window and paste into an empty Arduino sketch, or click Download Code and open the resulting file using the Arduino software.

Plug in and upload the sketch to your Arduino Uno board and observe your LED fade on and off.

Step 4: Fade Circuit Starter

This circuit is also available as a circuit starter. You can use this circuit starter anytime you want to fade an LED.

Grab this circuit and code combo any time using the starter available in the components panel (dropdown menu -> Starters -> Arduino).

Scroll to find the Arduino starter labeled Fade, and double click it to add it to the workplane (you can also click and drag instead).

Notice how the resistor in this version is “upstream” of the LED, connected between power and the LED instead of the LED and ground. These two circuits both make the same connections, linking up the LED to a signal pin and ground, through a current limiting resistor, which will function on either side of the LED.

Step 5: Pulse Width Modulation

The Arduino board is only capable of generating digital signals (HIGH and LOW), but analogWrite(); simulates the appearance of brightnesses between on and off using pulse width modulation (PWM). The LED flashes on and off very quickly, and your eye interprets a dimmer light. The ratio of time the LED spends on vs. off determines how bright or dim the LED appears.

Pulse width modulation (PWM) creates an oscillating digital signal, alternately driven high and low in a repeating pattern. Each high to low to high period of time is called a cycle.

You can see an oscillating digital signal on the oscilloscope like the animation above.

Notice that for each cycle, the width of the HIGH and LOW portions of the graph are changing, hence the term pulse width modulation, or PWM for short.

Identify the other digital pins on the Arduino Uno capable of PWM, marked with a ~: 3, 5, 6, 9, 10, and 11.

Step 6: Build a Physical Arduino Circuit (Optional)

Optionally use your physical Arduino Uno to build the breadboard circuit according to the diagram. The resistor can go in either orientation because resistors aren’t polarized, unlike LEDs.

To program your physical Arduino Uno, you’ll need to install the free software (or plugin for the web editor), then open it up.

Wire up the Arduino Uno circuit by plugging in components and wires to match the connections shown in the Tinkercad diagram. For a more in-depth walk-through on working with your physical Arduino Uno board, check out the free Instructables Arduino class (a similar circuit is described in the second lesson).

Copy the code from the Tinkercad Circuits code window and paste it into an empty sketch in your Arduino software, or click the download button (downward facing arrow) and open the resulting file using Arduino.

Plug in your USB cable and select your board and port in the software’s Tools menu.

For More Details: Fading LED With Arduino Analog Output in Tinkercad

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top