A buck power supply is a type of DC-DC converter that steps down voltage from a higher level (12V) to lower levels (5V and 3.3V) efficiently. It is widely used in electronic circuits to provide stable and regulated output voltages for powering microcontrollers, sensors, and other low-voltage devices. This component is highly efficient, compact, and ideal for applications where power conservation and heat management are critical.
Parameter | Value |
---|---|
Input Voltage Range | 6V to 24V |
Output Voltage Options | 12V, 5V, 3.3V |
Maximum Output Current | 3A (varies by output voltage) |
Efficiency | Up to 95% |
Switching Frequency | 150 kHz |
Operating Temperature | -40°C to +85°C |
Dimensions | Typically 25mm x 20mm x 10mm |
Pin Name | Description |
---|---|
VIN | Input voltage pin (connect 6V-24V DC) |
GND | Ground pin (common ground for input and output) |
VOUT 12V | 12V output pin |
VOUT 5V | 5V output pin |
VOUT 3.3V | 3.3V output pin |
To power an Arduino UNO using the 5V output of the buck converter:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered via the 5V output of the buck converter.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Q: Can I use this module to power multiple devices simultaneously?
A: Yes, as long as the total current draw does not exceed the maximum output current (3A).
Q: Is the output voltage adjustable?
A: No, this module provides fixed output voltages of 12V, 5V, and 3.3V.
Q: Can I use this module with a battery as the input source?
A: Yes, ensure the battery voltage is within the 6V-24V range.
Q: Does this module have reverse polarity protection?
A: Most modules do not include reverse polarity protection. Always double-check the polarity before connecting the input voltage.