

The Mean Well NPF-60D-36 is a high-performance LED dimmer driver designed to regulate the brightness of 36V LED systems. This device adjusts the voltage and current supplied to the LEDs, ensuring optimal performance and energy efficiency. It is a reliable solution for both indoor and outdoor LED lighting applications, offering dimming capabilities via PWM (Pulse Width Modulation) or 0-10V dimming control.








The following table outlines the key technical details of the NPF-60D-36 LED dimmer driver:
| Parameter | Value |
|---|---|
| Input Voltage Range | 90-305 VAC |
| Output Voltage | 36V DC |
| Output Current | 1.67A |
| Output Power | 60W |
| Dimming Control | PWM or 0-10V |
| Efficiency | Up to 90% |
| Operating Temperature | -40°C to +70°C |
| IP Rating | IP67 (waterproof and dustproof) |
| Dimensions | 162.5 x 42.5 x 32mm |
| Weight | 0.5 kg |
| Safety Standards | UL8750, EN61347-1, EN61347-2-13 |
The NPF-60D-36 has the following input and output connections:
| Pin Name | Type | Description |
|---|---|---|
| AC/L | Input | Live wire connection for AC input |
| AC/N | Input | Neutral wire connection for AC input |
| FG | Ground | Frame ground for safety |
| +V | Output | Positive DC output for LED connection |
| -V | Output | Negative DC output for LED connection |
| DIM+ | Dimming Input | Positive terminal for dimming control signal |
| DIM- | Dimming Input | Negative terminal for dimming control signal |
The NPF-60D-36 can be controlled using an Arduino UNO to generate a PWM signal for dimming. Below is an example code snippet:
// Arduino PWM Dimming Example for Mean Well NPF-60D-36
// Connect DIM+ to Arduino PWM pin (e.g., pin 9) and DIM- to GND.
const int pwmPin = 9; // PWM output pin connected to DIM+
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 (0-255)
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Write PWM signal (0-255)
delay(10); // Small delay for smooth transition
}
}
LEDs Do Not Light Up:
Flickering LEDs:
Driver Overheating:
No Dimming Response:
Q: Can I use this driver with a 24V LED system?
A: No, the NPF-60D-36 is specifically designed for 36V LED systems. Using it with a 24V system may result in improper operation or damage.
Q: Is the driver suitable for outdoor use?
A: Yes, the driver has an IP67 rating, making it waterproof and dustproof, suitable for outdoor installations.
Q: What happens if I exceed the maximum output power?
A: Exceeding the maximum output power (60W) may trigger the driver's overcurrent protection or cause permanent damage to the driver and connected LEDs.
Q: Can I use both PWM and 0-10V dimming simultaneously?
A: No, you should use only one dimming method at a time to avoid conflicts and ensure proper operation.