

The DC-DC Buck LM2596 3A LED module is a step-down voltage regulator designed to efficiently convert a higher input voltage to a lower output voltage. It is based on the LM2596 buck converter IC and is capable of delivering up to 3A of output current. This module is widely used in applications requiring stable and adjustable DC voltage, such as powering microcontrollers, LED strips, and other low-voltage devices.
Common applications include:








| Pin Name | Description |
|---|---|
| VIN | Positive input voltage (4V to 40V DC). Connect to the power source. |
| GND | Ground connection. Common ground for input and output. |
| VOUT | Positive output voltage (1.25V to 37V DC). Connect to the load. |
| Potentiometer | Adjustable screw to set the output voltage. Rotate clockwise to increase voltage and counterclockwise to decrease voltage. |
Connect the Input Voltage:
Adjust the Output Voltage:
Connect the Load:
Verify Connections:
To power an Arduino UNO using the LM2596 module:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the LM2596 module is providing a stable 5V to the Arduino.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Cannot Adjust Output Voltage:
Q: Can I use this module to charge a battery?
A: Yes, but ensure the output voltage is set to the battery's charging voltage, and use a current-limiting circuit if required.
Q: Is the module waterproof?
A: No, the module is not waterproof. Use it in a dry environment or enclose it in a waterproof case.
Q: Can I use this module with a solar panel?
A: Yes, as long as the solar panel's output voltage is within the module's input range. Use a capacitor to stabilize the input voltage if necessary.
Q: Does the module have reverse polarity protection?
A: No, the module does not have reverse polarity protection. Always double-check the polarity before connecting the power source.