Monostable Mode is great for creating time delays. In this mode an external trigger causes the 555 timer to output a pulse of an adjustable duration. Jump straight to an example circuit for monostable mode here.
Astable Mode outputs an oscillating pulse signal/waveform. In this mode the output of the 555 timer is switching between high and low states at a tunable frequency and pulse width. Jump straight to an example circuit for astable mode here.
Bistable Mode causes the 555 timer to toggle its output between high and low states depending on the state of two inputs. Jump straight to an example circuit for bistable mode here.
Some applications that come to mind include:
- a steady clock/trigger to keep time in a circuit (astable mode)
- the core oscillator of an analog synthesizer, with the addition of some op amps and other components this pulse wave can be shaped into a triangle, saw, and even sine shapes
- a very basic chiptune style noise maker (see atari punk console)
- time delay for an incoming signal (monostable mode)
- very basic storage of input data/management of two button control system (bistable mode)
The 555 timer is flexible, cheap, and easy to find (you can even pick them up at Radioshack). It's also a great starting point for audio projects because its output can be wired directly to a speaker. Feel free to use any of the info or example circuits I've provided in this tutorial as a starting point for an entry in the DIY Audio Contest! We're giving away an HDTV, DSLR cameras and tons of other great stuff! (ends November 26)
Remove these ads by
Signing UpStep 1: 555 Timer Pin Diagram
The second image is a close up of the diagram depicting the internal functional components of the chip. This consists of a few different elements: resistors, transistors, comparators, a flip flop, and an output stage.
All three resistors diagrammed in fig 2 are 5kOhm (see image notes in fig 3). The purpose of these resistors is to set up a voltage divider between Vcc and ground. Since all resistors are the same value we know that the voltage at the junction between the resistors are 2/3Vcc and 1/3Vcc (see image notes in fig 2). These voltages are used as reference voltages for the comparators.
A comparator is a circuit which compares an input with a reference voltage and outputs a LOW or HIGH signal based on whether the input is a higher or lower voltage than the reference. The 555 timer uses several transistors to construct its comparators (see the image notes in fig 3), so in the simplified functional diagram in fig 2 they are represented by boxes labelled "comparator." The comparator connected to pin 2 compares the "trigger" input to a reference voltage of 1/3Vcc and the comparator connected in pin 6 compares the "threshold" input to a reference voltage of 2/3Vcc from the voltage divider.
A flip flop is circuit that switches between two stable states based on the state of its inputs. The 555 flip flop outputs a high or low based on the states of the two comparators. When the trigger comparator is outputting a low signal (regardless of the state of the threshold comparator), the flip flop switches high, when both comparators are outputting a high signal, the flip flop switches low. The timing of a high pulse output from the flip flop can also be manually reset (the beginning of a pulse can be triggered) by pulsing the reset pin low.
The functional diagram in fig 2 also includes two transistors. The transistor attached to pin 7 is an NPN transistor. Since pin 7 is connected to the collector pin of the NPN transistor, this type of configuration is called open collector or open drain. This pin is usually connected to a capacitor and is used to discharge the capacitor each time the output pin goes low. The transistor attached to pin 4 is a PNP transistor. The purpose of this transistor is to buffer the reset pin, so the 555 does not source current from this pin and cause it to sag in voltage.
The output stage of the 555 timer is indicated in the image notes of fig 3. Its purpose is to act as a buffer between the 555 timer and any loads that may be attached to its output pin. The output stage supplies current to the output pin so that the other functional component of the 555 timer don't have to.













































Visit Our Store »
Go Pro Today »




which capacitor i should change with the 2 plates??
Note that this is not true.
You can set r1 to 0, and this gives you a %50 duty cycle. The only reason to have a resistor at R1 is to modify the duty cycle, and to keep a straight VCC from burning up the internal transistor at pin 7. This can be rectified by adding a resistor at GND. giving you a pure 50% duty cycle for the full range of r2.
Note that output is HIGH while charging through R1 + R2, and low while discharging through R2 only. IE the High duty time can never be smaller than the low duty time. limiting the duty cycle to greater than %50.
Does step 6 have the wrong schematic? How you have it wired and how the schematic says to wire it, appear to be different. (I am still a complete noob when it comes to a lot of this, so I could be completely wrong)
Shouldn't the variable resistor be tied directly to to pin 6 without the 10k ohm resistor in series? And the 10k ohm resistor should be between pin 6 and pin 7. At least that is how fig 14 of the datasheet appears to wire it.
f = 1/(Ra+Rb)
so in order to change the frequency of the timer you have to increase both Ra and Rb, in the circuit I provided you increase Ra and/r decrease Rb and vice versa to change the frequency, which makes it easy to use a single potentiometer as both Ra and Rb so you can physically dial in your frequency by turning a knob. But if you want to learn more about the 555 timer I'd recommend trying this schematic out and seeing what happens when you start changing things!
All these circuits can be easily simulated using the free (as in beer) LT Spice circuit simulator (get it here: http://www.linear.com/designtools/software/ ) . You'll find the NE555 chip in the "misc" catalog of components.
In recent years it has been possible to do most of the 555 's functions (plus many more) using low pin count (6-8 pins) uCs. It frequently takes fewer components and performance is less variable with temperature than a 555 circuit. Of course, uCs require a programmer of some sort, but once you have that you usually find all sorts of uses for uCs.
In LT spice link u given it has many appli to download. in that which i need to download for this type simulation.(my id r.navaneethan1991@gmail.com)
Been using it for 10yrs now, awesome!
It does everything, free!
I highly recommend it.
Actually, a great way to wet yer feet in controllers is Arduino.
Ive been playing with the Uno and Rainbowduino for a year now, and
the development tool is Way easier than
the other mfrs tools.
I wont go back if i can help it.
Real coders scoff at it, but
its very easy to use.
That coming from a long time analog weenie.
I have limited experience with Arduino and it hasn't been very good. I am building a 3D printer that uses an Arduino ATMega2560 controller board. The firmware was developed by others, apparently on an outdated version of the Arduino IDE. The lastest Arduino IDE broke a lot of older Arduino stuff. I had to hunt down an old copy of the IDE, then I had to hunt down and fix an error because the mathematical function "round" was being defined in two places and the compiler didn't like it. All that screwing around was just so I could modify the source code for the printer firmware and upload it to the Arduino board. Documentation is practically nonexistent, so I had to wade through hundreds of posts on dozens of internet forums to find out what to do to solve the problem.
PICs are well documented, the IDE works, the programmers work. Assembly language is extremely efficient, though it can be tedious. C compilers are available if you don't like the work required to program in assembly.
I've seen too many Arduino projects where someone uses an Arduino to read a switch and turn on a light. Some people seem to use them as a matter of fashion rather than because their application actually requires some sort of intelligence. Meh!
http://www.youtube.com/watch?v=GU2GaSMPxNI
I'll give you a hint, the number starts with a 5, ends with a 5, and has a 5 in the middle too. Over the years I've come up with a number of other clock generation circuits but none as easy to make, and control as the good old 555.
The 555 as The 741 is the best integrated circuits, they still exist !!!
From A long past acquaintance from the Interdesign days,
Kind Regards,
Gerard Regnier
http://www.overclockers.com/pwm-fan-controller
Idea: To stimulate Makers to actually use the 555 in a project, you could add a list of Instructables that make good use of 555's.
Cheers,
Y.
Sadly I have to report that on august 8th the inventor of such genial piece of hardware, Hans Camenzind, has died.
His invention has now 40 years but it is still alive and kicking for all us of electronics enthusiasts.
I built a pulse packet modulated heater plate for thick film circuits.
40 years is a truly biblical age for a chip.
This is a fantastic and thorough instructable.
Took you a long time to write up.
5*