

The DC 6-50V Dimming LED Driver 0-3A Adjustable CC (Manufacturer Part ID: LD50AJTC) by Eletechsup is a versatile constant current LED driver designed for powering and controlling LED lighting systems. It operates within a wide input voltage range of 6V to 50V and provides an adjustable output current of up to 3A. This component is ideal for applications requiring precise dimming and current control, such as LED strips, high-power LEDs, and custom lighting projects.








| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 50V DC |
| Output Current Range | 0A to 3A (adjustable) |
| Output Power | Up to 150W (depending on input) |
| Dimming Control | Adjustable potentiometer |
| Efficiency | Up to 95% |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 60mm x 30mm x 20mm |
| Manufacturer | Eletechsup |
| Part ID | LD50AJTC |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (6V to 50V DC) |
| VIN- | Negative input voltage terminal (ground) |
| LED+ | Positive output terminal for connecting the LED load |
| LED- | Negative output terminal for connecting the LED load |
| DIM (Potentiometer) | Built-in potentiometer for adjusting the output current and dimming level |
Power Supply Connection:
VIN+ and VIN- terminals.LED Load Connection:
LED+ pin.LED- pin.Adjusting the Output Current:
DIM to adjust the output current and dimming level.Testing the Circuit:
This LED driver can be controlled manually using the built-in potentiometer. However, for automated dimming, you can use an Arduino UNO to generate a PWM signal. Below is an example code snippet:
// Example: Controlling LED brightness using Arduino UNO and PWM signal
// Connect the DIM pin of the LED driver to Arduino pin 9
const int pwmPin = 9; // PWM output pin connected to DIM pin of the LED driver
void setup() {
pinMode(pwmPin, OUTPUT); // Set pin 9 as an output
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(pwmPin, brightness); // Write PWM signal to DIM pin
delay(10); // Small delay for smooth dimming
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Write PWM signal to DIM pin
delay(10); // Small delay for smooth dimming
}
}
Note: Ensure the DIM pin is compatible with PWM signals for this functionality.
LED Does Not Light Up:
LED Flickers:
Driver Overheats:
Cannot Adjust Brightness:
Q: Can I use this driver with a 12V LED strip?
Q: Is the driver waterproof?
Q: Can I control multiple LEDs with this driver?
Q: What happens if I exceed the input voltage range?
This concludes the documentation for the DC 6-50V Dimming LED Driver 0-3A Adjustable CC. For further assistance, refer to the manufacturer's datasheet or contact Eletechsup support.