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 and regulated output of 5V. It is part of the 78xx series of voltage regulators, which are widely used in electronic circuits to ensure a consistent power supply. The 7805 is particularly useful for powering microcontrollers, sensors, and other components that require a steady 5V DC supply. Its simplicity, reliability, and ease of use make it a popular choice for both hobbyists and professionals.

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, Raspberry Pi peripherals)
  • Regulating voltage for sensors and modules
  • Providing a stable 5V supply in battery-powered devices
  • Used in DIY electronics projects and prototyping
  • Voltage regulation in power supply circuits

Technical Specifications

The following are the key technical details of the 7805 voltage regulator:

Parameter Value
Output Voltage 5V
Input Voltage Range 7V to 35V
Maximum Output Current 1A (with proper heat sinking)
Dropout Voltage 2V to 2.5V
Operating Temperature 0°C to 125°C
Package Types TO-220, TO-92, SMD

Pin Configuration

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 the 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 between 7V and 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 draws significant current (close to 1A), attach a heat sink 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)
       |
      [C2]  0.1µF
       |
       |-----> Pin 3 (Output) -----> +5V to Load

Using the 7805 with an Arduino UNO

The 7805 can be used to power an Arduino UNO by providing a regulated 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

  • 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 heat sink if the regulator gets too hot during operation.
  • Capacitors: Always use the recommended capacitors to ensure stable operation and reduce noise.
  • Current Limit: Do not exceed the maximum output current of 1A. For higher currents, consider using a switching regulator or a parallel configuration.

Troubleshooting and FAQs

Common Issues and Solutions

Issue Possible Cause Solution
Output voltage is not 5V Input voltage is too low Ensure input voltage is at least 7V.
Regulator overheats Excessive current draw or no heat sink Add a heat sink or reduce the load current.
Circuit is noisy or unstable Missing or incorrect capacitors Add 0.33µF and 0.1µF capacitors as specified.
No output voltage Incorrect pin connections Verify the pin connections and polarity.
Output voltage drops under load Load current exceeds 1A Reduce the load current or use a higher-rated regulator.

FAQs

  1. Can I use the 7805 with an AC input?

    • No, the 7805 requires a DC input. Use a rectifier and filter circuit to convert AC to DC before connecting to the 7805.
  2. What happens if I exceed the input voltage range?

    • Exceeding the maximum input voltage (35V) can damage the regulator. Always stay within the specified range.
  3. Can I use the 7805 without capacitors?

    • While the 7805 may work without capacitors in some cases, it is highly recommended to use the specified capacitors to ensure stable operation and reduce noise.
  4. Is the 7805 suitable for battery-powered devices?

    • Yes, but ensure the battery voltage is within the input range (7V–35V) and consider the power loss due to heat dissipation.

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