

The Phoenix QUINT4-PS/1AC/24DC/10 (Manufacturer Part ID: 2904601) is a high-performance industrial power supply unit designed to convert a single-phase AC input into a stable 24V DC output. With a maximum output current of 10A, this power supply is ideal for demanding industrial applications requiring reliable and efficient power delivery. Its compact design, high efficiency, and advanced monitoring features make it a versatile choice for powering sensitive electronic devices and automation systems.








| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC (85-264V AC operational) |
| Input Frequency | 50/60 Hz |
| Output Voltage | 24V DC |
| Output Current | 10A |
| Output Power | 240W |
| Efficiency | Up to 94.6% |
| Operating Temperature Range | -25°C to +70°C |
| Dimensions (W x H x D) | 48 x 130 x 125 mm |
| Weight | Approx. 0.9 kg |
| Protection Features | Overload, short-circuit, overvoltage, and thermal protection |
| Certifications | CE, UL, IEC 61010, and more |
The Phoenix QUINT4-PS/1AC/24DC/10 features screw terminal connections for input and output wiring. Below is the pin configuration:
| Pin Label | Description |
|---|---|
| L | Live AC input |
| N | Neutral AC input |
| PE | Protective Earth (Ground) |
| Pin Label | Description |
|---|---|
| + | Positive DC output (24V) |
| - | Negative DC output (Ground) |
| Pin Label | Description |
|---|---|
| DC OK | Monitoring signal for output status (active high) |
| Remote | Remote on/off control input |
L (Live) and N (Neutral) terminals.PE terminal for safety.+ (Positive) and - (Negative) terminals.DC OK terminal to monitor the output status. This can be connected to a PLC or indicator circuit.Remote terminal for remote on/off control if required.DC OK signal to monitor the health of the power supply in critical applications.The Phoenix QUINT4-PS/1AC/24DC/10 can be used to power an Arduino UNO. Below is an example wiring and code snippet:
+ terminal of the power supply to the Arduino's VIN pin.- terminal of the power supply to the Arduino's GND pin.// Example code to monitor the DC OK signal from the power supply
const int dcOkPin = 2; // Connect DC OK signal to digital pin 2
void setup() {
pinMode(dcOkPin, INPUT); // Set DC OK pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int dcOkStatus = digitalRead(dcOkPin); // Read DC OK signal
if (dcOkStatus == HIGH) {
Serial.println("Power supply is operating normally.");
} else {
Serial.println("Power supply output is not OK!");
}
delay(1000); // Wait for 1 second before checking again
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | No AC input or incorrect wiring | Verify AC input voltage and wiring |
| Output voltage too low or unstable | Overloaded output or poor connections | Reduce load or check wiring |
| Power supply overheating | Insufficient ventilation or overload | Improve airflow or reduce load |
| DC OK signal not active | Faulty output or incorrect connection | Check load and signal wiring |
Can this power supply be used with a 12V DC load?
What happens if the load exceeds 10A?
Is the power supply suitable for outdoor use?
Can I connect multiple units in parallel for higher current?
By following this documentation, users can effectively integrate the Phoenix QUINT4-PS/1AC/24DC/10 into their systems for reliable and efficient power delivery.