

The Mean Well HDR-100-24 is a 100W, 24V single-output LED power supply designed for indoor applications. It features a compact DIN rail-mountable design, high efficiency, and robust protection mechanisms, including short circuit, overload, and overvoltage protection. This power supply is ideal for powering LED lighting systems, industrial control equipment, and other low-voltage DC devices.








| Parameter | Value |
|---|---|
| Input Voltage Range | 85-264VAC / 120-370VDC |
| Output Voltage | 24VDC |
| Output Current | 4.2A |
| Output Power | 100.8W |
| Efficiency | Up to 91% |
| Operating Temperature | -30°C to +70°C |
| Protection Features | Short circuit, overload, |
| overvoltage | |
| Dimensions | 70mm x 90mm x 54mm |
| Mounting Type | DIN rail (TS-35/7.5 or TS-35/15) |
The HDR-100-24 features screw terminal connections for input and output. Below is the pin configuration:
| Pin No. | Label | Description |
|---|---|---|
| 1 | L | AC Line input |
| 2 | N | AC Neutral input |
| 3 | Ground (⏚) | Earth ground connection |
| 4 | +V | Positive DC output |
| 5 | -V | Negative DC output |
The HDR-100-24 can be used to power an Arduino UNO via its VIN pin. Below is an example:
Note: The Arduino UNO has an onboard voltage regulator that can handle 24VDC input via the VIN pin. However, ensure the total current draw of the Arduino and connected peripherals does not exceed the HDR-100-24's output capacity.
// Example Arduino code to blink an LED using HDR-100-24 as the power source
// Connect the HDR-100-24 +V to Arduino VIN and -V to Arduino GND
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect input wiring | Verify AC input connections (L, N). |
| No AC power supplied | Check the power source. | |
| Output voltage fluctuates | Overload or short circuit on the output | Reduce the load or check for shorts. |
| Power supply overheats | Insufficient ventilation | Ensure proper airflow around the unit. |
| Load exceeds rated power | Reduce the load to within 100.8W. |
Can the HDR-100-24 be used outdoors?
What happens if the load exceeds 4.2A?
Can I use the HDR-100-24 to charge batteries?
Is the HDR-100-24 compatible with other DIN rail systems?
By following this documentation, users can safely and effectively integrate the Mean Well HDR-100-24 into their projects.