

A yellow light-emitting diode (LED) is a semiconductor device that emits yellow light when an electric current flows through it. This specific LED features two long pins, making it easy to integrate into breadboards and circuit boards. It is commonly used for visual indicators, such as power or status signals, in electronic circuits. Its bright yellow light is ideal for applications requiring clear visibility.








Below are the key technical details for the yellow two-pin LED:
| Parameter | Value |
|---|---|
| Forward Voltage (Vf) | 2.0V to 2.2V |
| Forward Current (If) | 20mA (typical) |
| Maximum Current (Imax) | 30mA |
| Wavelength | 590nm (yellow light) |
| Viewing Angle | 20° to 30° |
| Polarity | Anode (+) and Cathode (-) |
| Pin Length | Anode: Longer pin, Cathode: Shorter pin |
| Pin | Name | Description |
|---|---|---|
| Long Pin | Anode (+) | Connect to the positive terminal of the power source. |
| Short Pin | Cathode (-) | Connect to the negative terminal or ground (GND). |
Below is an example of how to connect the yellow LED to an Arduino UNO and control it using code:
// This code blinks a yellow LED connected to pin 13 of the Arduino UNO.
// Define the pin where the LED is connected
const int ledPin = 13;
void setup() {
// Set the LED pin as an output
pinMode(ledPin, OUTPUT);
}
void loop() {
// Turn the LED on
digitalWrite(ledPin, HIGH);
delay(1000); // Wait for 1 second
// Turn the LED off
digitalWrite(ledPin, LOW);
delay(1000); // Wait for 1 second
}
LED Does Not Light Up
LED is Dim
LED Burns Out Quickly
LED Flickers
Q: Can I use this LED with a 3.3V or 5V power supply?
A: Yes, but you must use an appropriate resistor to limit the current. For a 5V supply, a 150Ω to 220Ω resistor is recommended. For a 3.3V supply, a 100Ω resistor is suitable.
Q: Can I connect multiple LEDs in series?
A: Yes, but ensure the total forward voltage of the LEDs does not exceed the supply voltage. Use a resistor to limit the current.
Q: How do I calculate the resistor value for multiple LEDs in parallel?
A: Each LED should have its own resistor. Calculate the resistor value for each LED individually based on the supply voltage and forward voltage.
Q: What happens if I reverse the polarity?
A: The LED will not light up, but it will not be damaged unless excessive reverse voltage is applied.
By following this documentation, you can effectively use the yellow two-pin LED in your electronic projects!