Skip to main content

LEDs

Overview

An LED is a diode (a component that attempts to let current flow only one way through it) that emits light when voltage is applied to it. On a circuit diagram, it looks like a Diode with two arrows (to indicate emitting photons) pointing away from it:

LED Circuit Symbol

Because it is a diode, it only works when a voltage is applied one way. For this reason, LEDs usually have one lead longer (the Cathode) than the other (the Anode). The cathode (longer leg) indicates that it should be hooked to the positive (+) side of a circuit.

Types of LEDs

LEDs are an incredibly common component that come in a variety of packages here are just a few:

Some LED Packages

The above shows, starting from the left, Red, Green, Yellow, Blue, RGB, Infrared, Bar LED (actually 10 independent LEDs in a single package) and a Seven Segment display with decimal point.

LED Characteristics

LEDs have two fundamental properties that the electronics designer should take into consideration, namely the forward voltage (Vf) and the maximum current (Ifmax) it can conduct. Typical values for VF and Ifmax are:

ColorVfIfmax
Red1.8V15mA - 20mA
Green2.1V20ma - 30mA
Blue3.4V - 3.6 V20mA
Yellow2.0V15mA
White1.9V - 2.4V30mA

These values may vary between suppliers and the data sheet for the component purchased will provide the appropriate values.

Forward Voltage

LEDs require a minimum voltage drop across the LED in order for it to open it's PN-gate and light up. This threshold is called the forward voltage (Vf). However once that voltage is met, there is a limited operating range of voltage that is safe for the LED.

Maximum Current

Maximum current (Ifmax) rating is the maximum current that can flow through the diode without burning out the component. Lower currents can be applied, these will just result in a dimmer output from the LED. Exceeding the maximum current rating for an LED by very much will usually burn out an LED quite quickly.

LED Colors

LEDs are available in a variety of colors, the most common of which are red, green, yellow, white and blue.

RGB (Red, Green and Blue) LEDs are capable of displaying a wide variety of colors. These LEDs are actually three LEDs, one red, one green and one blue in a single package (see the LED with four legs in the above image). The wide variety of colors they are capable of displaying comes from the intensity of each of the three LEDs.

LEDs can also emit light in the infrared spectrum. These LEDs are used in remote controls for devices such as televisions and cameras.

LED Power

LEDs are extremely efficient and have a wide variety of uses. Consumer electronics and hobbyist projects use LEDs to indicate the status of a system, if the power on, if the circuit connected to a network, etc.

Higher power LEDs are used in modern-day lighting. Such applications often require the use of a heatsink in order to prevent the LED from destroying itself through overheating.

Limiting Current

LEDs are extremely efficient light generators because they convert currently directly into photons. As such, it typically doesn't take very much current to power them. Too much current (exceeding Ifmax), and they burn out.

Because of this, the current that drives an LED is typically limited by one of two methods:

Construction and Physics

An LED is actually an exotic mix of materials that result in a PN junction. Normally, electric current flowing through the LED causes it to emit light. However, photons hitting the PN junction can also cause a tiny current flow and, as Forrest Mims shows here, you can detect this current and use the LED as a light sensor.

Netduino.Foundation

Netduino.Foundation includes a number of classes that make driving LEDs easy.

PwmLed Class

The PwmLed class represents an LED whose voltage (and brightness) is controlled by the duty-cycle of a PWM signal. Can be used both with LEDs that have been current limited with in-series resistors, or LEDs without resistors.

RgbPwmLed Class

The RgbPwmLed class represents an RGB LED whose color is controlled by the duty-cycle of three PWM signals. Can be used both with LEDs that have been current limited with in-series resistors, or LEDs without resistors.

TypicalForwardVoltage Class

The TypicalForwardVoltage class defines typical forward voltages for LEDs. Useful when creating a PwmLed or RgbPwmLed to limit the maximum PWM duty cycle to an average voltage that won’t burn out the LED.

Digital LEDs

In recent years a number of digital RGB LEDs have become available. These products are RGB LEDs in combination with a small current controller IC. The most prevalent of these are:

These devices are available as single units as well as flexible strips, straight PCB and full or quarter circular PCBs.

The driver in the WS8211 LEDs requires precise timing control in order to be able to set the colour of the LED. The APA102 is more forgiving as this uses a basic serial protocol (data and clock only). The APA102 chips are better suited to the Netduino.

Further Information

LED on Wikipedia