The 555 timer is arguably the most successful integrated circuit in electronics history, with billions of units manufactured since its 1972 debut. Despite its age, it remains a staple in 2026 for hobbyists and professionals building oscillators, pulse generators, and delay circuits. If you are dropping one into a breadboard, you need the exact pinout, the right variant for your voltage rail, and a reliable way to verify it hasn't been fried by a wiring mistake.
The direct answer: The standard 8-pin DIP pinout is: 1-GND, 2-TRIG, 3-OUT, 4-RESET, 5-CTRL, 6-THRES, 7-DISCH, 8-VCC. For robust 5V–15V bench prototyping, the Texas Instruments NE555P (bipolar, ~$0.50) is the safe default. For low-power battery applications down to 2V, use the TLC555 (CMOS, ~$0.65).
The 555 Timer Pin Diagram and Internal Architecture
To use the 555 effectively, you have to understand what is happening inside the silicon. The IC gets its name from the three internal 5kΩ resistors that form a voltage divider across the power supply, creating reference voltages at 1/3 VCC and 2/3 VCC. These references feed two internal comparators, which in turn drive an SR flip-flop and a push-pull output stage.
Here is the functional breakdown of the standard 8-pin DIP package:
- Pin 1 (GND): The ground reference. All external timing capacitors and trigger signals must share this exact ground potential to prevent erratic timing.
- Pin 2 (TRIG): Active-low trigger input. When this pin drops below 1/3 VCC, the internal flip-flop sets, driving the output (Pin 3) HIGH.
- Pin 3 (OUT): The push-pull output stage. On bipolar versions, this can source or sink up to 200mA, allowing it to directly drive relays or high-brightness LEDs without an external transistor.
- Pin 4 (RESET): Active-low override. Pulling this pin below ~0.7V forces the output LOW regardless of the trigger or threshold states. Tie to VCC if unused.
- Pin 5 (CTRL): Control voltage. Provides direct access to the 2/3 VCC reference node. In 95% of circuits, you will bypass this to GND with a 10nF ceramic capacitor to filter high-frequency noise.
- Pin 6 (THRES): Threshold input. When the voltage here exceeds 2/3 VCC, the flip-flop resets, driving the output LOW.
- Pin 7 (DISCH): Discharge pin. Connected to the open collector of an internal NPN transistor. It sinks current to ground to discharge your external timing capacitor.
- Pin 8 (VCC): Positive supply voltage. Ranges from 4.5V to 15V for bipolar, and 2V to 15V for CMOS variants.
Operating Regions and Electrical Specifications
Not all 555 timers are created equal. The original bipolar design is robust but power-hungry, while modern CMOS variants solve the power issue but have lower output drive capabilities. Selecting the wrong variant is a common reason a circuit fails to oscillate or drains a battery in hours.
| Part Number | Technology | VCC Range | Max Output Current | Quiescent Current (Iq) | Max Frequency | Typical Price |
|---|---|---|---|---|---|---|
| NE555 / SE555 | Bipolar | 4.5V – 16V | 200 mA (Source/Sink) | ~10 mA | 100 kHz | $0.45 – $0.60 |
| TLC555 | CMOS (LinCMOS) | 2.0V – 15V | 100 mA (Sink) / 10 mA (Source) | ~1 mA | 2.1 MHz | $0.60 – $0.85 |
| LMC555 | CMOS | 2.0V – 15V | 100 mA (Sink) / 10 mA (Source) | ~50 µA | 3.0 MHz | $0.90 – $1.20 |
| ICM7555 | CMOS | 2.0V – 18V | 100 mA (Sink) / 10 mA (Source) | ~60 µA | 500 kHz | $0.75 – $1.00 |
Biasing, Selection, and Safe Default Part Numbers
How do you bias and select the right chip for your specific job? The decision comes down to your power source and your load.
When to choose Bipolar (NE555)
Choose the NE555 when you are powering the circuit from a wall adapter or a robust 9V/12V supply, and you need to drive a mechanical relay coil or a high-current LED array directly from Pin 3. The bipolar output stage is symmetric (200mA source and sink). However, bipolar 555 timers suffer from a phenomenon called crowbar current or shoot-through. During the output transition (when Pin 3 switches from HIGH to LOW or vice versa), both internal output transistors conduct simultaneously for a few nanoseconds, creating a massive current spike (up to 300mA) straight from VCC to GND.
Mandatory Biasing Rule: To prevent this spike from collapsing your power rail and resetting your microcontroller, you must place a 100nF (0.1µF) ceramic bypass capacitor as physically close to Pin 8 and Pin 1 as possible.
When to choose CMOS (TLC555 / LMC555)
Choose CMOS when running off coin cells, AA batteries, or 3.3V logic rails. The CMOS versions draw microamps of quiescent current compared to the 10mA baseline of the bipolar version. They also operate rail-to-rail, meaning the output will swing almost exactly to VCC and GND, whereas the bipolar version loses about 1.5V to 2V on the high side due to internal Darlington transistor drops.
For authoritative design guidelines and internal block diagrams, refer to the Texas Instruments NE555 Product Page and the All About Circuits 555 Timer Guide.
Astable Multivibrator Application Circuit
The most common use for the 555 is an astable multivibrator (a free-running oscillator). Let's build a 1.38 Hz LED flasher with a ~55% duty cycle. This circuit continuously charges and discharges a capacitor through external resistors.
Component Values
- U1: NE555P (DIP-8)
- R1: 10 kΩ (Limits discharge current, prevents shorting VCC to Pin 7)
- R2: 47 kΩ (Sets the discharge time)
- C1: 10 µF Electrolytic (Timing capacitor)
- C2: 10 nF Ceramic (Noise bypass on Pin 5)
- C3: 100 nF Ceramic (Power bypass on Pin 8)
- R3: 330 Ω (LED current limiter)
- D1: 5mm Red LED (2.0V forward voltage)
Timing Calculations
According to the standard formulas detailed in the Electronics Tutorials 555 Oscillator guide:
- Time HIGH (Charge): $T_{high} = 0.693 \times (R1 + R2) \times C1 = 0.693 \times (10k + 47k) \times 10\mu F = 0.395 \text{ seconds}$
- Time LOW (Discharge): $T_{low} = 0.693 \times R2 \times C1 = 0.693 \times 47k \times 10\mu F = 0.325 \text{ seconds}$
- Total Period: $0.395 + 0.325 = 0.720 \text{ seconds}$
- Frequency: $1 / 0.720 = 1.38 \text{ Hz}$
Wiring Steps
- Connect Pin 1 (GND) and Pin 4 (RESET) together, then route to your breadboard's negative ground rail.
- Connect Pin 8 (VCC) to the positive 9V rail. Place C3 (100nF) directly across Pin 8 and Pin 1.
- Bridge Pin 6 (THRES) and Pin 2 (TRIG) together with a jumper wire.
- Connect C1 (10µF) between the bridged Pins 6/2 and Ground. Ensure the negative stripe of the electrolytic capacitor faces Ground.
- Connect R1 (10k) between Pin 8 (VCC) and Pin 7 (DISCH).
- Connect R2 (47k) between Pin 7 (DISCH) and the bridged Pins 6/2.
- Connect C2 (10nF) between Pin 5 (CTRL) and Ground.
- Connect R3 (330Ω) to Pin 3 (OUT), followed by the anode of D1. Connect the cathode of D1 to Ground.
Power the circuit. The LED will illuminate for ~0.4 seconds and turn off for ~0.3 seconds, repeating indefinitely.
Failure Modes and Multimeter Testing
555 timers are rugged, but they are not indestructible. Understanding how they fail saves hours of debugging when a prototype suddenly stops oscillating.
Common Failure Modes
- Pin 7 Short to VCC: If your wiring accidentally shorts Pin 7 to VCC, and the internal timer triggers the discharge transistor to turn ON, it creates a dead short from VCC to GND through the silicon. The chip will overheat and fail instantly.
- Output Overcurrent: Exceeding the 200mA limit on Pin 3 (bipolar) will melt the internal output bond wires. The chip will appear to function, but Pin 3 will output a weak, high-impedance voltage.
- Reverse Polarity: Swapping Pin 1 and Pin 8 will forward-bias internal parasitic diodes, destroying the silicon substrate in milliseconds.
How to Test a 555 Timer with a Digital Multimeter
If you suspect a dead chip, you can perform an out-of-circuit junction test using your multimeter's Diode Test mode. This checks the integrity of the internal semiconductor junctions.
- Remove the IC: Take the 555 out of the breadboard or circuit. In-circuit testing is unreliable due to parallel resistance from external components.
- Set DMM to Diode Mode: Look for the diode symbol on your multimeter dial.
- Check VCC to GND (Pin 8 to Pin 1): Place the red probe on Pin 8 and black on Pin 1. You should read 'OL' (Open Loop) or a very high voltage drop. Reverse the probes (Red on 1, Black on 8); you should read approximately 0.6V to 0.8V, indicating the internal reverse-polarity protection diode is intact. If it reads 0.00V or beeps continuously, the chip is shorted and dead.
- Check Output Stage (Pin 3 to Pin 1): Place the red probe on Pin 1 (GND) and black on Pin 3 (OUT). You should read a diode drop of ~0.7V (the lower output transistor's base-emitter junction). If it reads 'OL' in both directions, the output bond wire is blown.
- Check Discharge Transistor (Pin 7 to Pin 1): Red probe on Pin 1, Black on Pin 7. You should read ~0.7V. This is the base-collector junction of the internal NPN discharge transistor.
By keeping a few NE555P and TLC555 chips in your parts bin, respecting the bypass capacitor requirements, and knowing how to verify the silicon with a multimeter, you can reliably deploy this legendary IC in virtually any timing or waveform generation project.






