The Mini 360 Buck Converter is a compact, high-efficiency, step-down voltage regulator that converts a higher input voltage to a lower output voltage. It is based on the MP2307DN integrated circuit and is widely used in battery-powered devices, DIY electronics projects, and any application where voltage regulation is necessary to protect sensitive electronics.
Pin Number | Name | Description |
---|---|---|
1 | VIN | Input voltage (4.75V to 23V) |
2 | GND | Ground connection |
3 | VOUT | Regulated output voltage (1.0V to 17V) |
4 | EN | Enable pin (pull to ground to disable) |
Q: Can I use the Mini 360 Buck Converter to charge batteries?
Q: What is the purpose of the EN pin?
Q: How do I set the output voltage?
Below is an example code snippet for reading the output voltage of the Mini 360 Buck Converter using an Arduino UNO. This assumes you have connected the VOUT of the converter to an analog input (A0) on the Arduino.
const int analogPin = A0; // Connect VOUT to A0
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(analogPin);
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Output Voltage: ");
Serial.println(voltage);
delay(1000); // Wait for a second
}
Note: This code assumes a direct connection and does not account for voltage dividers that may be necessary for higher voltages. Always use a voltage divider when the expected voltage exceeds the microcontroller's maximum analog input voltage (5V for Arduino UNO).