

The Step Down Buck Converter by AC Delivery is a highly efficient DC-DC power converter designed to step down a higher input voltage to a lower output voltage while increasing the current. This component is widely used in applications requiring efficient power management, such as battery-powered devices, embedded systems, and portable electronics. Its compact design and high efficiency make it an essential component for modern electronic circuits.








Below are the key technical details of the AC Delivery Step Down Buck Converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 4.5V to 28V |
| Output Voltage Range | 0.8V to 20V (adjustable) |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The Step Down Buck Converter typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect the higher voltage source here (e.g., battery or adapter). |
| GND | Ground pin. Connect to the ground of the circuit. |
| VOUT | Output voltage pin. Provides the stepped-down voltage to the load. |
| ADJ (optional) | Adjustment pin. Used to set the output voltage (if adjustable). |
Connect the Input Voltage (VIN):
Connect the Ground (GND):
Set the Output Voltage (if adjustable):
Connect the Load:
Power On:
Below is an example of how to use the Step Down Buck Converter to power an Arduino UNO from a 12V source:
// Example code to blink an LED using Arduino UNO powered by the Buck Converter
// Ensure the Buck Converter is set to output 5V before connecting to the Arduino
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:
Overheating:
Output Voltage Fluctuations:
Load Not Powering On:
Q1: Can I use the Buck Converter to power a Raspberry Pi?
A1: Yes, but ensure the output voltage is set to 5V and the current rating meets the Raspberry Pi's requirements.
Q2: What happens if I exceed the maximum input voltage?
A2: Exceeding the input voltage range can permanently damage the converter. Always stay within the specified range.
Q3: Can I use the Buck Converter for audio applications?
A3: Yes, but consider adding additional filtering capacitors to minimize noise in audio circuits.
Q4: Is the Buck Converter bidirectional?
A4: No, the Buck Converter is not bidirectional. It only steps down voltage from input to output.
By following this documentation, you can effectively integrate the AC Delivery Step Down Buck Converter into your projects for efficient power management.