

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.








Below are 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 |
| Polarity | Center positive (for barrel jack) |
| Efficiency | ≥ 80% |
| Operating Temperature | 0°C to 40°C |
| Storage Temperature | -20°C to 70°C |
| Safety Features | Overvoltage, overcurrent, and short-circuit protection |
For barrel jack connectors, the pin configuration is as follows:
| Pin | Description |
|---|---|
| Center Pin | Positive terminal (+5V DC) |
| Outer Sleeve | Negative terminal (Ground) |
For USB-A connectors, the pin configuration is as follows:
| Pin | Description |
|---|---|
| VBUS (Pin 1) | Positive terminal (+5V DC) |
| D- (Pin 2) | Data line (not used for power) |
| D+ (Pin 3) | Data line (not used for power) |
| GND (Pin 4) | Negative terminal (Ground) |
The 5V DC Adapter can be used to power an Arduino UNO via its barrel jack input. Below is an example of how to connect and use the adapter:
Here is a simple Arduino sketch to blink an LED while powered by the 5V DC Adapter:
// Blink an LED connected to pin 13 on the Arduino UNO
// Ensure the Arduino is powered by the 5V DC Adapter
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 Not Powering On:
Adapter Overheating:
Intermittent Power Supply:
No Output Voltage:
Q1: Can I use the 5V DC Adapter to charge my smartphone?
A1: Yes, if the adapter has a USB-A output and meets the current requirements of your smartphone.
Q2: Is the adapter safe to use with sensitive electronics?
A2: Yes, most 5V DC Adapters include safety features like overvoltage and short-circuit protection, making them safe for sensitive devices.
Q3: Can I use the adapter with a device requiring more than 5V?
A3: No, using the adapter with devices requiring higher voltages may result in insufficient power or device malfunction.
Q4: How do I check the polarity of the adapter?
A4: Use a multimeter to measure the voltage at the connector. The center pin should be positive, and the outer sleeve should be negative.
By following this documentation, users can safely and effectively utilize the 5V DC Adapter in their electronic projects and devices.