

The AC-DC Power Converter (Manufacturer Part ID: 120V-AC to 5V-DC) by AliExpress is a compact and efficient device designed to convert alternating current (AC) from a standard power outlet into direct current (DC) suitable for powering electronic devices. This component is widely used in power supply circuits for microcontrollers, sensors, and other low-power electronic systems.








The following table outlines the key technical details of the AC-DC Power Converter:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100V - 240V AC |
| Output Voltage | 5V DC |
| Output Current | 1A (maximum) |
| Power Rating | 5W |
| Efficiency | ≥ 80% |
| Operating Temperature | -20°C to +60°C |
| Dimensions | 50mm x 25mm x 20mm |
| Weight | 30g |
| Isolation Voltage | 3000V AC |
| Safety Standards | CE, RoHS compliant |
The AC-DC Power Converter typically has four pins or terminals for input and output connections. The table below describes each pin:
| Pin/Terminal | Label | Description |
|---|---|---|
| 1 | AC-L | Live wire input for AC voltage |
| 2 | AC-N | Neutral wire input for AC voltage |
| 3 | DC+ | Positive terminal for 5V DC output |
| 4 | DC- | Negative terminal (ground) for 5V DC output |
Input Connection:
Output Connection:
Power On:
The AC-DC Power Converter can be used to power an Arduino UNO. Below is an example circuit and code:
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the AC-DC converter is providing stable 5V DC to the Arduino
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
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Device Not Powering On:
Q1: Can this converter be used outdoors?
A1: No, this converter is not weatherproof. Use it only in dry, indoor environments.
Q2: Can I use this to charge a smartphone?
A2: Yes, if the smartphone's charging current requirement is 1A or less. However, ensure proper connections and safety precautions.
Q3: What happens if I connect a load requiring more than 1A?
A3: The converter may overheat, shut down, or fail. Always ensure the load does not exceed the specified current rating.
Q4: Is the output voltage adjustable?
A4: No, this converter provides a fixed 5V DC output.
By following this documentation, you can safely and effectively use the AC-DC Power Converter in your electronic projects.