

The DC-DC 24V-5V Converter (Manufacturer: Elektrokit, Part ID: 41017426) is a step-down voltage regulator designed to convert a 24V DC input to a stable 5V DC output. This component is ideal for powering devices that require a lower voltage, such as microcontrollers, sensors, and other low-power electronics. Its compact design and high efficiency make it suitable for a wide range of applications, including industrial automation, automotive systems, and DIY electronics projects.








| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 24V DC |
| Output Voltage | 5V DC |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 25mm x 20mm x 10mm |
| Weight | 10g |
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin (6V to 24V DC) |
| GND | Ground pin (common ground for input and output) |
| VOUT | Regulated 5V DC output pin |
Connect the Input Voltage:
VIN pin.GND pin.Connect the Output Load:
VOUT pin.Verify Connections:
Power On:
The DC-DC 24V-5V Converter can be used to power an Arduino UNO from a 24V power source. Below is an example circuit and Arduino code to blink an LED:
VIN pin of the converter to the 24V power source.GND pin of the converter to the ground of the power source.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.// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the DC-DC converter provides a stable 5V to the Arduino.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect wiring or loose connections | Verify all connections and polarity. |
| Output voltage is not 5V | Input voltage is out of range | Ensure input voltage is between 6V and 24V. |
| Overheating | Excessive load or poor ventilation | Reduce load or improve heat dissipation. |
| Device not powering on | Insufficient input current | Use a power source capable of supplying sufficient current. |
Can this converter be used with a 12V input?
What happens if the load exceeds 3A?
Is the output voltage adjustable?
Can I use this converter in automotive applications?
Does the converter have reverse polarity protection?
This documentation provides all the necessary details to effectively use the DC-DC 24V-5V Converter in your projects. For further assistance, refer to the manufacturer's datasheet or contact Elektrokit support.