

The MINI560 is a compact, high-performance DC-DC buck converter designed for efficient voltage regulation in small electronic devices. It is ideal for applications requiring a stable and adjustable output voltage from a wide input voltage range. The MINI560 is commonly used in battery-powered devices, IoT modules, portable electronics, and embedded systems. Its built-in protection features, such as overcurrent and thermal shutdown, ensure reliable operation in various environments.








The MINI560 offers robust performance and flexibility for a variety of applications. Below are its key technical specifications:
The MINI560 is typically available in a 6-pin SOT-23 package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage pin. Connect to the power source (4.5V to 28V). |
| 2 | GND | Ground pin. Connect to the system ground. |
| 3 | SW | Switching output pin. Connect to the inductor and diode in the buck circuit. |
| 4 | FB | Feedback pin. Connect to a resistor divider to set the output voltage. |
| 5 | EN | Enable pin. Drive high to enable the converter, or low to disable it. |
| 6 | NC | No connection. Leave this pin unconnected or grounded. |
The MINI560 can be used to power an Arduino UNO by stepping down a higher voltage (e.g., 12V) to 5V. Below is an example circuit and Arduino code to demonstrate its usage:
// Example code to read a sensor and print data to the Serial Monitor
// The MINI560 is used to power the Arduino UNO at 5V
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(1000); // Wait for 1 second before the next reading
}
No Output Voltage
Output Voltage is Unstable
Excessive Heat
Output Voltage is Incorrect
Q: Can the MINI560 be used with a 3.3V output?
Q: What is the maximum efficiency of the MINI560?
Q: Is the MINI560 suitable for battery-powered applications?
Q: Can I use the MINI560 without an external diode?
This concludes the documentation for the MINI560. For further assistance, refer to the manufacturer's datasheet or contact technical support.