

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 features an onboard potentiometer for precise voltage adjustment. This module is widely used in power supply circuits, battery charging systems, and LED drivers due to its high efficiency and ease of use.








| Pin Name | Description |
|---|---|
| IN+ | Positive input voltage terminal (connect to the higher voltage source) |
| IN- | Negative input voltage terminal (connect to the ground of the power source) |
| OUT+ | Positive output voltage terminal (connect to the load) |
| OUT- | Negative output voltage terminal (connect to the ground of the load) |
IN+ pin.IN- pin.OUT+ pin.OUT- pin.OUT+ and OUT- pins.To power an Arduino UNO with the LM2596 module:
OUT+ pin to the Arduino's 5V pin.OUT- pin to the Arduino's GND pin.Here is an example Arduino code to blink an LED while powered by the LM2596 module:
// Blink 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:
Output Voltage Not Adjustable:
Overheating:
Voltage Drop Under Load:
Can I use this module to charge a battery? Yes, but ensure the output voltage is set to the appropriate charging voltage for the battery type.
What happens if I reverse the input polarity? The module does not have reverse polarity protection and may be damaged. Always double-check the polarity before powering the module.
Can I use this module with a solar panel? Yes, as long as the solar panel's output voltage is within the module's input voltage range.
Is the module safe for powering sensitive electronics? Yes, but it is recommended to add a capacitor at the output for additional filtering to reduce noise.