

The Mean Well LDH-45B-350 is a compact and efficient LED driver designed to deliver a constant current output of 350mA, making it ideal for powering LED lighting systems. With its wide input voltage range and high efficiency, this driver is suitable for a variety of applications, including indoor and outdoor LED lighting, signage, and architectural lighting. Its robust design ensures reliable performance in demanding environments.








| Parameter | Value |
|---|---|
| Manufacturer | Mean Well |
| Part Number | LDH-45B-350 |
| Output Current | 350mA (constant current) |
| Input Voltage Range | 9V to 56V DC |
| Output Voltage Range | 2V to 52V DC |
| Maximum Output Power | 45W |
| Efficiency | Up to 95% |
| Operating Temperature | -40°C to +85°C |
| Protection Features | Over-voltage, over-temperature, and short-circuit protection |
The LDH-45B-350 LED driver has four primary connection points:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (connect to DC power source) |
| VIN- | Negative input voltage terminal (connect to DC power source ground) |
| VOUT+ | Positive output terminal (connect to LED anode) |
| VOUT- | Negative output terminal (connect to LED cathode) |
Power Supply Requirements:
Ensure the input voltage to the driver is within the range of 9V to 56V DC. Use a regulated DC power supply for optimal performance.
Connecting the Input:
VIN+ pin. VIN- pin.Connecting the Output:
VOUT+ pin to the anode (positive terminal) of the LED. VOUT- pin to the cathode (negative terminal) of the LED.Load Considerations:
Mounting and Heat Dissipation:
While the LDH-45B-350 is not directly controlled by an Arduino, you can use an Arduino to switch the driver on/off via a relay or MOSFET. Below is an example of how to control the driver using a relay module:
// Example: Controlling the LDH-45B-350 LED driver with an Arduino UNO
// This code toggles the LED driver on and off every 2 seconds.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (and the LED driver)
delay(2000); // Keep the LED driver on for 2 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (and the LED driver)
delay(2000); // Keep the LED driver off for 2 seconds
}
Note: Ensure the relay module is rated for the input voltage of the LDH-45B-350.
| Issue | Possible Cause | Solution |
|---|---|---|
| LEDs do not light up | Incorrect wiring or polarity | Verify all connections and ensure correct polarity. |
| LEDs flicker | Input voltage is unstable | Use a regulated DC power supply with sufficient current capacity. |
| Driver overheats | Poor ventilation or excessive load | Ensure proper ventilation and verify the total LED load is within specs. |
| Driver shuts down unexpectedly | Over-temperature or short-circuit protection triggered | Check for short circuits or excessive ambient temperature. |
Can I use this driver with dimmable LEDs?
The LDH-45B-350 does not support dimming directly. Use an external dimming circuit if dimming is required.
What happens if I exceed the input voltage range?
Exceeding the input voltage range may damage the driver. Always use a power supply within the specified range (9V to 56V DC).
Can I connect multiple LEDs to this driver?
Yes, as long as the total forward voltage of the LEDs is within the output voltage range (2V to 52V DC) and they are connected in series.
Is the driver waterproof?
No, the LDH-45B-350 is not waterproof. Use it in a dry environment or within a suitable enclosure for outdoor applications.
This concludes the documentation for the Mean Well LDH-45B-350 LED Driver. For further assistance, refer to the manufacturer's datasheet or contact Mean Well support.