

The 24V to 9V DC-DC buck converter is a power regulation module designed to step down a 24V input voltage to a stable 9V output voltage. This component is highly efficient, making it ideal for applications where energy conservation is critical. It is commonly used in battery-powered systems, industrial automation, automotive electronics, and embedded systems requiring a reliable 9V power source.








Below are the key technical details of the 24V to 9V DC-DC buck converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 18V to 26V |
| Output Voltage | 9V ± 0.1V |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 45mm x 25mm x 15mm |
The module typically has four pins or terminals for input and output connections:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (18V-26V) |
| VIN- | Negative input voltage terminal (GND) |
| VOUT+ | Positive output voltage terminal (9V) |
| VOUT- | Negative output voltage terminal (GND) |
Connect the Input Voltage:
Connect the Output Voltage:
Verify Connections:
Power On:
The 24V to 9V DC-DC buck converter can be used to power an Arduino UNO, which operates at 5V but can accept a 9V input through its barrel jack. Below is an example circuit and Arduino code:
// Example code to blink an LED connected to pin 13
// Ensure the Arduino UNO is powered via the 9V output of the buck 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
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Module Not Working After Connection:
Q: Can I use this module to power a 9V battery charger?
A: Yes, as long as the charger operates within the module's output current limit (3A).
Q: Is the module protected against reverse polarity?
A: Most modules do not include reverse polarity protection. Always double-check connections before powering on.
Q: Can I use this module with a 12V input?
A: No, the input voltage must be within the specified range of 18V-26V for proper operation.
Q: Does the module require additional capacitors?
A: The module typically includes onboard capacitors for filtering. However, you can add external capacitors for additional stability if needed.
This concludes the documentation for the 24V to 9V DC-DC buck converter.