The DDR-60L-24 is a 60W, 24V LED driver designed for powering LED lighting applications. It features high efficiency, a compact design, and reliable performance, making it ideal for both residential and commercial lighting systems. This constant voltage LED driver ensures stable power delivery to LED strips, modules, and other 24V DC lighting components.
The DDR-60L-24 is designed to meet the needs of modern LED lighting systems. Below are its key technical specifications:
Parameter | Value |
---|---|
Input Voltage Range | 90-264V AC / 127-370V DC |
Output Voltage | 24V DC |
Output Power | 60W |
Output Current | 2.5A |
Efficiency | Up to 90% |
Operating Temperature | -30°C to +70°C |
Protection Features | Overload, Overvoltage, Short Circuit |
Dimensions | 111 x 78 x 36 mm |
Weight | 0.35 kg |
Certifications | CE, RoHS, UL |
The DDR-60L-24 has a simple terminal block interface for input and output connections. Below is the pin configuration:
Pin | Label | Description |
---|---|---|
1 | L | AC Line input (Live wire) |
2 | N | AC Neutral input |
3 | FG | Frame Ground (Earth connection for safety) |
4 | +V | Positive DC output terminal (24V DC) |
5 | -V | Negative DC output terminal (Ground for 24V DC) |
Input Connection:
L
(Live) and N
(Neutral) terminals.FG
terminal to Earth for safety and to reduce electrical noise.Output Connection:
+V
and -V
terminals.Mounting:
Power On:
The DDR-60L-24 can be used to power 24V LED strips controlled by an Arduino UNO. Below is an example circuit and code for dimming a 24V LED strip using a MOSFET and PWM signal from the Arduino.
+V
and -V
terminals of the DDR-60L-24 to the LED strip.-V
(Ground).-V
terminal of the DDR-60L-24.// Example code to control the brightness of a 24V LED strip using PWM
// Ensure the MOSFET is properly connected to the Arduino and LED strip
const int pwmPin = 9; // PWM pin connected to the MOSFET gate
void setup() {
pinMode(pwmPin, OUTPUT); // Set the PWM pin as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(pwmPin, brightness); // Write PWM signal to the MOSFET
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Write PWM signal to the MOSFET
delay(10); // Small delay for smooth transition
}
}
LEDs Do Not Light Up:
Driver Overheats:
Flickering LEDs:
Driver Does Not Power On:
Can the DDR-60L-24 be used outdoors?
What is the maximum length of LED strip I can connect?
Can I dim the LEDs with this driver?
Is the driver compatible with 12V LEDs?