

The AS7805AT-E1 by Diodes Inc. is a 5V linear voltage regulator designed to provide a stable and reliable 5V output from a higher input voltage. This component is widely used in electronic circuits to ensure a consistent power supply, protecting sensitive components from voltage fluctuations. Its robust design and ease of use make it a popular choice for both hobbyists and professionals.








The following table outlines the key technical details of the AS7805AT-E1:
| Parameter | Value |
|---|---|
| Output Voltage | 5V ± 2% |
| Input Voltage Range | 7V to 25V |
| Maximum Output Current | 1.5A |
| Dropout Voltage | 2V (typical) |
| Quiescent Current | 5mA (typical) |
| Operating Temperature | -40°C to +125°C |
| Package Type | TO-220 |
The AS7805AT-E1 is a 3-pin device with the following pinout:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Input (IN) | Connect to the unregulated input voltage (7V–25V). |
| 2 | Ground (GND) | Common ground for input and output. |
| 3 | Output (OUT) | Provides the regulated 5V output. |
The AS7805AT-E1 can be used to power an Arduino UNO by providing a stable 5V supply. Below is an example circuit and Arduino code:
// Example code to blink an LED using the 5V regulator as a power source
// Ensure the 5V regulator is properly connected to the Arduino UNO
const int ledPin = 13; // Built-in LED pin on Arduino UNO
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
}
No Output Voltage
Overheating
Voltage Instability
Output Voltage Too Low
Q: Can I use the AS7805AT-E1 with a 12V input?
A: Yes, the regulator can handle input voltages up to 25V. A 12V input is well within the acceptable range.
Q: Do I need a heatsink for low-current applications?
A: For currents below 500mA, a heatsink is typically not required. However, for higher currents or prolonged use, a heatsink is recommended.
Q: Can I use this regulator to power a 3.3V device?
A: No, the AS7805AT-E1 provides a fixed 5V output. Use a 3.3V regulator for 3.3V devices.
Q: What happens if I reverse the input and output connections?
A: Reversing the connections can damage the regulator. Always double-check the pinout before powering the circuit.