

The HDR 24V/15W/0.63A (Manufacturer Part ID: HDR-15-24) is a high-density DIN rail power supply unit manufactured by Mean Well. It is designed to deliver a stable 24V DC output with a maximum power rating of 15W and a current capacity of 0.63A. This compact and efficient power supply is ideal for industrial automation, building automation, and other electronic applications requiring reliable DC power.








| Parameter | Value |
|---|---|
| Manufacturer | Mean Well |
| Model | HDR-15-24 |
| Input Voltage Range | 85-264 VAC / 120-370 VDC |
| Output Voltage | 24V DC |
| Output Current | 0.63A |
| Output Power | 15W |
| Efficiency | Up to 88% |
| Operating Temperature | -30°C to +70°C |
| Dimensions | 17.5 x 90 x 54.5 mm |
| Mounting Type | DIN Rail |
| Protection Features | Overload, Overvoltage, Short Circuit |
The HDR-15-24 features screw terminal connections for input and output. Below is the pin configuration:
| Pin Number | Label | Description |
|---|---|---|
| 1 | L | AC Line Input |
| 2 | N | AC Neutral Input |
| 3 | +V | Positive DC Output (24V) |
| 4 | -V | Negative DC Output (Ground) |
L (Line) and N (Neutral) terminals.+V (positive) and -V (negative) terminals.The HDR-15-24 can be used to power an Arduino UNO and other peripherals. Below is an example circuit and code:
+V terminal of the HDR-15-24 to the Arduino UNO's Vin pin.-V terminal of the HDR-15-24 to the Arduino UNO's GND pin.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the HDR-15-24 is providing a stable 24V DC to the Arduino's Vin pin
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:
Overload Shutdown:
Overheating:
Intermittent Output:
By following this documentation, users can effectively integrate the HDR-15-24 into their projects and ensure reliable operation.