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

How to Use 5V 20A DC: Examples, Pinouts, and Specs

Image of 5V 20A DC
Cirkit Designer LogoDesign with 5V 20A DC in Cirkit Designer

Introduction

The 5V 20A DC power supply is a reliable and efficient source of direct current (DC) power, delivering a stable 5 volts with a maximum current capacity of 20 amperes. This power supply is commonly used in applications requiring high current, such as powering LED strips, single-board computers (e.g., Raspberry Pi), motor drivers, and other electronic devices or circuits. Its robust design ensures consistent performance, making it ideal for both hobbyist and industrial use.

Explore Projects Built with 5V 20A DC

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered USB Charger with LED Indicator and DC Motor
Image of Copy of Hand Crank mobile charger : A project utilizing 5V 20A DC 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
Dual 5V Power Supply Distribution Circuit with Toggle Switch Control
Image of rfdriver: A project utilizing 5V 20A DC 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
USB-Powered DC Gear Motor with LED Indicator
Image of Hand Crank mobile charger : A project utilizing 5V 20A DC in a practical application
This circuit appears to be a power supply unit with a bridge rectifier connected to a DC gear motor, indicating it is designed to convert AC to DC power for the motor. An electrolytic capacitor is used for smoothing the DC output, and a 7805 voltage regulator is included to provide a stable 5V output. Additionally, there is an LED with a series resistor, likely serving as a power indicator light.
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 5V 20A DC 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 5V 20A DC

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 Copy of Hand Crank mobile charger : A project utilizing 5V 20A DC 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 rfdriver: A project utilizing 5V 20A DC 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 Hand Crank mobile charger : A project utilizing 5V 20A DC in a practical application
USB-Powered DC Gear Motor with LED Indicator
This circuit appears to be a power supply unit with a bridge rectifier connected to a DC gear motor, indicating it is designed to convert AC to DC power for the motor. An electrolytic capacitor is used for smoothing the DC output, and a 7805 voltage regulator is included to provide a stable 5V output. Additionally, there is an LED with a series resistor, likely serving as a power indicator light.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of POWER SUPPLY MODULE: A project utilizing 5V 20A DC 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

Technical Specifications

Below are the key technical details of the 5V 20A DC power supply:

Parameter Value
Input Voltage 100-240V AC (50/60Hz)
Output Voltage 5V DC
Maximum Output Current 20A
Power Output 100W
Efficiency ≥85%
Ripple and Noise ≤120mV
Operating Temperature -10°C to +50°C
Protection Features Overload, Overvoltage,
and Short Circuit

Pin Configuration and Descriptions

The power supply typically has the following input and output terminals:

Input Terminals

Pin Label Description
1 L Live AC input (110-240V AC)
2 N Neutral AC input
3 GND Ground connection for safety

Output Terminals

Pin Label Description
1 V+ Positive DC output (5V)
2 V- Negative DC output (Ground)

Usage Instructions

How to Use the Component in a Circuit

  1. Connect the Input Terminals:

    • Ensure the power supply is disconnected from the AC mains before wiring.
    • Connect the "L" terminal to the live wire and the "N" terminal to the neutral wire of the AC mains.
    • Connect the "GND" terminal to the ground for safety.
  2. Connect the Output Terminals:

    • Use the "V+" terminal for the positive 5V DC output.
    • Use the "V-" terminal for the ground connection of your circuit.
  3. Power On:

    • After verifying all connections, plug the power supply into the AC mains and switch it on.
    • Use a multimeter to confirm the output voltage is 5V before connecting your load.
  4. Connect the Load:

    • Attach your device or circuit to the output terminals, ensuring the current draw does not exceed 20A.

Important Considerations and Best Practices

  • Current Limitation: Ensure the connected load does not exceed the maximum current rating of 20A to avoid overheating or damage.
  • Ventilation: Place the power supply in a well-ventilated area to prevent overheating.
  • Polarity: Double-check the polarity of the output connections to avoid damaging your circuit.
  • Fuse Protection: Consider adding a fuse on the input or output side for additional safety.
  • Arduino UNO Example: If powering an Arduino UNO, connect the "V+" terminal to the Arduino's 5V pin and the "V-" terminal to the GND pin. Ensure the current draw of connected peripherals does not exceed the power supply's capacity.

Example Code for Arduino UNO

Below is an example of using the 5V 20A power supply to power an Arduino UNO and control an LED:

// Example: Blink an LED using Arduino UNO powered by 5V 20A DC power supply

const int ledPin = 13; // Pin connected to the built-in LED

void setup() {
  pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}

void loop() {
  digitalWrite(ledPin, HIGH); // Turn the LED on
  delay(1000);                // Wait for 1 second
  digitalWrite(ledPin, LOW);  // Turn the LED off
  delay(1000);                // Wait for 1 second
}

Note: Ensure the Arduino UNO and any connected peripherals do not exceed the power supply's current rating.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
No output voltage Input AC power not connected or switched off Verify AC input connections and power on.
Output voltage is unstable Overload or insufficient ventilation Reduce load or improve ventilation.
Power supply overheats Exceeding maximum current rating Reduce the load to within 20A limit.
Device connected to power supply fails Incorrect polarity or wiring Double-check wiring and polarity.

FAQs

  1. Can I use this power supply for devices requiring less than 20A?

    • Yes, the power supply will only provide the current required by the device, up to a maximum of 20A.
  2. Is this power supply suitable for outdoor use?

    • No, this power supply is designed for indoor use. Use a weatherproof enclosure if outdoor operation is required.
  3. What happens if the load exceeds 20A?

    • The power supply's overload protection will activate, shutting down the output to prevent damage.
  4. Can I connect multiple devices to this power supply?

    • Yes, as long as the total current draw of all devices does not exceed 20A.

By following these guidelines and best practices, the 5V 20A DC power supply can be safely and effectively used in a variety of applications.