

The 120V AC to 24V DC 600W power supply unit is a high-performance device designed to convert standard 120V alternating current (AC) into 24V direct current (DC). With a maximum output power of 600 watts, this power supply is ideal for powering medium to high-power electronic devices and systems. It is commonly used in industrial automation, LED lighting systems, motor drives, and other applications requiring a stable and reliable DC power source.








Below are the key technical details of the 120V AC to 24V DC 600W power supply:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100V - 130V AC |
| Output Voltage | 24V DC |
| Maximum Output Power | 600W |
| Maximum Output Current | 25A |
| Efficiency | ≥ 85% |
| Frequency Range | 50Hz - 60Hz |
| Operating Temperature | -10°C to +50°C |
| Cooling Method | Forced air cooling (built-in fan) |
| Protection Features | Overload, overvoltage, short circuit |
| Dimensions | 215mm x 115mm x 50mm |
| Weight | ~1.2 kg |
The power supply unit typically has the following input and output terminals:
| Pin | Label | Description |
|---|---|---|
| L | Line | Connect to the live wire of the AC input. |
| N | Neutral | Connect to the neutral wire of the AC input. |
| GND | Ground | Connect to the earth/ground wire for safety. |
| Pin | Label | Description |
|---|---|---|
| V+ | Positive | Positive terminal for 24V DC output. |
| V- | Negative | Negative terminal for 24V DC output. |
L terminal to the live wire of the AC mains.N terminal to the neutral wire of the AC mains.GND terminal to the earth/ground wire for safety.V+ terminal to the positive input of your load or circuit.V- terminal to the negative input of your load or circuit.The 120V AC to 24V DC power supply can be used to power an Arduino UNO indirectly by stepping down the 24V DC to 5V DC using a DC-DC buck converter. Below is an example setup:
V+ and V- terminals of the power supply to the input of a DC-DC buck converter.5V and GND pins.// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the 5V output of the buck converter
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
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Fan Not Working:
Q1: Can this power supply be used with 220V AC input?
A1: No, this power supply is designed for 120V AC input only. Using it with 220V AC may damage the unit.
Q2: Is the output voltage adjustable?
A2: Some models may have a small potentiometer to fine-tune the output voltage. Check the product manual for details.
Q3: Can I connect multiple power supplies in parallel for higher current?
A3: It is not recommended unless the power supplies are specifically designed for parallel operation.
Q4: What type of fuse should I use for input protection?
A4: Use a fuse rated for 120V AC and slightly above the maximum input current (e.g., 10A).