

A power supply 24VDC is an electronic device that converts alternating current (AC) voltage from a mains power source into a stable 24V direct current (DC) output. This component is essential for powering a wide range of electronic devices, industrial equipment, and control systems that require a reliable 24V DC power source.








Below are the key technical details for a typical 24VDC power supply:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 24V DC ± 1% |
| Output Current | 1A to 10A (varies by model) |
| Power Rating | 24W to 240W (depending on model) |
| Efficiency | ≥ 85% |
| Ripple and Noise | ≤ 120mVp-p |
| Operating Temperature | -10°C to +50°C |
| Protection Features | Overvoltage, Overcurrent, Short Circuit |
| Cooling Method | Natural convection or fan-cooled |
| Dimensions | Varies by model (e.g., 110mm x 78mm x 36mm) |
The power supply typically has input and output terminals for wiring. Below is a general description:
| Pin/Terminal | Label | Description |
|---|---|---|
| 1 | L | Live AC input (mains power) |
| 2 | N | Neutral AC input (mains power) |
| 3 | GND | Earth/ground connection |
| 4 | +V | Positive 24V DC output |
| 5 | -V | Negative 24V DC output (ground for DC load) |
Note: Always refer to the specific datasheet of your power supply model for exact pin configurations.
Wiring the Input:
L terminal to the live wire of the AC mains supply.N terminal to the neutral wire of the AC mains supply.GND terminal to the earth/ground wire for safety.Wiring the Output:
+V terminal to the positive input of your load or circuit.-V terminal to the ground or negative input of your load or circuit.Powering On:
Load Considerations:
A 24VDC power supply can be used to power an Arduino UNO indirectly via a step-down voltage regulator (e.g., LM2596) to convert 24V to 5V. Below is an example circuit and Arduino code:
+V and -V terminals of the power supply to the input of the step-down regulator.5V pin and GND pin.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the 5V pin from the step-down regulator
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:
Load Not Powering On:
By following this documentation, you can safely and effectively use a 24VDC power supply in your projects and applications.