

The Driver LED 3W is a compact and efficient power supply unit designed to provide the precise voltage and current required to drive a 3-watt LED. It ensures optimal performance, energy efficiency, and longevity of the LED by regulating the power supply and protecting against overcurrent, overvoltage, and thermal issues. This driver is ideal for applications requiring reliable and stable LED operation.








The following table outlines the key technical details of the Driver LED 3W:
| Parameter | Value |
|---|---|
| Input Voltage Range | 85V - 265V AC |
| Output Voltage Range | 3V - 12V DC |
| Output Current | 300mA (constant current) |
| Power Rating | 3W |
| Efficiency | ≥85% |
| Operating Temperature | -20°C to +50°C |
| Protection Features | Overcurrent, Overvoltage, Thermal |
| Dimensions | 30mm x 20mm x 15mm |
The Driver LED 3W typically has four connection points, as described below:
| Pin Name | Description |
|---|---|
| AC IN (L) | Live input for AC power (85V - 265V AC) |
| AC IN (N) | Neutral input for AC power |
| LED+ | Positive output terminal for the LED |
| LED- | Negative output terminal for the LED |
Connect the Input Terminals:
Connect the Output Terminals:
Power On:
While the Driver LED 3W is not directly controlled by an Arduino, you can use the Arduino to switch the driver on and off via a relay module. Below is an example code snippet for controlling the driver using an Arduino UNO and a relay module:
// Define the relay pin connected to the Arduino
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Turn on the LED driver
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the LED on for 5 seconds
// Turn off the LED driver
digitalWrite(relayPin, LOW);
delay(5000); // Keep the LED off for 5 seconds
}
Note: Ensure the relay module is rated for the AC voltage and current used by the driver.
LED Does Not Light Up:
LED Flickers:
Driver Overheats:
Driver Does Not Power On:
Q1: Can I use this driver with LEDs rated higher than 3W?
A1: No, this driver is specifically designed for 3W LEDs. Using it with higher-rated LEDs may cause overheating or malfunction.
Q2: Is the driver waterproof?
A2: No, the driver is not waterproof. Use it in a dry environment or within a waterproof enclosure.
Q3: Can I dim the LED using this driver?
A3: This driver does not support dimming. Use a compatible dimmable driver if dimming is required.
Q4: What happens if I reverse the LED polarity?
A4: Reversing the polarity may damage the LED. Always ensure correct polarity during installation.