Electronic – Producing different types of tones using the 555 timer

555sound

I'm learning how to work with the 555 timer (astable mode) and decided to make a simple synth. The sound from a square wave is rather harsh so I'm trying understand how to modify it to make different types of tones. I'm a bit confused on how exactly to do this.

  1. If I have the 555 timer running in the astable mode at a frequency of 136Hz and I want to produce a sine wave from its output, as far as I understood I need to 'bend' each HIGH from the 555's output with a capacitor and inductor, correct? I can easily find a matching capacitor using an oscilloscope to bend the HIGH signal like this:

enter image description here

but I don't understand how to calculate the inductor value so I can 'bend' the beginning of the HIGH signal as well to make it appear like a sine wave. How can I calculate the inductor value?

  1. Is there a way I could modify each HIGH from the 555 timer in a 'linear' fashion to produce output/tone similar to this?

enter image description here

or is this achieved by merging different layers of tones into a single one?

What terms can I use to learn more on modifying the square wave in order to produce different types of tones? Thanks!

Best Answer

First, if you are trying to make something musically interesting with the 555 timer, your best bet is to have a look at the Atari Punk Console.

On to the questions: a 555 timer actually produces two easily accessible waveforms: a square wave and a pseudo-triangle wave. Let's look at the astable circuit:

schematic

simulate this circuit – Schematic created using CircuitLab

Running a transient simulation of the circuit gives us the following:Transient square and "triangle".

The pseudo-triangular waveform observed here is from filtering of the square-wave to produce a more "pure" tone, removing the high frequency content of the square wave and moving it closer to a sine wave. In musical synthesis this is referred to as subtractive synthesis as it removes content from the signal to produce the output, here achieved by the low pass filter from the RC subcircuit. (Note this can't be directly listened to without buffering because changing the impedance ruins the oscillator).

To get to a sine wave, you would have to have a high-order filter just above the fundamental of the square-wave to remove all harmonics. This would be challenging to do for a synth as the fundamental changes and therefore the filter would have to change cutoff frequency as well, which is challenging to design.

  1. A direct answer to your question on how to get a sine wave would be to stack several RC stages in series and that would filter the output enough to produce something close to a sine. You may need a buffer (e.g. from an op-amp) first.

schematic

simulate this circuit

The above schematic gives the following output: enter image description here This is not a perfect sine wave but is much closer than the "triangle"! The circuit is three stages of a low pass RC filter forming a 3rd-order filter. To calculate the cutoff of the RC filter you simply use $$ f_\mathrm{c} = \frac{1}{2 \pi R C} $$ For a cutoff of 132 Hz you could use a 10n capacitor with a 120k resistor, but you can tweak the values to what you have available and how accurate you need it.

  1. To create more complex signals you need more sophisticated synthesis techniques. These are often easier to implement in software as to generate the waveform you reference one could simply draw it into a wavetable synthesiser. To create that exact waveform in hardware (without a microcontroller or similar) would be difficult but could be done with analysis of the frequency response and some approximation using an appropriate synthesis technique (e.g. amplitude modulation, frequency modulation).

Finally, if I were you and were trying to build a basic synthesiser using 555 timers, I would look at combining oscillators and filters. By taking a single 555 and controlling the pitch (continuously) and mixing it with a second oscillator you can create some weird sounds. Look up how to make a buffer and a summing amplifier with an op-amp and you will be able to make a huge amount of different sounds.

Good luck!