

The Adapter 5V 2A is a power supply device designed to convert standard AC voltage (typically 100-240V) into a stable 5V DC output. It is capable of delivering up to 2A of current, making it suitable for powering a wide range of electronic devices. This adapter is commonly used in applications such as powering microcontrollers, single-board computers (e.g., Raspberry Pi), IoT devices, LED strips, and other low-power electronic circuits.








Below are the key technical details of the Adapter 5V 2A:
| Parameter | Specification |
|---|---|
| Input Voltage | 100-240V AC, 50/60Hz |
| Output Voltage | 5V DC |
| Maximum Output Current | 2A |
| Power Output | 10W |
| Connector Type | Barrel jack (commonly 5.5mm x 2.1mm) |
| Efficiency | ≥ 80% |
| Protection Features | Overcurrent, overvoltage, short-circuit protection |
The Adapter 5V 2A typically uses a barrel jack connector. Below is the pin configuration:
| Pin | Description |
|---|---|
| Center | Positive terminal (+5V DC) |
| Outer | Negative terminal (GND) |
To power an Arduino UNO with the Adapter 5V 2A:
If you want to use the adapter to power external components connected to the Arduino, ensure the total current draw (Arduino + components) does not exceed 2A.
Below is an example of a simple Arduino sketch to blink an LED while powered by the Adapter 5V 2A:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the adapter is connected to the Arduino's barrel jack input.
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
}
Adapter Not Powering the Device:
Device Not Turning On:
Adapter Overheating:
Intermittent Power Supply:
Q1: Can I use this adapter to charge a smartphone?
A1: This adapter provides 5V DC output, but it may not be suitable for charging smartphones unless the connector matches and the phone's charging circuit supports it.
Q2: Is this adapter compatible with Raspberry Pi?
A2: Yes, the Adapter 5V 2A can power most Raspberry Pi models. However, ensure the total current draw (including peripherals) does not exceed 2A.
Q3: What happens if I connect a device that requires more than 2A?
A3: The adapter may overheat, shut down, or fail. Always ensure the connected device's current requirements are within the adapter's limits.
Q4: Can I use this adapter outdoors?
A4: No, this adapter is not weatherproof. Use it only in dry, indoor environments.
By following these guidelines and best practices, you can safely and effectively use the Adapter 5V 2A in your electronic projects.