

The 3mm Red LED (Light-Emitting Diode) is a compact and efficient electronic component that emits red light when an electric current flows through it. It is widely used in various applications due to its small size, low power consumption, and long lifespan. Commonly, it serves as an indicator light in electronic devices, status displays, and decorative lighting.








Below are the key technical details of the 3mm Red LED:
| Parameter | Value |
|---|---|
| Forward Voltage (Vf) | 1.8V to 2.2V |
| Forward Current (If) | 20mA (typical) |
| Maximum Current (If max) | 30mA |
| Wavelength | 620nm to 630nm (red light) |
| Viewing Angle | 20° to 30° |
| Operating Temperature | -40°C to +85°C |
| Package Size | 3mm (diameter) |
The 3mm Red LED has two pins:
| Pin | Description |
|---|---|
| Anode (+) | The longer pin, connected to the positive terminal of the power supply or circuit. |
| Cathode (-) | The shorter pin, connected to the negative terminal or ground. |
Determine the Resistor Value: To prevent damage to the LED, always use a current-limiting resistor in series with it. The resistor value can be calculated using Ohm's Law: [ R = \frac{V_{supply} - V_f}{I_f} ]
For example, if (V_{supply} = 5V) and (V_f = 2V), the resistor value is: [ R = \frac{5V - 2V}{0.02A} = 150\Omega ]
Connect the LED:
Test the Circuit: Power the circuit and observe the LED emitting red light.
The 3mm Red LED can be easily interfaced with an Arduino UNO for simple projects like blinking an LED. Below is an example code:
// Example: Blink a 3mm Red LED using Arduino UNO
// Connect the anode of the LED to pin 13 (via a 220-ohm resistor)
// Connect the cathode of the LED to GND
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
LED Does Not Light Up:
LED Burns Out Quickly:
Dim Light Output:
Flickering LED:
By following these guidelines, you can effectively use the 3mm Red LED in your projects and ensure reliable performance.