

The Luz LED 3W 4" 110V is a compact and energy-efficient LED light fixture designed for use in 110V electrical systems. With a power rating of 3 watts and a 4-inch diameter, this LED light is ideal for applications requiring bright, focused illumination in a small form factor. It is commonly used in residential, commercial, and decorative lighting setups, offering long-lasting performance and reduced energy consumption compared to traditional lighting solutions.








| Parameter | Value |
|---|---|
| Power Rating | 3 Watts |
| Voltage | 110V AC |
| Luminous Flux | ~250-300 lumens |
| Color Temperature | 3000K (Warm White) / 6000K (Cool White) |
| Beam Angle | 120° |
| Diameter | 4 inches (approx. 100mm) |
| Lifespan | ~25,000 hours |
| Operating Temperature | -20°C to 50°C |
| Material | Aluminum housing |
| Mounting Type | Recessed or surface mount |
The Luz LED 3W 4" 110V does not have traditional pins like electronic components. Instead, it connects directly to a 110V AC power supply via two wires:
| Wire Color | Description |
|---|---|
| Black | Live (L) - Connect to 110V AC |
| White | Neutral (N) - Connect to neutral |
Note: Ensure proper insulation and secure connections when wiring the LED light to avoid electrical hazards.
The Luz LED 3W 4" 110V is not directly compatible with Arduino due to its high voltage (110V AC). However, you can control it indirectly using a relay module. Below is an example of how to control the LED light using an Arduino UNO and a relay:
/*
Example: Controlling a 110V LED light using Arduino and a relay module.
Note: Ensure proper insulation and safety precautions when working with high voltage.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the LED light
delay(5000); // Keep the light on for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the LED light
delay(5000); // Keep the light off for 5 seconds
}
Warning: Always use a properly rated relay module for 110V AC applications. Never handle live wires while the circuit is powered.
| Issue | Possible Cause | Solution |
|---|---|---|
| LED light does not turn on | Loose or incorrect wiring | Check and secure all connections. |
| Flickering light | Voltage fluctuations or incompatible dimmer | Use a voltage stabilizer or compatible dimmer. |
| Overheating | Poor ventilation or prolonged use | Ensure proper airflow and reduce usage time. |
| Reduced brightness over time | Dust accumulation or aging | Clean the light and check for wear. |
Can this LED light be used outdoors?
Is the LED light dimmable?
What should I do if the light stops working?
Can I connect this LED light to a DC power source?
By following this documentation, you can safely and effectively use the Luz LED 3W 4" 110V in your lighting projects.