

The 120V AC to 24V DC 600W power supply unit is a high-performance device designed to convert standard 120V alternating current (AC) from the mains into a stable 24V direct current (DC). With a maximum output power of 600 watts, this power supply is ideal for powering industrial equipment, LED lighting systems, motor drivers, and other electronic devices requiring a reliable 24V DC source. Its robust design ensures efficient operation and long-term reliability in demanding applications.








| Parameter | Value |
|---|---|
| Input Voltage Range | 100V - 120V 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 (fan) |
| Protection Features | Overload, overvoltage, |
| overtemperature, short circuit |
The power supply unit typically has screw terminals for input and output connections. Below is the pin configuration:
| Terminal Label | Description |
|---|---|
| L | Live wire input (120V AC) |
| N | Neutral wire input (120V AC) |
| GND | Earth/ground connection |
| +V | Positive DC output (24V) |
| -V | Negative DC output (0V, ground) |
Input Connection:
L terminal to the live wire of the 120V AC mains.N terminal to the neutral wire of the 120V AC mains.GND terminal to the earth/ground for safety.Output Connection:
+V terminal to the positive input of your load or circuit.-V terminal to the ground or negative input of your load or circuit.Power On:
Load Considerations:
The 120V AC to 24V DC power supply can be used to power devices like an Arduino UNO through a step-down DC-DC converter (e.g., 24V to 5V). Below is an example:
+V and -V terminals of the power supply to the input of a DC-DC converter.5V and GND pins.// Example Arduino code to blink an LED
// Connect an LED to pin 13 with a resistor in series
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:
L and N terminals are connected to the live and neutral wires of the mains. Check the mains power supply.Overheating:
Output Voltage Fluctuations:
Short Circuit Protection Triggered:
Q1: Can this power supply be used with 240V AC input?
A1: No, this power supply is designed for 100V - 120V AC input only. Using 240V 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. Refer to the specific model's datasheet for details.
Q3: Can I connect multiple loads to the output?
A3: Yes, as long as the total load does not exceed 600W or 25A.
Q4: What type of fuse should I use on the input side?
A4: Use a fuse rated for 120V AC and slightly above the maximum input current (e.g., 10A fuse for a 600W load).