

The DC-DC Buck Converter by DROK is a highly efficient power electronics device designed to step down voltage from a higher level to a lower level. It achieves this through a combination of switching elements, inductors, and diodes, ensuring minimal energy loss during the conversion process. This component is widely used in applications where regulated lower voltage is required from a higher voltage source.








| Parameter | Value | 
|---|---|
| Input Voltage Range | 6V to 36V | 
| Output Voltage Range | 1.25V to 32V (adjustable) | 
| Maximum Output Current | 5A (with proper heat dissipation) | 
| Output Power | Up to 75W | 
| Efficiency | Up to 96% (depending on input/output ratio) | 
| Switching Frequency | 180 kHz | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 61mm x 26mm x 15mm | 
| Pin Name | Description | 
|---|---|
| VIN+ | Positive input voltage terminal (connect to the higher voltage source). | 
| VIN- | Negative input voltage terminal (connect to the ground of the voltage source). | 
| VOUT+ | Positive output voltage terminal (connect to the load). | 
| VOUT- | Negative output voltage terminal (connect to the ground of the load). | 
| Adjustment Potentiometer | Used to adjust the output voltage. Rotate clockwise to increase voltage and counterclockwise to decrease voltage. | 
Connect the Input Voltage:
VIN+ pin.VIN- pin.Connect the Output Load:
VOUT+ pin.VOUT- pin.Adjust the Output Voltage:
Verify Connections:
Power On:
The DC-DC Buck Converter can be used to power an Arduino UNO from a 12V power source. Below is an example circuit and code:
VIN+ and VIN- pins of the buck converter.VOUT+ pin to the Arduino's 5V pin.VOUT- pin to the Arduino's GND pin.// Example code to blink an LED using Arduino UNO powered by the DC-DC Buck Converter
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
}
| Issue | Possible Cause | Solution | 
|---|---|---|
| No output voltage | Incorrect wiring or polarity | Verify all connections and ensure correct polarity. | 
| Output voltage is unstable | Insufficient input voltage or high load current | Ensure input voltage is within range and reduce the load current if needed. | 
| Overheating | High current draw or inadequate heat dissipation | Add a heatsink or active cooling to the converter. | 
| Cannot adjust output voltage | Faulty potentiometer or incorrect input voltage | Check the potentiometer and ensure input voltage is higher than output. | 
| High output ripple or noise | Insufficient filtering | Add capacitors (e.g., 100µF electrolytic and 0.1µF ceramic) at the output. | 
Can I use this converter to power a Raspberry Pi?
What happens if I reverse the input polarity?
Can I use this converter with a solar panel?
How do I reduce noise in sensitive applications?
What is the efficiency of the converter at low loads?
This documentation provides a comprehensive guide to using the DROK DC-DC Buck Converter effectively and safely. For further assistance, refer to the manufacturer's datasheet or contact technical support.