

The 24/5V Buck Converter, manufactured by Arduino (Part ID: UNO), is a DC-DC step-down voltage regulator designed to efficiently convert a 24V input to a stable 5V output. This component is ideal for powering low-voltage devices from higher-voltage sources, ensuring minimal heat generation and high efficiency. It is widely used in embedded systems, IoT devices, robotics, and other applications requiring reliable 5V power from a 24V supply.








The following table outlines the key technical details of the 24/5V Buck Converter:
| Parameter | Value | 
|---|---|
| Input Voltage Range | 18V to 26V | 
| Output Voltage | 5V ± 0.1V | 
| Maximum Output Current | 3A | 
| Efficiency | Up to 95% | 
| Switching Frequency | 150 kHz | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 25mm x 20mm x 10mm | 
The 24/5V Buck Converter has the following pin configuration:
| Pin Name | Description | 
|---|---|
| VIN | Input voltage pin (connect to 24V power source) | 
| GND | Ground pin (common ground for input and output) | 
| VOUT | Regulated 5V output pin (connect to the load device) | 
Connect the Input Voltage:
Connect the Output Voltage:
Verify Connections:
Power On:
Below is an example of how to connect the 24/5V Buck Converter to an Arduino UNO:
// Example code for Arduino UNO powered by a 24/5V Buck Converter
// This code blinks an LED connected to pin 13
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:
Q: Can I use this buck converter with a 12V input?
A: No, the input voltage must be within the range of 18V to 26V for proper operation.
Q: Is the output voltage adjustable?
A: No, this buck converter provides a fixed 5V output.
Q: Can I use this converter to power multiple devices?
A: Yes, as long as the total current draw does not exceed 3A.
Q: Does the converter have built-in protection features?
A: Yes, it includes overcurrent and thermal protection to prevent damage under fault conditions.