

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.








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 |
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. |
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
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
}
| 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. |
Can I use the 7805 with an AC input?
What happens if I exceed the input voltage range?
Can I use the 7805 without capacitors?
Is the 7805 suitable for battery-powered devices?
By following this documentation, you can effectively use the 7805 voltage regulator in your electronic projects.