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

How to Use 7805: Examples, Pinouts, and Specs

Image of 7805
Cirkit Designer LogoDesign with 7805 in Cirkit Designer

Introduction

The 7805 is a linear voltage regulator that provides a stable output voltage of 5V. It is part of the 78xx series of voltage regulators, which are widely used in electronic circuits for their simplicity and reliability. The 7805 is designed to maintain a constant 5V output regardless of variations in input voltage or load current, within its specified limits. This makes it an essential component for powering microcontrollers, sensors, and other devices that require a consistent 5V supply.

Explore Projects Built with 7805

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
24V to 5V Power Supply with 7805 Voltage Regulator and Bridge Rectifier
Image of convert AC to DC: A project utilizing 7805 in a practical application
This circuit converts 220V AC to 5V DC using a power transformer, a bridge rectifier, and a 7805 voltage regulator. The transformer steps down the voltage to 24V AC, which is then rectified to DC by the bridge rectifier. The 7805 regulator further stabilizes the output to 5V DC, with additional filtering provided by capacitors and a resistor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered LED Indicator with 7805 Voltage Regulator
Image of 5V circuit: A project utilizing 7805 in a practical application
This circuit uses a 9V battery to power a 7805 voltage regulator, which outputs a stable 5V. A toggle switch controls the input to the voltage regulator, and the regulated 5V output powers an LED through a 200-ohm resistor, allowing the LED to indicate when the circuit is active.
Cirkit Designer LogoOpen Project in Cirkit Designer
IR Sensor-Controlled Dual Motor System with Relay and LED Indicator
Image of LINE FOLLOWER: A project utilizing 7805 in a practical application
This circuit uses two IR sensors to control a 5V relay module, which in turn drives two DC motors. A 7805 voltage regulator is used to step down the voltage from a 9V battery to 5V, powering the sensors and relay. An LED with a current-limiting resistor indicates the power status.
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 7805 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

Explore Projects Built with 7805

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 convert AC to DC: A project utilizing 7805 in a practical application
24V to 5V Power Supply with 7805 Voltage Regulator and Bridge Rectifier
This circuit converts 220V AC to 5V DC using a power transformer, a bridge rectifier, and a 7805 voltage regulator. The transformer steps down the voltage to 24V AC, which is then rectified to DC by the bridge rectifier. The 7805 regulator further stabilizes the output to 5V DC, with additional filtering provided by capacitors and a resistor.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of 5V circuit: A project utilizing 7805 in a practical application
Battery-Powered LED Indicator with 7805 Voltage Regulator
This circuit uses a 9V battery to power a 7805 voltage regulator, which outputs a stable 5V. A toggle switch controls the input to the voltage regulator, and the regulated 5V output powers an LED through a 200-ohm resistor, allowing the LED to indicate when the circuit is active.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of LINE FOLLOWER: A project utilizing 7805 in a practical application
IR Sensor-Controlled Dual Motor System with Relay and LED Indicator
This circuit uses two IR sensors to control a 5V relay module, which in turn drives two DC motors. A 7805 voltage regulator is used to step down the voltage from a 9V battery to 5V, powering the sensors and relay. An LED with a current-limiting resistor indicates the power status.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Power Supply LVCO: A project utilizing 7805 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

Common Applications and Use Cases

  • Powering microcontrollers (e.g., Arduino, PIC, AVR)
  • Supplying 5V to sensors, modules, and ICs
  • Voltage regulation in battery-powered devices
  • Prototyping and breadboard circuits
  • DIY electronics projects

Technical Specifications

The following table outlines the key technical details of the 7805 voltage regulator:

Parameter Value
Output Voltage 5V ± 2%
Input Voltage Range 7V to 35V
Maximum Output Current 1.5A (with proper heat dissipation)
Dropout Voltage 2V (typical)
Quiescent Current 5mA (typical)
Operating Temperature 0°C to 125°C
Package Types TO-220, TO-92, SMD

Pin Configuration and Descriptions

The 7805 typically comes in a TO-220 package with three pins. The pinout is as follows:

Pin Number Name Description
1 Input Connect to the unregulated input voltage (7V–35V).
2 Ground Common ground for input and output.
3 Output Provides a regulated 5V output.

Usage Instructions

How to Use the 7805 in a Circuit

  1. Input Voltage: Connect the input pin (Pin 1) to a DC voltage source ranging from 7V to 35V. Ensure the input voltage is at least 2V higher than the desired 5V output (to account for dropout voltage).
  2. Ground Connection: Connect the ground pin (Pin 2) to the circuit's ground.
  3. Output Voltage: Connect the output pin (Pin 3) to the load that requires a 5V supply.
  4. Capacitors: Add capacitors to stabilize the voltage and reduce noise:
    • Place a 0.33µF capacitor between the input pin and ground.
    • Place a 0.1µF capacitor between the output pin and ground.
  5. Heat Dissipation: If the load current exceeds 500mA, attach a heatsink to the 7805 to prevent overheating.

Example Circuit

Below is a simple circuit diagram for using the 7805:

   +7V to +35V
       |
       |
      [C1]  0.33µF
       |
       |-----> Pin 1 (Input)
       |
      7805
       |
       |-----> Pin 2 (Ground) -----> GND
       |
      [C2]  0.1µF
       |
       |-----> Pin 3 (Output) -----> +5V

Using the 7805 with an Arduino UNO

The 7805 can be used to power an Arduino UNO by providing a stable 5V supply to its 5V pin. Below is an example Arduino code to blink an LED when powered by the 7805:

// Simple LED Blink Example
// This code assumes an LED is connected to pin 13 of the Arduino UNO.

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
}

Important Considerations and Best Practices

  • Input Voltage: Ensure the input voltage is at least 2V higher than the output voltage (minimum 7V for a 5V output).
  • Heat Management: Use a heatsink if the regulator gets too hot during operation.
  • Capacitors: Always use the recommended input and output capacitors to ensure stable operation.
  • Current Limit: Do not exceed the maximum output current of 1.5A. For higher currents, consider using a switching regulator.

Troubleshooting and FAQs

Common Issues and Solutions

  1. Output Voltage is Not 5V:

    • Check the input voltage. Ensure it is within the 7V–35V range.
    • Verify the connections and ensure the ground pin is properly connected.
    • Add the recommended capacitors to stabilize the output.
  2. Regulator Overheats:

    • Attach a heatsink to the 7805 to dissipate heat.
    • Reduce the load current if it exceeds 1.5A.
    • Ensure proper ventilation around the regulator.
  3. No Output Voltage:

    • Check for short circuits or incorrect wiring.
    • Verify that the input voltage is present and within the specified range.
  4. Noise or Instability in Output:

    • Add or replace the input and output capacitors.
    • Ensure the capacitors are placed as close as possible to the regulator pins.

FAQs

Q: Can I use the 7805 to power a 3.3V device?
A: No, the 7805 provides a fixed 5V output. To power a 3.3V device, use a 3.3V regulator like the 7833 or a buck converter.

Q: What happens if the input voltage drops below 7V?
A: The 7805 may fail to regulate properly, and the output voltage will drop below 5V.

Q: Can I use the 7805 with an AC input?
A: No, the 7805 requires a DC input. If using an AC source, first rectify and filter the AC voltage to obtain a DC input.

Q: Is the 7805 suitable for battery-powered applications?
A: The 7805 is not very efficient for battery-powered applications due to its linear regulation. A switching regulator is recommended for better efficiency.

By following this documentation, you can effectively use the 7805 voltage regulator in your electronic projects.