The Meanwell ELG-300-24A is a high-performance 300W LED driver designed to provide a constant voltage output of 24V. It is ideal for powering LED lighting systems in both indoor and outdoor environments, thanks to its robust IP67-rated enclosure that ensures protection against dust and water ingress. This driver is known for its high efficiency, wide input voltage range, and built-in safety features, making it a reliable choice for various lighting applications.
Parameter | Value |
---|---|
Input Voltage Range | 100-305 VAC / 142-431 VDC |
Output Voltage | 24V DC |
Output Power | 300W |
Output Current Range | 0-12.5A |
Efficiency | Up to 93% |
Power Factor | ≥ 0.95 @ 230VAC (full load) |
IP Rating | IP67 (dust-tight and waterproof) |
Operating Temperature | -40°C to +90°C (case temperature) |
Protections | Over-voltage, over-current, short-circuit, over-temperature |
Dimming Options | 3-in-1 dimming (0-10V, PWM, resistance) |
Dimensions | 244.2 x 68 x 38.8 mm |
Weight | 1.2 kg |
Compliance | UL, ENEC, CB, CE, RoHS |
The Meanwell ELG-300-24A has input and output wiring connections. Below is the pin configuration:
Wire Color | Function | Description |
---|---|---|
Black | AC Line (L) | Connect to the live wire of the AC mains |
White | AC Neutral (N) | Connect to the neutral wire of the AC mains |
Green/Yellow | Ground (GND) | Connect to earth ground for safety |
Wire Color | Function | Description |
---|---|---|
Red | DC Positive (+) | Connect to the positive terminal of the LED load |
Black | DC Negative (-) | Connect to the negative terminal of the LED load |
Wire Color | Function | Description |
---|---|---|
Blue | Dim (-) | Negative terminal for dimming control |
White | Dim (+) | Positive terminal for dimming control |
Input Connection:
Output Connection:
Dimming Control (Optional):
Power On:
While the ELG-300-24A is not directly controlled by an Arduino, it can be used with an Arduino to implement dimming functionality. Below is an example of using PWM dimming with the Arduino UNO:
// Example: Controlling the Meanwell ELG-300-24A dimming via PWM
// Connect Arduino PWM pin (e.g., D9) to the Dim(+) wire of the driver
// Connect Dim(-) wire to Arduino GND
const int pwmPin = 9; // PWM pin connected to Dim(+) of the driver
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 to dimming input
delay(10); // Small delay for smooth dimming
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Write PWM signal to dimming input
delay(10); // Small delay for smooth dimming
}
}
No Output Voltage:
LEDs Flickering:
Driver Overheating:
Dimming Not Working:
Can the ELG-300-24A be used outdoors?
What happens if the load exceeds 300W?
Is the driver compatible with all dimming controllers?
Can I use this driver with a 12V LED load?