The LED_GREEN is a green Light Emitting Diode (LED) manufactured by Custom. It emits green light when an electric current passes through it. This component is widely used as an indicator in various electronic circuits due to its low power consumption, long lifespan, and high visibility.
Parameter | Value |
---|---|
Forward Voltage | 2.0V - 2.2V |
Forward Current | 20mA |
Power Dissipation | 60mW |
Peak Wavelength | 525nm |
Viewing Angle | 30 degrees |
Maximum Reverse Voltage | 5V |
Operating Temperature Range | -40°C to +85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | Anode | Positive terminal (longer lead) |
2 | Cathode | Negative terminal (shorter lead) |
// Example code to blink a green LED connected to pin 13 of Arduino UNO
const int ledPin = 13; // Pin number where the LED is connected
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 Not Lighting Up:
LED Flickering:
LED Dim:
By following this documentation, users can effectively utilize the LED_GREEN in their electronic projects, ensuring proper operation and longevity of the component.