Stufin
Home Quick Cart Profile

3mm White Green LED (Pack of 10)

Buy Now on Stufin

Component Name

3mm White Green LED (Pack of 10)

Description

The 3mm White Green LED is a light-emitting diode (LED) component that emits a bright, white-green light when an electric current is passed through it. This LED is designed for use in a variety of applications, including electronic circuits, robotics, and IoT projects. The pack of 10 LEDs provides a convenient and cost-effective solution for prototyping and development.

Functionality

The primary function of the 3mm White Green LED is to emit light when an electric current is applied. The LED is designed to be forward-biased, meaning that it conducts electricity in one direction and blocks it in the other. When a sufficient voltage is applied across the LED's leads, the electrons recombine with holes, releasing energy in the form of light.

Key Features

  • Color: White-Green

The LED emits a bright, white-green light with a wavelength that falls between the white and green spectrum.

  • Size: 3mm

The LED has a diameter of 3mm, making it suitable for use in compact electronic circuits and devices.

  • Packaging: Pack of 10

The LED is sold in a pack of 10, providing a convenient and cost-effective solution for prototyping and development.

  • Forward Voltage: 2.0V - 2.5V

The LED requires a forward voltage of 2.0V to 2.5V to operate efficiently.

  • Forward Current: 20mA

The LED is designed to handle a forward current of up to 20mA.

  • Luminous Intensity: 10000-15000 mcd

The LED has a luminous intensity of 10,000 to 15,000 millicandelas, making it suitable for use in a variety of applications.

  • Viewing Angle: 30-40 degrees

The LED has a viewing angle of 30-40 degrees, providing a wide angle of visibility.

  • Operating Temperature: -20C to 80C

The LED is designed to operate within a temperature range of -20C to 80C, making it suitable for use in a variety of environmental conditions.

  • Lead Material: Copper

The LED's leads are made of copper, providing excellent conductivity and durability.

Applications

The 3mm White Green LED is suitable for use in a variety of applications, including

Electronic circuits

Robotics

IoT projects

LED indicators

Backlighting

Advertising displays

Decorative lighting

Precautions

When handling the 3mm White Green LED, it is essential to follow proper precautions to avoid damage or injury

Handle the LED by the edges to avoid touching the leads or the lens.

Avoid applying excessive force or pressure to the LED.

Use the LED within the recommended operating temperature and voltage ranges.

Use a suitable resistor to limit the current and protect the LED from overheating.

By following the guidelines and precautions outlined above, the 3mm White Green LED can be used to create innovative and effective lighting solutions for a wide range of applications.

Pin Configuration

  • Component Documentation: 3mm White Green LED (Pack of 10)
  • Pin Explanation:
  • The 3mm White Green LED has two pins, which are responsible for connecting the LED to a power source and allowing it to emit light.
  • Pin 1: Anode (Positive Leg)
  • Function: Connects to the positive voltage supply
  • Identification: Typically longer than the Cathode pin
  • Color: Usually not marked with a color ring, but may have a slight bend or a smaller flat surface on the top
  • Pin 2: Cathode (Negative Leg)
  • Function: Connects to the negative voltage supply (Ground)
  • Identification: Typically shorter than the Anode pin
  • Color: Usually marked with a color ring (in this case, no color ring is specified, but it may have a rounded or a larger flat surface on the top)
  • Connection Structure:
  • To connect the 3mm White Green LED, follow these steps:
  • Step 1: Determine the polarity
  • Identify the Anode (Positive Leg) and Cathode (Negative Leg) pins based on their length and any visual cues mentioned above.
  • Step 2: Connect the Anode
  • Connect the Anode (Positive Leg) to the positive voltage supply (e.g., VCC, 5V, or 3.3V) of your circuit or microcontroller.
  • Use a suitable wire or connection method, ensuring a secure and reliable connection.
  • Step 3: Connect the Cathode
  • Connect the Cathode (Negative Leg) to the negative voltage supply (e.g., GND, 0V) of your circuit or microcontroller.
  • Use a suitable wire or connection method, ensuring a secure and reliable connection.
  • Example Connection Diagram:
  • ```
  • +-----------+
  • | LED |
  • +-----------+
  • |
  • |
  • v
  • +-----------+ +-----------+
  • | VCC (5V) | | GND (0V) |
  • +-----------+ +-----------+
  • | |
  • | |
  • v v
  • +-----------+ +-----------+
  • | Anode | | Cathode |
  • | (Positive)| | (Negative)|
  • +-----------+ +-----------+
  • ```
  • Important Notes:
  • Always check the recommended operating voltage and current for the LED to ensure safe and optimal operation.
  • Avoid connecting the LED directly to a power source without proper current limiting, as this can cause damage or premature wear.
  • Consider using a resistor in series with the LED to control the current and prevent overheating.
  • When handling LEDs, avoid static electricity discharge, as it can damage the component.

Code Examples

3mm White Green LED (Pack of 10)
Component Overview
The 3mm White Green LED is a high-brightness light-emitting diode (LED) that emits a white-green color. This component is suitable for various IoT projects, such as indicator lights, status displays, and ambient lighting. The pack of 10 LEDs provides flexibility and convenience for prototyping and development.
Technical Specifications
Package: 3mm diameter, 1.5mm height
 Color: White-Green
 Luminous Intensity: 1000-1500 mcd
 Viewing Angle: 30-40 degrees
 Operating Voltage: 1.8-3.5V
 Operating Current: 10-20mA
 Peak Wavelength: 520-550nm
 Reverse Voltage: 5V
Code Examples
### Example 1: Basic LED Blinking using Arduino
This example demonstrates how to use the 3mm White Green LED to create a simple blinking effect using an Arduino board.
```cpp
const int ledPin = 13;  // Select a digital pin on your Arduino board
void setup() {
  pinMode(ledPin, OUTPUT);  // Set the pin as an output
}
void loop() {
  digitalWrite(ledPin, HIGH);  // Turn the LED on
  delay(500);  // Wait for 500ms
  digitalWrite(ledPin, LOW);  // Turn the LED off
  delay(500);  // Wait for 500ms
}
```
Hardware Connection
Connect the anode (positive leg) of the LED to digital pin 13 on your Arduino board.
 Connect the cathode (negative leg) of the LED to a 220 resistor.
 Connect the other end of the resistor to GND on your Arduino board.
### Example 2: PWM Dimming using Raspberry Pi (Python)
This example demonstrates how to use the 3mm White Green LED with a Raspberry Pi to create a PWM (Pulse-Width Modulation) dimming effect.
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)  # Set the GPIO mode to Broadcom
led_pin = 17  # Select a GPIO pin on your Raspberry Pi
GPIO.setup(led_pin, GPIO.OUT)  # Set the pin as an output
pwm = GPIO.PWM(led_pin, 50)  # Create a PWM object with a frequency of 50Hz
while True:
    for dc in range(0, 101, 5):  # Loop through different duty cycles
        pwm.start(dc)  # Set the duty cycle
        time.sleep(0.1)  # Wait for 100ms
```
Hardware Connection
Connect the anode (positive leg) of the LED to GPIO pin 17 on your Raspberry Pi.
 Connect the cathode (negative leg) of the LED to a 220 resistor.
 Connect the other end of the resistor to GND on your Raspberry Pi.
Note: In both examples, make sure to use a suitable resistor to limit the current and prevent damage to the LED. The recommended resistor value is 220, but you may need to adjust it based on your specific circuit and power supply.