

The Mini AC-DC 110V-230V to 5V 2000mA Module is a compact and efficient power supply module designed to convert high AC voltage (110V-230V) into a stable 5V DC output. With a maximum current output of 2000mA, this module is ideal for powering low-voltage electronic devices, microcontrollers, IoT devices, and other small circuits. Its small size and high efficiency make it a popular choice for embedded systems and DIY electronics projects.








| Parameter | Value |
|---|---|
| Input Voltage Range | 110V AC to 230V AC |
| Output Voltage | 5V DC |
| Maximum Output Current | 2000mA (2A) |
| Power Output | 10W |
| Efficiency | ≥ 80% |
| Operating Temperature | -25°C to +70°C |
| Dimensions | Compact (varies by model) |
| Isolation Voltage | 3000V AC |
| Protection Features | Overload, short circuit, and over-temperature protection |
| Pin Name | Description |
|---|---|
| AC IN (L) | Live wire input for AC voltage (110V-230V). |
| AC IN (N) | Neutral wire input for AC voltage (110V-230V). |
| DC OUT (+) | Positive terminal for 5V DC output. |
| DC OUT (-) | Negative terminal (ground) for 5V DC output. |
AC IN (L) pin to the live wire of the AC power source.AC IN (N) pin to the neutral wire of the AC power source.DC OUT (+) pin to the positive terminal of your load or circuit.DC OUT (-) pin to the ground terminal of your load or circuit.The Mini AC-DC module can be used to power an Arduino UNO directly via its 5V pin. Below is an example of how to connect the module and a simple Arduino sketch to blink an LED.
DC OUT (+) pin of the module to the 5V pin of the Arduino UNO.DC OUT (-) pin of the module to the GND pin of the Arduino UNO.// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect wiring of AC input | Double-check the AC IN (L) and AC IN (N) connections. |
| Output voltage is unstable | Overloading the module | Ensure the connected load does not exceed 2000mA. |
| Module overheating | Insufficient ventilation or high load | Reduce the load or improve heat dissipation. |
| Arduino or device not powering on | Loose connections or faulty wiring | Verify all connections and ensure proper contact. |
Can this module power a Raspberry Pi?
Is the module safe to use in open circuits?
Can I use this module outdoors?
What happens if the input voltage exceeds 230V AC?
By following these guidelines and precautions, you can safely and effectively use the Mini AC-DC 110V-230V to 5V 2000mA Module in your projects.