The LED_RED is a red light-emitting diode (LED) manufactured by Custom. It emits red light when an electric current passes through it. This component is widely used as an indicator light in various electronic devices due to its low power consumption, long lifespan, and high visibility.
Parameter | Value |
---|---|
Forward Voltage | 2.0V - 2.2V |
Forward Current | 20mA |
Power Rating | 44mW |
Wavelength | 620nm - 630nm |
Viewing Angle | 20° - 30° |
Package Type | 5mm (T-1 3/4) |
Pin Number | Pin Name | Description |
---|---|---|
1 | Anode | Positive terminal (longer lead) |
2 | Cathode | Negative terminal (shorter lead) |
// Example code to blink an 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_RED in their electronic projects, ensuring proper operation and longevity of the component.