

The AC-DC Power Converter (Manufacturer: AliExpress SZHSD Technology Store, Part ID: 5V 2.2 Amp Output) is a compact and efficient device designed to convert alternating current (AC) from a mains power source into direct current (DC). This component is widely used in power supply circuits to provide a stable DC voltage and current for powering electronic devices.








The following table outlines the key technical details of the AC-DC Power Converter:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 100V - 240V AC |
| Input Frequency | 50Hz - 60Hz |
| Output Voltage | 5V DC |
| Output Current | 2.2A |
| Power Output | 11W |
| Efficiency | ≥ 85% |
| Operating Temperature | -20°C to +60°C |
| Dimensions | 50mm x 25mm x 15mm |
| Safety Features | Over-voltage, over-current, and short-circuit protection |
The AC-DC Power Converter typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| AC IN (L) | Live wire input for AC mains power |
| AC IN (N) | Neutral wire input for AC mains power |
| DC OUT (+) | Positive terminal for 5V DC output |
| DC OUT (-) | Negative terminal (ground) for 5V DC output |
Connect the AC Input:
Connect the DC Output:
Verify Connections:
Power On:
The AC-DC Power Converter can be used to power an Arduino UNO. Below is an example of how to connect it:
Here is a simple Arduino sketch to blink an LED while powered by the AC-DC converter:
// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the AC-DC converter is properly connected to the Arduino's Vin and GND.
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:
Q: Can this converter be used with a 12V DC device?
A: No, this converter outputs a fixed 5V DC. Using it with a 12V device may result in insufficient power or device malfunction.
Q: Is the converter safe to use with sensitive electronics?
A: Yes, the converter includes over-voltage, over-current, and short-circuit protection, making it safe for most sensitive electronics.
Q: Can I use this converter outdoors?
A: The converter is not weatherproof. If outdoor use is required, ensure it is housed in a waterproof enclosure.
Q: What happens if the load exceeds 2.2A?
A: The converter's over-current protection will activate, shutting down the output to prevent damage.
By following this documentation, you can safely and effectively use the AC-DC Power Converter in your projects.