

A Light Emitting Diode (LED) is a semiconductor device that emits light when an electric current passes through it. LEDs are energy-efficient, have a long lifespan, and are commonly used for indicators, displays, and lighting. They are available in various colors, sizes, and brightness levels, making them versatile for a wide range of applications.








Below are the general technical specifications for a standard 5mm LED. Note that specifications may vary depending on the specific type and manufacturer.
| Parameter | Value |
|---|---|
| Forward Voltage (Vf) | 1.8V - 3.3V (varies by color) |
| Forward Current (If) | 10mA - 20mA |
| Maximum Reverse Voltage | 5V |
| Power Dissipation | 60mW |
| Viewing Angle | 20° - 60° |
| Wavelength (Color) | 400nm - 700nm (visible light) |
| Lifespan | 50,000+ hours |
An LED typically has two pins:
| Pin | Description |
|---|---|
| Anode (+) | The longer leg of the LED. Connect this to the positive terminal of the circuit. |
| Cathode (-) | The shorter leg of the LED. Connect this to the negative terminal or ground. |
Determine the Resistor Value: LEDs require a current-limiting resistor to prevent damage. Use Ohm's Law to calculate the resistor value: [ R = \frac{V_{supply} - V_f}{I_f} ]
Connect the LED:
Test the Circuit: Power the circuit and observe the LED emitting light. If it does not light up, check the polarity and connections.
Below is an example of how to connect and control an LED using an Arduino UNO.
// LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
const int ledPin = 13; // Define the pin number for the LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
LED Does Not Light Up:
LED Burns Out:
LED is Dim:
Flickering LED:
Q: Can I connect an LED directly to a battery?
A: No, connecting an LED directly to a battery without a resistor can cause excessive current flow, damaging the LED.
Q: How do I choose the right resistor for my LED?
A: Use the formula (R = \frac{V_{supply} - V_f}{I_f}) to calculate the resistor value. For example, with a 5V supply, a 2V LED, and 20mA current, the resistor value is (R = \frac{5 - 2}{0.02} = 150\Omega).
Q: Can I use an LED with an AC power source?
A: LEDs are designed for DC operation. To use them with AC, you need a rectifier circuit to convert AC to DC.
Q: What happens if I reverse the polarity of an LED?
A: Reversing the polarity may prevent the LED from lighting up. Prolonged reverse voltage can damage the LED. Always connect the anode to the positive terminal and the cathode to ground.