

The MEAN WELL DRS-480-48 is a high-performance 480W, 48V DC-DC power supply designed for industrial applications. It offers high efficiency, a compact form factor, and robust reliability. This power supply is equipped with built-in protections against overvoltage, overcurrent, and short circuits, making it ideal for demanding environments. Its versatility and durability make it suitable for use in industrial automation, telecommunications, and renewable energy systems.








| Parameter | Value | 
|---|---|
| Input Voltage Range | 33V DC to 60V DC | 
| Output Voltage | 48V DC | 
| Output Power | 480W | 
| Efficiency | Up to 94% | 
| Operating Temperature | -30°C to +70°C | 
| Dimensions | 125.5 x 102 x 32 mm | 
| Weight | 0.8 kg | 
| Protections | Overvoltage, Overcurrent, | 
| Short Circuit, Overtemperature | 
The DRS-480-48 features screw terminal connections for input and output. Below is the pin configuration:
| Pin Label | Description | 
|---|---|
| +V IN | Positive DC input terminal | 
| -V IN | Negative DC input terminal | 
| +V OUT | Positive DC output terminal | 
| -V OUT | Negative DC output terminal | 
| GND | Ground connection for safety | 
| Remote ON/OFF | Remote control for enabling/disabling the output | 
+V IN and -V IN terminals. Ensure the input voltage is within the specified range to avoid damage.+V OUT and -V OUT terminals. Verify that the load does not exceed the maximum output power of 480W.GND terminal to the system ground for safety and noise reduction.Remote ON/OFF pin to enable or disable the output remotely. This can be controlled using a switch or a microcontroller.The DRS-480-48 can be used to power an Arduino UNO and other peripherals. Below is an example of how to connect it:
+V OUT terminal to the Arduino's VIN pin.-V OUT terminal to the Arduino's GND pin.// This code demonstrates how to control the Remote ON/OFF pin of the
// MEAN WELL DRS-480-48 using an Arduino UNO. The pin is toggled every
// 5 seconds to enable and disable the power supply output.
const int remoteControlPin = 7; // Pin connected to Remote ON/OFF terminal
void setup() {
  pinMode(remoteControlPin, OUTPUT); // Set the pin as an output
  digitalWrite(remoteControlPin, LOW); // Start with the power supply OFF
}
void loop() {
  digitalWrite(remoteControlPin, HIGH); // Turn ON the power supply
  delay(5000); // Wait for 5 seconds
  digitalWrite(remoteControlPin, LOW); // Turn OFF the power supply
  delay(5000); // Wait for 5 seconds
}
No Output Voltage
Overload Protection Triggered
Overheating
Remote ON/OFF Not Working
Remote ON/OFF pin and ensure the control signal is within the required voltage range.Q: Can the DRS-480-48 be used in parallel with other power supplies?
A: Yes, the DRS-480-48 supports parallel operation for increased power output. Follow the manufacturer's guidelines for proper configuration.
Q: Is the output voltage adjustable?
A: No, the output voltage is fixed at 48V.
Q: What type of loads can the DRS-480-48 handle?
A: The power supply can handle resistive, inductive, and capacitive loads, provided they are within the specified power and current limits.
Q: Does the DRS-480-48 have built-in EMI filtering?
A: Yes, the power supply includes built-in EMI filtering to reduce electromagnetic interference.