

An AC adapter plug is a device that converts alternating current (AC) from a standard wall outlet into direct current (DC) to power electronic devices. It is commonly used to supply power to laptops, routers, small appliances, and other electronic devices that require a specific DC voltage and current. AC adapter plugs are available in various voltage and current ratings to suit different applications.








The technical specifications of an AC adapter plug vary depending on the model and intended application. Below are the general specifications for a typical AC adapter plug:
| Parameter | Description |
|---|---|
| Input Voltage | 100-240V AC, 50/60 Hz |
| Output Voltage | 5V, 9V, 12V, 19V, or other DC voltages |
| Output Current | 0.5A to 5A (varies by model) |
| Power Rating | 5W to 100W |
| Connector Type | Barrel plug, USB, or proprietary |
| Efficiency | ≥ 80% (varies by model) |
| Protection Features | Overvoltage, overcurrent, short circuit |
For AC adapter plugs with a barrel connector, the pin configuration is typically as follows:
| Pin Name | Description |
|---|---|
| Outer Sleeve | Ground (negative terminal) |
| Inner Pin | Positive terminal (DC output voltage) |
For USB-based AC adapters, the pin configuration follows the USB standard:
| Pin Name | Description |
|---|---|
| VBUS | +5V DC (or higher for USB-C PD) |
| D- | Data line (negative) |
| D+ | Data line (positive) |
| GND | Ground (negative terminal) |
To power an Arduino UNO using an AC adapter:
Here is an example Arduino sketch to verify the board is powered correctly:
// Simple LED blink program to test Arduino power
// Connect an LED to pin 13 with a resistor
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
}
Device Does Not Power On:
Overheating Adapter:
Intermittent Power:
Device Not Charging:
By following these guidelines, you can ensure safe and effective use of your AC adapter plug.