The USB Power Supply is a device designed to convert AC power from a standard wall outlet into a low-voltage DC output, typically 5V, suitable for charging or powering USB-compatible devices. Manufactured by USB, this component is widely used in consumer electronics, providing a reliable and efficient power source for smartphones, tablets, microcontrollers, and other USB-powered devices.
The USB Power Supply is designed to meet the power requirements of most USB devices. Below are its key technical details:
Parameter | Value |
---|---|
Input Voltage | 100-240V AC, 50/60Hz |
Output Voltage | 5V DC |
Output Current | 1A, 2A, or 3A (model-specific) |
Power Output | 5W, 10W, or 15W |
Connector Type | USB Type-A or USB Type-C |
Efficiency | ≥ 85% |
Operating Temperature | 0°C to 40°C |
Storage Temperature | -20°C to 70°C |
Safety Standards | CE, FCC, UL certified |
For USB Type-A connectors, the pinout is as follows:
Pin Number | Name | Description |
---|---|---|
1 | VBUS | +5V DC power output |
2 | D- | Data line (negative) |
3 | D+ | Data line (positive) |
4 | GND | Ground |
For USB Type-C connectors, the pinout is more complex, but the primary power-related pins are:
Pin Number | Name | Description |
---|---|---|
A1, A4, B1, B4 | VBUS | +5V DC power output |
A12, B12 | GND | Ground |
The USB Power Supply can be used to power an Arduino UNO via its USB port. Below is an example Arduino sketch to test the setup:
// Simple Blink Sketch for Arduino UNO
// This code blinks the onboard LED to confirm the USB power supply is working.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 (onboard LED) 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
Overheating
Intermittent Power Delivery
Voltage Drop
Q: Can I use this power supply with a Raspberry Pi?
A: Yes, as long as the power supply provides sufficient current (e.g., 2.5A for Raspberry Pi 4).
Q: Is this power supply compatible with fast charging?
A: No, this power supply provides a standard 5V output and does not support fast charging protocols like Quick Charge or Power Delivery.
Q: Can I use this power supply outdoors?
A: No, this power supply is designed for indoor use only. Use a weatherproof enclosure if outdoor use is necessary.
Q: What happens if I connect a device that requires less current?
A: The device will only draw the current it needs, so it is safe to use the power supply with lower-power devices.