The Mini-360 DC-DC Step Down Buck Converter is a compact, high-efficiency voltage regulator designed to step down voltage from a higher level to a lower level, using the principles of buck conversion. This component is widely used in battery-powered devices, power supplies, and DIY electronics projects where a specific lower voltage is required from a higher voltage source.
Pin Number | Name | Description |
---|---|---|
1 | VIN | Input voltage (4.75V to 23V) |
2 | GND | Ground connection |
3 | VOUT | Output voltage (1V to 17V) |
4 | GND | Ground connection for the output side |
If you're using the Mini-360 DC-DC Step Down Buck Converter to power an Arduino UNO, here's an example of how you might set up the converter and a simple code snippet to demonstrate functionality.
// This example assumes you are powering an Arduino UNO with the Mini-360 Buck Converter
void setup() {
// Initialize the Serial communication at 9600 baud rate
Serial.begin(9600);
}
void loop() {
// Read the input voltage on analog pin A0
int sensorValue = analogRead(A0);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V)
float voltage = sensorValue * (5.0 / 1023.0);
// Print out the voltage to the Serial Monitor
Serial.println(voltage);
// Wait for a second
delay(1000);
}
Note: In this example, the Arduino is powered through the 5V pin, which bypasses the onboard voltage regulator. The Mini-360 Buck Converter must be adjusted to provide a stable 5V output before connecting to the Arduino.
Remember to adjust the potentiometer on the Mini-360 to output exactly 5V before connecting it to the Arduino's 5V pin. Use a multimeter to verify the voltage.