

The Mini 3A DC-DC Buck Converter (DZS IP1584) is a compact and efficient step-down voltage regulator designed to convert a higher DC input voltage to a lower DC output voltage. It is based on the IP1584 chip and is capable of delivering up to 3A of output current with high efficiency, making it ideal for a wide range of power supply applications.








Below are the key technical details of the Mini 3A DC-DC Buck Converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 4.5V to 28V |
| Output Voltage Range | 0.8V to 20V (adjustable via potentiometer) |
| Maximum Output Current | 3A |
| Efficiency | Up to 92% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The Mini 3A DC-DC Buck Converter has the following pinout:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin (connect to the higher DC voltage) |
| VOUT | Output voltage pin (connect to the load) |
| GND | Ground pin (common ground for input and output) |
Connect the Input Voltage (VIN):
VIN pin.GND pin.Connect the Output Voltage (VOUT):
VOUT pin.GND pin.Adjust the Output Voltage:
Verify Connections:
Power On:
The Mini 3A DC-DC Buck Converter can be used to power an Arduino UNO from a 12V power source by stepping down the voltage to 5V. Below is an example circuit and Arduino code:
VIN and GND pins of the buck converter.VOUT pin of the buck converter to the 5V pin of the Arduino UNO.GND pin of the buck converter to the GND pin of the Arduino UNO.// Example code to blink an LED using Arduino UNO powered by the Mini 3A DC-DC Buck Converter
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an 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:
Output Voltage is Incorrect:
Module Overheating:
Load Not Powering On:
Q: Can I use this module to power a Raspberry Pi?
A: Yes, but ensure the output voltage is set to 5V and the current requirement of the Raspberry Pi (including peripherals) does not exceed 3A.
Q: Is the module protected against reverse polarity?
A: No, the module does not have reverse polarity protection. Always double-check the polarity of 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 input voltage range (4.5V to 28V) and the current does not exceed the module's limits.
Q: How do I know if the module is overheating?
A: If the module becomes too hot to touch or the output voltage becomes unstable, it may be overheating. Reduce the load or improve cooling.
By following this documentation, you can effectively use the Mini 3A DC-DC Buck Converter in your projects while ensuring safe and reliable operation.