

The DC-DC Buck Converter, Adjustable (Manufacturer: AliExpress 1103684944store, Part ID: MP1584EM) is a compact and efficient step-down voltage regulator. It is designed to convert a higher input voltage to a lower, adjustable output voltage with high efficiency. This component is widely used in applications requiring stable and regulated power supply, such as powering microcontrollers, sensors, and other low-voltage devices.








The following table outlines the key technical details of the MP1584EM DC-DC Buck Converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 4.5V to 28V |
| Output Voltage Range | 0.8V to 20V (adjustable via potentiometer) |
| Output Current | Up to 3A (peak), 2A (continuous) |
| Efficiency | Up to 92% |
| Switching Frequency | 1.5 MHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The MP1584EM module has four pins for input and output connections:
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage (4.5V to 28V) |
| GND | Ground connection for input and output |
| VOUT | Positive output voltage (adjustable, 0.8V to 20V) |
| GND | Ground connection for input and output |
The MP1584EM can be used to power an Arduino UNO by stepping down a 12V input to 5V. Below is an example circuit and Arduino code:
// Example code to blink an LED using Arduino UNO powered by MP1584EM
// Ensure the buck converter is set to output 5V before connecting to Arduino
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, 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 lithium-ion battery?
A: Yes, but ensure the output voltage is set to the appropriate charging voltage for your battery (e.g., 4.2V for a single-cell Li-ion battery). Use a current-limiting circuit if required.
Q: Is the module protected against reverse polarity?
A: No, the MP1584EM does not have built-in reverse polarity protection. Always double-check your connections.
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 (4.5V to 28V). Ensure the panel provides sufficient current for your load.
Q: What is the maximum efficiency of this module?
A: The MP1584EM can achieve up to 92% efficiency under optimal conditions.