Play The Simpsons theme song with Arduino and a buzzer

Available to registered members only
  • avatar
  • 451 Views
  • 1 Like
  • 5 mins read

The Simpsons, that legendary animated series we all know and love, has become a cultural phenomenon. With its hilarious take on family life in Springfield, it's an absolute classic. We decided to have a bit of fun and recreate the show's iconic theme song using a piezo buzzer.

Buzzer is used to generate sound, beep or even melody of a song. It can be found in alarm devices, computers, timers and confirmation of user input such as a mouse click or keystroke. A piezo buzzer is not like a regular speaker that you might think of. It uses a material that actually changes shape when you apply electricity to it which in turn creates noise. The faster you bend the material, the higher the pitch of the noise that is produced.

Prerequisites

To understand the inner workings of the buzzer, we suggest checking out our article on How to use a buzzer with Arduino.

Components

arduino-nano

1x Arduino Nano (or another Arduino module)

Buy now

mini-breadboard

1x Mini-breadboard

Buy now

buzzer

1x Buzzer

Buy now

dupont

Dupont wires

Buy now

github

Pitches library and melodies

Official HiBit GitHub

Wiring schema

Pairing an Arduino and a piezo buzzer is easy. The buzzer is equipped with two pins: one for signal control and another for ground. In the setup below, the tone control will be managed by Arduino's D9 pin.

Buzzer wiring with Arduino Nano

Importing pitches library

The code used to generate the melody uses an extra library available on our GitHub. This file contains all the pitch values for typical notes.

To import a library, open the Arduino IDE, go to Sketch > Include Library > Add .ZIP Library and select the library file downloaded from our GitHub repository.

Arduino IDE library import

Then you can simply use include statement:

#include "pitches.h"

It will include the library with predefined pitch constants so the melody generation becomes easier.

Arduino code for The Simpsons theme song

The main program uses two arrays, melody and durations, to define the sequence of notes and their corresponding duration, respectively. The loop() function will iterate over notes and and use assigned duration for each note. A pause between notes is introduced to distinguish them, calculated as the note's duration plus 30%. After playing a note, the noTone() function stops the buzzer to prevent any lingering sound.

#include "pitches.h"

#define BUZZER_PIN 9

int melody[] = {
NOTE_C4, NOTE_E4, NOTE_FS4, REST, NOTE_A4,
NOTE_G4, NOTE_E4, NOTE_C4, NOTE_A3,
NOTE_FS3, NOTE_FS3, NOTE_FS3, NOTE_G3, REST,
NOTE_FS3, NOTE_FS3, NOTE_FS3, NOTE_G3, NOTE_AS3,
NOTE_B3, REST
};

int durations[] = {
2, 4, 4, 32, 8,
2, 4, 4, 8,
8, 8, 8, 4, 2,
8, 8, 8, 4, 2,
2, 2
};

void setup()
{
pinMode(BUZZER_PIN, OUTPUT);
}

void loop()
{
int size = sizeof(durations) / sizeof(int);

for (int note = 0; note < size; note++) {
//to calculate the note duration, take one second divided by the note type.
//e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.
int duration = 1000 / durations[note];
tone(BUZZER_PIN, melody[note], duration);

//to distinguish the notes, set a minimum time between them.
//the note's duration + 30% seems to work well:
int pauseBetweenNotes = duration * 1.30;
delay(pauseBetweenNotes);

//stop the tone playing:
noTone(BUZZER_PIN);
}
}

Note: tone() function uses one of the built in timers on the Arduino’s micro-contoller and works independently of the delay() function. Use of the tone() will interfere with PWM output on pins 3 and 11 (on boards other than the Mega).

Credits

Official GitHub: https://github.com/hibit-dev/buzzer

colored logo

This article is available to HiBit members only.

If you're new to HiBit, create a free account to read this article.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

0 Comments

Leave a Reply

Your email address will not be published.

Replying to the message: View original

Hey visitor! Unlock access to featured articles, remove ads and much more - it's free.