

The 180W 36V 5A SMPS (WX-DC2416) is a high-efficiency Switching Mode Power Supply (SMPS) designed to convert AC mains power into a stable DC output of 36V at 5A. With a total power output of 180W, this SMPS is ideal for powering medium to high-power electronic devices and systems. Its compact design, high efficiency, and reliable performance make it suitable for a wide range of applications.








The following table outlines the key technical details of the WX-DC2416 SMPS:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 36V DC |
| Output Current | 5A |
| Output Power | 180W |
| Efficiency | ≥85% |
| Ripple and Noise | ≤120mVp-p |
| Operating Temperature | -10°C to +60°C |
| Cooling Method | Natural air cooling |
| Dimensions | 159mm x 97mm x 38mm |
| Weight | ~450g |
| Protection Features | Overload, Overvoltage, Short Circuit |
The WX-DC2416 SMPS has input and output terminals for AC and DC connections. The pin configuration is as follows:
| Pin | Label | Description |
|---|---|---|
| 1 | L | Live wire (AC input) |
| 2 | N | Neutral wire (AC input) |
| 3 | GND | Earth/ground connection |
| Pin | Label | Description |
|---|---|---|
| 1 | V+ | Positive DC output (36V) |
| 2 | V- | Negative DC output (Ground) |
Input Connection:
Output Connection:
Power On:
Adjustments (if applicable):
The WX-DC2416 can be used to power an Arduino UNO and other peripherals. Below is an example circuit and code to control an LED using the SMPS as the power source.
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the SMPS provides a stable 36V DC to the Arduino's Vin pin
// through a voltage regulator or step-down module if required.
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
}
Note: The Arduino UNO operates at 5V. If using the WX-DC2416 directly, a step-down converter (e.g., LM2596) is required to reduce the 36V output to 5V.
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect input connections | Verify AC input connections (L, N, GND). |
| Output voltage fluctuates | Overload or unstable input voltage | Reduce the load or stabilize the input voltage. |
| SMPS overheats | Poor ventilation or excessive load | Ensure proper airflow and reduce the load. |
| Load not functioning properly | Incorrect polarity or voltage mismatch | Check polarity and ensure load voltage compatibility. |
Can I use this SMPS to charge a 36V battery?
Is the SMPS suitable for outdoor use?
Can I adjust the output voltage?
What happens if the load exceeds 5A?
By following this documentation, users can safely and effectively integrate the WX-DC2416 SMPS into their projects.