

The MEAN WELL DRS-240-48 is a high-performance 240W, 48V DC-DC power supply designed for industrial applications. It offers high efficiency, a compact form factor, and robust protection features, making it ideal for powering sensitive electronic equipment in demanding environments. This power supply is widely used in industrial automation, telecommunications, and control systems where reliable and stable power delivery is critical.








| Parameter | Value |
|---|---|
| Input Voltage Range | 90-264 VAC / 127-370 VDC |
| Output Voltage | 48V DC |
| Output Power | 240W |
| Efficiency | Up to 94% |
| Operating Temperature | -30°C to +70°C |
| Dimensions | 40mm x 125.2mm x 113.5mm |
| Weight | 0.7 kg |
| Protections | Overvoltage, Overcurrent, |
| Short Circuit, Overtemperature |
The DRS-240-48 features screw terminal connections for input and output. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| L | Live AC input |
| N | Neutral AC input |
| FG | Frame Ground (Earth connection) |
| Pin Name | Description |
|---|---|
| +V | Positive DC output (48V) |
| -V | Negative DC output (Ground) |
| Pin Name | Description |
|---|---|
| DC OK | Signal output for power status |
| Trim | Output voltage adjustment |
The DRS-240-48 can be used to power an Arduino UNO by stepping down the 48V output to 5V using a DC-DC buck converter. Below is an example of how to monitor the DC OK signal with the Arduino:
// Arduino code to monitor the DC OK signal from the DRS-240-48
const int dcOkPin = 2; // Connect DC OK pin to Arduino 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 the DC OK signal
if (dcOkStatus == HIGH) {
Serial.println("Power supply is OK."); // Print status if power is stable
} else {
Serial.println("Power supply issue detected!"); // Print warning if unstable
}
delay(1000); // Wait 1 second before checking again
}
No Output Voltage
Overcurrent Protection Triggered
Overheating
DC OK Signal Not Working
Q: Can the DRS-240-48 be used with a battery system?
A: Yes, it can be used to charge batteries, but ensure the output voltage and current are compatible with the battery specifications.
Q: How do I adjust the output voltage?
A: Use the Trim pin to adjust the output voltage. Refer to the datasheet for the adjustment range and procedure.
Q: Is the DRS-240-48 suitable for outdoor use?
A: The unit is not weatherproof. If outdoor use is required, it must be installed in a weatherproof enclosure.
Q: What is the warranty period for the DRS-240-48?
A: Warranty terms vary by region. Refer to the manufacturer's documentation or contact your supplier for details.