

The 5V DC Adapter is a power supply device designed to convert AC voltage from a standard wall outlet into a stable 5V DC output. This adapter is widely used to power a variety of electronic devices, including microcontrollers, sensors, and small appliances. Its compact design and reliable performance make it an essential component for hobbyists, engineers, and professionals working with low-power electronics.








The following table outlines the key technical details of the 5V DC Adapter:
| Parameter | Specification |
|---|---|
| Input Voltage | 100-240V AC, 50/60Hz |
| Output Voltage | 5V DC |
| Output Current | Typically 1A to 2A (varies by model) |
| Power Rating | 5W to 10W |
| Connector Type | Barrel jack (commonly 5.5mm x 2.1mm) or USB-A |
| Efficiency | ≥ 80% |
| Operating Temperature | 0°C to 40°C |
| Storage Temperature | -20°C to 70°C |
| Safety Features | Over-voltage, over-current, and short-circuit protection |
For adapters with a barrel jack connector, the pin configuration is as follows:
| Pin | Description |
|---|---|
| Center | Positive terminal (+5V) |
| Outer | Negative terminal (GND) |
For USB-A connectors, the pin configuration is:
| Pin | Description |
|---|---|
| VBUS | Positive terminal (+5V) |
| GND | Negative terminal (GND) |
| D+ | Data line (not used for power) |
| D- | Data line (not used for power) |
The Arduino UNO can be powered using a 5V DC adapter via its barrel jack connector. Below is an example of Arduino code to blink an LED while powered by the adapter:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered using a 5V DC adapter connected to the barrel jack.
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
}
Device Not Powering On:
Adapter Overheating:
Fluctuating Output Voltage:
Adapter Not Working:
Q: Can I use a 5V DC adapter to charge my smartphone?
A: Yes, if the adapter has a USB-A output and meets the current requirements of your smartphone.
Q: Is it safe to leave the adapter plugged in when not in use?
A: While most adapters are designed to be safe, it is recommended to unplug them when not in use to save energy and reduce wear.
Q: Can I use a 5V DC adapter with a higher current rating than my device requires?
A: Yes, as long as the voltage is 5V, the device will only draw the current it needs.
Q: How do I know if the adapter is center-positive?
A: Look for a polarity diagram on the adapter's label. A center-positive adapter will have a "+" symbol pointing to the center pin.
This concludes the documentation for the 5V DC Adapter.