

The Daygreen 24-12V to 5V DC-DC Step Down (Buck) Converter is a high-efficiency voltage regulator designed to step down input voltages ranging from 12V to 24V to a stable 5V output. With a maximum output current of 5A, this converter is ideal for powering low-voltage devices such as microcontrollers, sensors, and USB-powered devices from higher voltage sources like car batteries, solar panels, or industrial power supplies.








| Parameter | Value |
|---|---|
| Input Voltage Range | 12V to 24V DC |
| Output Voltage | 5V DC |
| Maximum Output Current | 5A |
| Efficiency | Up to 95% |
| Operating Temperature | -40°C to +85°C |
| Dimensions | Varies by model (compact size) |
| Manufacturer | Daygreen |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage (12V to 24V DC) |
| VIN- | Negative input voltage (ground) |
| VOUT+ | Positive output voltage (5V DC) |
| VOUT- | Negative output voltage (ground) |
VIN+ pin.VIN- pin.VOUT+ pin.VOUT- pin.The Daygreen DC-DC Step Down Converter can be used to power an Arduino UNO from a 12V car battery. Below is an example wiring and code:
VIN+ and negative terminal to VIN-.VOUT+ pin to the Arduino UNO's 5V pin.VOUT- pin to the Arduino UNO's GND pin.// Example code to blink an LED on pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the 5V output of the DC-DC converter
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect wiring or loose connections | Verify all connections and polarity. |
| Output voltage is unstable | Input voltage is outside the range | Ensure input voltage is between 12V-24V. |
| Converter overheats | Excessive load or poor ventilation | Reduce load or improve heat dissipation. |
| Connected device not powering on | Load exceeds 5A or wiring issue | Check load requirements and connections. |
By following this documentation, you can safely and effectively use the Daygreen 24-12V to 5V DC-DC Step Down (Buck) Converter in your projects.