

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 chip, which is known for its high efficiency and reliability. This module is equipped with an onboard LED display that shows the output voltage, making it convenient for real-time monitoring.
Common applications include:








| Pin Name | Description |
|---|---|
VIN+ |
Positive input voltage terminal (connect to the higher voltage source). |
VIN- |
Negative input voltage terminal (connect to ground of the power source). |
VOUT+ |
Positive output voltage terminal (connect to the load). |
VOUT- |
Negative output voltage terminal (connect to the ground of the load). |
Potentiometer |
Adjustable knob to set the desired output voltage. |
Connect the Input Voltage:
VIN+.VIN-.Connect the Output Load:
VOUT+.VOUT-.Adjust the Output Voltage:
Verify Connections:
The LM2596 module can be used to power an Arduino UNO from a 12V source by stepping down the voltage to 5V. Below is an example code to read an analog sensor powered by the LM2596 module:
// Example code for Arduino UNO to read an analog sensor
// Ensure the LM2596 module is set to output 5V before connecting to Arduino
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as input
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(500); // Wait for 500ms before the next reading
}
No Output Voltage:
Output Voltage Not Adjustable:
Overheating:
LED Display Not Working:
Can the LM2596 module be used with AC input? No, the module only supports DC input. Use a rectifier circuit to convert AC to DC before connecting.
What is the maximum power output of the module? The maximum power output is approximately 37W (e.g., 12V at 3A), but this depends on proper heat dissipation.
Can I use this module to charge batteries? Yes, but ensure the output voltage is set to match the battery's charging requirements, and use additional circuitry for safe charging.
Is the module safe for sensitive electronics? Yes, but always verify the output voltage with a multimeter before connecting sensitive devices.