

The Step Down Buck Converter by AC Delivery is a highly efficient DC-DC converter designed to step down voltage from a higher level to a lower level. This component is widely used in applications where power efficiency and precise voltage regulation are critical. By utilizing a switching element, an inductor, and a diode, the Buck Converter ensures minimal energy loss during the voltage conversion process.








The following table outlines 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., 12V). |
| 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):
Connect the Output Voltage (VOUT):
Adjust the Output Voltage (if applicable):
Power On the Circuit:
The Buck Converter can be used to power an Arduino UNO from a 12V source by stepping down the voltage to 5V.
Here is a simple Arduino sketch to blink an LED while powered by the Buck Converter:
// Blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the Buck Converter (5V output)
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
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Device 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: How do I adjust the output voltage?
A2: Use the onboard potentiometer (if available) to fine-tune the output voltage. Measure the voltage with a multimeter during adjustment.
Q3: Can the Buck Converter step up voltage?
A3: No, the Buck Converter is designed only to step down voltage. For stepping up voltage, use a Boost Converter.
Q4: Is the Buck Converter safe for sensitive electronics?
A4: Yes, but ensure proper filtering (e.g., capacitors) to minimize ripple and noise.
By following this documentation, users can effectively integrate the AC Delivery Step Down Buck Converter into their projects for efficient and reliable voltage regulation.