

The Mean Well DDR-60L-24 is a compact, high-efficiency DC-DC converter designed to step down voltage levels while providing a stable 24V DC output. This component is ideal for applications requiring reliable power conversion in industrial control systems, telecommunications, and distributed power architectures. Its robust design ensures high performance and durability in demanding environments.








The following table outlines the key technical details of the DDR-60L-24:
| Parameter | Value | 
|---|---|
| Input Voltage Range | 9 ~ 36V DC | 
| Output Voltage | 24V DC | 
| Output Current | 2.5A | 
| Output Power | 60W | 
| Efficiency | Up to 91% | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 25.4mm x 93mm x 102mm | 
| Weight | 0.3kg | 
| Protection Features | Overload, Overvoltage, Short Circuit | 
The DDR-60L-24 features a screw terminal block for input and output connections. The pin configuration is as follows:
| Pin | Label | Description | 
|---|---|---|
| 1 | +V Input | Positive input voltage (9 ~ 36V DC) | 
| 2 | -V Input | Negative input voltage (ground) | 
| 3 | +V Output | Positive output voltage (24V DC) | 
| 4 | -V Output | Negative output voltage (ground) | 
+V Input and -V Input terminals. Ensure the input voltage is within the specified range to avoid damage.+V Output and -V Output terminals. The load should not exceed the maximum output current of 2.5A.The DDR-60L-24 can be used to power an Arduino UNO by stepping down a higher DC voltage (e.g., 12V or 24V) to a stable 24V output. Below is an example circuit and code:
+V Input and -V Input terminals of the DDR-60L-24.+V Output terminal to the Arduino's VIN pin.-V Output terminal to the Arduino's GND pin.// Example code for Arduino UNO powered by DDR-60L-24
// This code blinks an LED connected to pin 13
void setup() {
  pinMode(13, OUTPUT); // Set pin 13 as an output
}
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
}
No Output Voltage
Overheating
Output Voltage Fluctuations
Short Circuit Protection Triggered
Q: Can the DDR-60L-24 be used with a 48V input?
A: No, the maximum input voltage is 36V DC. Using a 48V input may damage the converter.
Q: Is the DDR-60L-24 suitable for outdoor use?
A: The DDR-60L-24 is not weatherproof. If outdoor use is required, ensure it is housed in a weatherproof enclosure.
Q: Can I use the DDR-60L-24 to charge a battery?
A: The DDR-60L-24 is not designed as a battery charger. Use a dedicated battery charging circuit for this purpose.
Q: What happens if the load exceeds 2.5A?
A: The overload protection will activate, and the output will shut down to protect the converter. Reduce the load and restart the converter.