Stufin
Home Quick Cart Profile

3 mm Yellow LED (Pack of 10)

Buy Now

Component Description

3 mm Yellow LED (Pack of 10)

Overview

The 3 mm Yellow LED is a compact, high-brightness light-emitting diode (LED) designed for various electronic and IoT projects. This pack of 10 LEDs provides a reliable and cost-effective solution for indicating, signaling, and backlighting applications.

Functionality

  • Status indicators: Power-on, error, or alert indicators in electronic devices.
  • Backlighting: Illumination for LCD displays, keypad backlighting, or ambient lighting.
  • Signaling: Signal indicators, warning lights, or notification lights in IoT systems.
The 3 mm Yellow LED is a semiconductor device that emits yellow light when an electric current passes through it. Its primary function is to convert electrical energy into visible light, making it an essential component in numerous IoT devices, including

Key Features

  • Color: Yellow (d = 590 nm 20 nm)
  • Package: 3 mm (T-1 3/4) radial leaded package
  • Lens Type: Water-clear plastic lens
  • Diffusion Angle: 60 10
  • Peak Wavelength: 590 nm 20 nm
  • Luminous Intensity: 1000 mcd (typical) at 20 mA
  • Forward Voltage: 2.0 V (typical) at 20 mA
  • Reverse Voltage: 5.0 V (maximum)
  • Current Rating: 20 mA (maximum)
  • Operating Temperature: -40C to +85C
  • Storage Temperature: -40C to +100C
  • package of 10 pieces

Electrical Characteristics

| Parameter | Symbol | Min. | Typ. | Max. | Unit |

| --- | --- | --- | --- | --- | --- |

| Forward Voltage | VF | 1.8 | 2.0 | 2.2 | V |

| Reverse Voltage | VR | - | - | 5.0 | V |

| Forward Current | IF | - | 20 | 30 | mA |

| Reverse Current | IR | - | - | 10 | A |

Notes

  • The 3 mm Yellow LED is a polarized component and should be connected with respect to the anode (+) and cathode (-) leads.
  • The LED should be handled with care to prevent damage from electrostatic discharge (ESD).
  • The operating temperature range may affect the LED's performance and lifespan.

Applications

  • Arduino and Raspberry Pi projects
  • Home automation systems
  • Industrial control systems
  • Wearable devices
  • Robotics and drone projects
  • Automotive LED indicators
The 3 mm Yellow LED is suitable for various IoT applications, including

Ordering Information

Part Number

3mm-YLW-LED-10PK

Packaging

The 3 mm Yellow LED (Pack of 10) is shipped in a protective anti-static bag to prevent damage during transportation and storage.

Pin Configuration

  • 3 mm Yellow LED (Pack of 10) Component Documentation
  • Overview
  • The 3 mm Yellow LED is a standard through-hole LED component used for indicating purposes in various electronic circuits. This documentation explains the pinout and connection details of the LED.
  • Pinout
  • The 3 mm Yellow LED has two pins:
  • Pin 1: Anode (Positive Leg)
  • Function: The anode is the positive terminal of the LED.
  • Polarity: The anode is marked with a longer leg or a flat edge on the plastic casing.
  • Connection: Connect to the positive voltage source or the collector of a transistor (if used as a switch).
  • Pin 2: Cathode (Negative Leg)
  • Function: The cathode is the negative terminal of the LED.
  • Polarity: The cathode is marked with a shorter leg or a round edge on the plastic casing.
  • Connection: Connect to the negative voltage source or the emitter of a transistor (if used as a switch).
  • Connection Guide
  • To connect the 3 mm Yellow LED:
  • 1. Determine the polarity: Identify the anode (positive leg) and cathode (negative leg) by looking for the longer leg or flat edge (anode) and shorter leg or round edge (cathode) on the plastic casing.
  • 2. Connect the anode: Connect the anode (positive leg) to the positive voltage source or the collector of a transistor (if used as a switch).
  • 3. Connect the cathode: Connect the cathode (negative leg) to the negative voltage source or the emitter of a transistor (if used as a switch).
  • 4. Add a current-limiting resistor (optional): If you're connecting the LED directly to a voltage source, add a current-limiting resistor in series with the LED to prevent excessive current and potential damage.
  • 5. Verify the connection: Double-check the polarity and connections to ensure the LED is connected correctly.
  • Important Notes
  • Always follow proper safety precautions when working with electronics, including using protective gear and avoiding electrical shock hazards.
  • The 3 mm Yellow LED may have varying brightness and color intensity depending on the specific batch and manufacturer.
  • Be sure to check the datasheet or manufacturer's documentation for specific information on the LED's characteristics and recommended operating conditions.

Code Examples

Component Documentation: 3 mm Yellow LED (Pack of 10)
Overview
The 3 mm Yellow LED is a standard, low-power, and low-cost light-emitting diode (LED) component commonly used in a wide range of IoT projects. This pack of 10 LEDs is suitable for prototyping and building various IoT devices, such as wearables, robots, home automation systems, and more.
Specifications
LED Type: 3 mm Yellow LED
 Package: Pack of 10
 Operating Voltage: 1.8 - 2.2 V
 Operating Current: 10 - 20 mA
 Luminous Intensity: 10 - 20 mcd
 Viewing Angle: 30
 Life Expectancy: 50,000 hours (typical)
Pinout
The 3 mm Yellow LED has two legs: Anode (positive) and Cathode (negative).
Anode (Long Leg): Connect to positive voltage (e.g., VCC or 3.3V)
 Cathode (Short Leg): Connect to negative voltage (e.g., GND)
Code Examples
### Example 1: Blinking LED with Arduino
This example demonstrates how to use the 3 mm Yellow LED with an Arduino Board to create a simple blinking LED circuit.
```c++
const int ledPin = 13;  // Choose any digital pin on your Arduino board
void setup() {
  pinMode(ledPin, 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
}
```
### Example 2: LED Indicator with Raspberry Pi (Python)
This example shows how to use the 3 mm Yellow LED with a Raspberry Pi to create a simple LED indicator circuit using Python.
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Set the LED pin as an output
GPIO.setup(17, GPIO.OUT)
while True:
    GPIO.output(17, GPIO.HIGH)  # Turn the LED on
    time.sleep(1)               # Wait for 1 second
    GPIO.output(17, GPIO.LOW)    # Turn the LED off
    time.sleep(1)               # Wait for 1 second
```
### Example 3: LED Strip Controller with ESP32 (MicroPython)
This example demonstrates how to use the 3 mm Yellow LED with an ESP32 Board to control a simple LED strip using MicroPython.
```python
import machine
import time
# Set the LED pin as an output
led = machine.Pin(15, machine.Pin.OUT)
while True:
    led.value(1)  # Turn the LED on
    time.sleep(1)  # Wait for 1 second
    led.value(0)  # Turn the LED off
    time.sleep(1)  # Wait for 1 second
```
Important Notes
When working with LEDs, ensure you connect them to the correct voltage and current ratings to avoid damage or overheating.
 Use a resistor in series with the LED to limit the current and prevent damage to the LED or the microcontroller.
 Always handle the LEDs with care to avoid static electricity damage.