Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Plug Power Supply 5V: Examples, Pinouts, and Specs

Image of Plug Power Supply 5V
Cirkit Designer LogoDesign with Plug Power Supply 5V in Cirkit Designer

Introduction

The Plug Power Supply 5V is a compact and reliable device designed to convert standard AC voltage from a wall outlet (typically 100-240V AC) into a stable 5V DC output. This component is widely used to power low-voltage electronic devices, microcontrollers, sensors, and other circuits requiring a regulated 5V DC supply. Its ease of use and universal compatibility make it an essential tool for hobbyists, engineers, and professionals alike.

Explore Projects Built with Plug Power Supply 5V

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing Plug Power Supply 5V in a practical application
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
12V to 5V Power Supply with LED Indicator and Push Switch
Image of Power Supply LVCO: A project utilizing Plug Power Supply 5V in a practical application
This circuit is a 12V to 5V regulated power supply with an LED indicator. It uses a 5408 diode for reverse polarity protection, an LM340T5 7805 voltage regulator to step down the voltage to 5V, and a push switch to control the LED indicator. The circuit also includes capacitors for filtering and a resistor to limit the current through the LED.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered USB Charger with LED Indicator and DC Motor
Image of Copy of Hand Crank mobile charger : A project utilizing Plug Power Supply 5V in a practical application
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
220V to 5V Power Supply with Transformer and Bridge Rectifier
Image of POWER SUPPLY MODULE: A project utilizing Plug Power Supply 5V in a practical application
This circuit converts 220V AC power to a 5V DC output. It uses a transformer to step down the voltage, a bridge rectifier to convert AC to DC, and a capacitor to smooth the output. The final 5V DC is available through a connector.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Plug Power Supply 5V

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of rfdriver: A project utilizing Plug Power Supply 5V in a practical application
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
This circuit consists of two 5V 5A power supplies connected to an AC wall plug point, providing DC output through a 12-way connector. The ground connections from both power supplies are interconnected and also connected to the ground pins of two toggle switches. The DC outputs from the power supplies are separately connected to different pins on the 12-way connector, with each power supply output being switchable via one of the toggle switches.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Power Supply LVCO: A project utilizing Plug Power Supply 5V in a practical application
12V to 5V Power Supply with LED Indicator and Push Switch
This circuit is a 12V to 5V regulated power supply with an LED indicator. It uses a 5408 diode for reverse polarity protection, an LM340T5 7805 voltage regulator to step down the voltage to 5V, and a push switch to control the LED indicator. The circuit also includes capacitors for filtering and a resistor to limit the current through the LED.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Copy of Hand Crank mobile charger : A project utilizing Plug Power Supply 5V in a practical application
Battery-Powered USB Charger with LED Indicator and DC Motor
This circuit converts AC power to DC using a bridge rectifier and regulates the voltage to 5V with a 7805 voltage regulator. It powers a USB port and indicates power status with an LED, while also providing a charging interface through a multi-charging cable.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of POWER SUPPLY MODULE: A project utilizing Plug Power Supply 5V in a practical application
220V to 5V Power Supply with Transformer and Bridge Rectifier
This circuit converts 220V AC power to a 5V DC output. It uses a transformer to step down the voltage, a bridge rectifier to convert AC to DC, and a capacitor to smooth the output. The final 5V DC is available through a connector.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Powering microcontroller boards such as Arduino, Raspberry Pi, and ESP32.
  • Supplying power to sensors, modules, and small electronic circuits.
  • Charging USB-powered devices like smartphones and portable gadgets.
  • Providing a stable 5V DC source for prototyping and testing electronic projects.

Technical Specifications

The following table outlines the key technical details of the Plug Power Supply 5V:

Parameter Specification
Input Voltage 100-240V AC, 50/60Hz
Output Voltage 5V DC ± 5%
Output Current Typically 1A to 2.5A (varies by model)
Power Rating 5W to 12.5W (depending on current)
Connector Type USB-A, USB-C, or barrel jack
Efficiency ≥ 80%
Protection Features Overvoltage, overcurrent, and short-circuit protection

Pin Configuration and Descriptions

For models with a barrel jack connector, the pin configuration is as follows:

Pin Description
Center Positive terminal (+5V)
Outer Negative terminal (GND)

For USB-based models, the pin configuration is standard for USB connectors:

  • VCC (5V): Supplies the 5V DC output.
  • GND: Ground connection.

Usage Instructions

How to Use the Plug Power Supply 5V in a Circuit

  1. Verify Compatibility: Ensure the device or circuit you are powering operates at 5V DC and does not exceed the current rating of the power supply.
  2. Connect the Output:
    • For barrel jack models, connect the center pin to the positive terminal of your circuit and the outer pin to ground.
    • For USB models, plug the USB connector into the device or a USB breakout board.
  3. Plug into an AC Outlet: Insert the power supply into a standard wall outlet (100-240V AC).
  4. Power On the Circuit: Once connected, the power supply will provide a stable 5V DC output to your device.

Important Considerations and Best Practices

  • Check Polarity: For barrel jack models, ensure the polarity matches your circuit's requirements to avoid damage.
  • Avoid Overloading: Do not exceed the maximum current rating of the power supply, as this may trigger protection features or damage the unit.
  • Use Proper Connectors: Ensure secure and reliable connections to prevent voltage drops or intermittent power issues.
  • Ventilation: Avoid covering the power supply during operation to prevent overheating.

Example: Using with an Arduino UNO

The Plug Power Supply 5V can be used to power an Arduino UNO via its barrel jack or USB port. Below is an example of Arduino code to blink an LED when powered by the 5V supply:

// Blink an LED connected to pin 13
// Ensure the Arduino is powered by the Plug Power Supply 5V

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
}

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Output Voltage:

    • Cause: The power supply may not be properly plugged into the AC outlet.
    • Solution: Ensure the power supply is securely connected to the wall outlet and the circuit.
  2. Device Not Powering On:

    • Cause: The current demand of the device exceeds the power supply's rating.
    • Solution: Use a power supply with a higher current rating.
  3. Overheating:

    • Cause: The power supply is overloaded or lacks proper ventilation.
    • Solution: Reduce the load or ensure adequate airflow around the power supply.
  4. Intermittent Power:

    • Cause: Loose connections or damaged cables.
    • Solution: Check all connections and replace damaged cables if necessary.

FAQs

  • Q: Can I use this power supply with a Raspberry Pi?
    A: Yes, as long as the current rating meets the Raspberry Pi's requirements (typically 2.5A for newer models).

  • Q: Is this power supply safe for continuous operation?
    A: Yes, the Plug Power Supply 5V is designed for continuous use, provided it is not overloaded and has proper ventilation.

  • Q: Can I use this power supply outdoors?
    A: No, unless explicitly stated by the manufacturer, this power supply is intended for indoor use only.

By following these guidelines and best practices, you can ensure reliable and safe operation of the Plug Power Supply 5V in your electronic projects.