A Yellow LED Module is a light-emitting diode that emits yellow light when an electric current passes through it. It is commonly used in electronic projects for indicators and displays. This module is a versatile component that can be easily integrated into various circuits, making it a popular choice for both hobbyists and professionals.
Parameter | Value |
---|---|
Forward Voltage | 2.0V - 2.2V |
Forward Current | 20mA |
Power Rating | 44mW |
Wavelength | 590nm - 595nm |
Viewing Angle | 20° - 30° |
Operating Temperature | -40°C to +85°C |
Pin Number | Pin Name | Description |
---|---|---|
1 | Anode | Positive terminal, connect to Vcc |
2 | Cathode | Negative terminal, connect to GND |
Arduino UNO
+5V ----->|---- 150Ω ----> Anode (Yellow LED)
GND ----------------------> Cathode (Yellow LED)
// Define the pin for the Yellow LED
const int ledPin = 13;
void setup() {
// Initialize the digital pin as an output
pinMode(ledPin, OUTPUT);
}
void loop() {
// Turn the LED on (HIGH is the voltage level)
digitalWrite(ledPin, HIGH);
delay(1000); // Wait for a second
// Turn the LED off by making the voltage LOW
digitalWrite(ledPin, LOW);
delay(1000); // Wait for a second
}
LED Not Lighting Up:
LED Flickering:
LED Dim:
By following this documentation, users should be able to effectively integrate and troubleshoot the Yellow LED Module in their electronic projects.