

The DC DC Converter by Arceli (Part ID: DC DC Converter) is an electronic circuit designed to convert a direct current (DC) voltage from one level to another. This component is essential for voltage regulation and power management in a wide range of applications, including portable electronics, automotive systems, renewable energy systems, and industrial equipment. It ensures efficient power delivery by stepping up (boost), stepping down (buck), or both (buck-boost) the input voltage to meet the requirements of connected devices.








The following table outlines the key technical details of the Arceli DC DC Converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 3V to 40V |
| Output Voltage Range | 1.5V to 35V (adjustable) |
| Maximum Output Current | 3A (with heat sink) |
| Efficiency | Up to 92% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 43mm x 21mm x 14mm |
The DC DC Converter has the following pin configuration:
| Pin Name | Description |
|---|---|
| VIN | Input voltage terminal (connect to DC power source) |
| GND | Ground terminal (common ground for input and output) |
| VOUT | Output voltage terminal (connect to load) |
| ADJ | Voltage adjustment (use a potentiometer to set output voltage) |
Connect the Input Voltage:
VIN pin.GND pin.Set the Output Voltage:
VOUT pin to ensure it matches your desired value.Connect the Load:
VOUT pin.GND pin.Power On:
VIN, VOUT, and GND pins.The DC DC Converter can be used to power an Arduino UNO by stepping down a higher voltage (e.g., 12V) to 5V. Below is an example circuit and Arduino code:
VIN and GND pins of the converter.VOUT pin of the converter to the 5V pin of the Arduino UNO.GND pin of the converter to the GND pin of the Arduino UNO.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the DC DC Converter is providing a stable 5V to the Arduino
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:
Output Voltage is Unstable:
Output Voltage Does Not Match the Desired Value:
Overheating:
Q: Can the DC DC Converter step up and step down voltage?
A: No, this specific model is a buck converter, meaning it can only step down the input voltage.
Q: Can I use this converter with a lithium-ion battery?
A: Yes, as long as the battery voltage is within the input range (3V to 40V).
Q: How do I know if the converter is working correctly?
A: Use a multimeter to measure the output voltage and ensure it matches the desired value.
Q: Is the converter protected against reverse polarity?
A: No, reverse polarity can damage the converter. Always double-check your connections.