

The Lampu LED 5V is a light-emitting diode (LED) designed to operate at a 5V input. Manufactured by Arduino (Part ID: UNO), this LED lamp is a versatile and energy-efficient component that emits light when an electric current flows through it. It is commonly used in low-voltage applications such as status indicators, decorative lighting, and DIY electronics projects.








Below are the key technical details for the Lampu LED 5V:
| Parameter | Value |
|---|---|
| Operating Voltage | 5V DC |
| Forward Current (If) | 20mA (typical) |
| Power Consumption | 0.1W |
| Luminous Intensity | 1000-1500 mcd (typical) |
| Viewing Angle | 20°-30° |
| Color | Varies (e.g., red, green, blue) |
| Polarity | Anode (+), Cathode (-) |
The Lampu LED 5V has two pins:
| Pin | Description |
|---|---|
| Anode (+) | Connects to the positive terminal of the power supply or circuit. |
| Cathode (-) | Connects to the negative terminal (ground). |
The Lampu LED 5V can be easily connected to an Arduino UNO for control. Below is an example of how to blink the LED using Arduino code:
// Lampu LED 5V Blink Example
// This code blinks the LED connected to pin 13 on the Arduino UNO.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The LED Does Not Light Up:
The LED is Dim:
The LED Burns Out:
Flickering LED:
Q: Can I use the Lampu LED 5V with a 3.3V power supply?
A: Yes, but the brightness will be reduced. Ensure the resistor value is adjusted accordingly.
Q: What happens if I connect the LED without a resistor?
A: The LED may draw excessive current, leading to overheating and permanent damage.
Q: Can I use multiple Lampu LED 5V in a single circuit?
A: Yes, but each LED should have its own current-limiting resistor, or they should be connected in parallel with a shared resistor calculated for the total current.
This concludes the documentation for the Lampu LED 5V. Follow the guidelines above to ensure safe and effective use of this component in your projects!