Build your own Raspberry Pi “Clapper” 👏👏

Clap on! Clap off! Pi clapper!
Ash Ash (362)
30 minutes

Clap! Clap!

We're creating a Raspberry Pi that can detect claps and trigger a script after a set number of claps. I’ll be using a Raspberry Pi 3 B+. Just like the old TV commercials for The Clapper (read more about this classic 90’s technology here), we'll be using our Pi to turn on a light.

As with many of our Raspberry Pi guides, there's plenty of room for customization. You can use the clap powered switch to do basic commands like shutting down the Pi, real world applications like adjusting the lights, or even connect your Pi to social media to send a tweet. You're only limited by your imagination. Clap to play music, activate a servo motor, shut down your Pi, or go crazy and clap control your smart home!

Raspberry Pi 3 B+Raspberry Pi 3 B+ ×1
Female-to-female jumper cablesFemale-to-female jumper cables ×2
USB microphone, smallUSB microphone, small ×1
LED, red, 3mm ×1

Howchoo is reader-supported. As an Amazon Associate, we may earn a small affiliate commission at no cost to you when you buy through our links.

We'll begin with a fresh installation of Raspbian. You'll need to make sure that everything is up to date. Visit our guide on how to update Raspbian. After setting up the OS, consider changing the Raspberry Pi host name.

Install RPi.GPIO

First, you will need to access the Raspberry Pi terminal. You can do this via Raspbian desktop or log in remotely using a tool like PuTTY. SSH will need to be enabled. Visit our guide on how to log into a Raspberry Pi via SSH.

Our Raspberry Pi clap switch will be activating an LED. To send the signal that turns it on, we'll need to use the GPIO pins. We'll use RPi.GPIO to control them. Run the following script to install the GPIO tools.

pip install RPi.GPIO

Install pyaudio

The clap powered mechanism will be controlled via mic input. To use audio in our script, we'll need to install pyaudio. Installation is easy, just run the following script.

sudo apt-get install python-pyaudio

Install pi clap

The clap detection script I'm using was created by nikhiljohn10 on github.

To install the script, drop it in the /home/pi folder.

The Pi will listen for claps using a microphone, I'll be using a USB mic. Connect your preferred device to the Raspberry Pi.

Depending on the ambient noise level of the room, you may find that some mics can pick up audio better than others. You can adjust the clap threshold by editing the clap script in a text editor. This project will require a degree of fine tuning both the microphone and clap script settings.

Connecting a Clapper test LED to a Raspberry Pi's GPIO header

What you decide to trigger with clapping is up to you. You can choose to activate a specific device, run a program, play a certain sound, shut down your Pi, or anything else that can be triggered by a Python script. For this guide, I'll trigger an LED to illuminate on 2 claps and turn off with 4 claps.

Connect any device you need to trigger to the GPIO pins. I've included a wiring diagram of my LED setup above. Depending on the LED, you may need a resistor.

Restart the Raspberry Pi. Open a terminal or connect to the Raspberry Pi using SSH. Run the clap script with the following command.

sudo python clap.py
Clap! If everything is working, the claps should register. Check the terminal for confirmation. If a clap it detected, the program will print a line of text.

This is your opportunity to fine tune the microphone sensitivity and adjust the clap script settings. Experiment with the threshold limit to help reduce additional noise from detecting as a clap.

Set script to launch on boot

We'll be adding the clap script to our crontab bootup list. Open the crontab file to edit with the following command

crontab -e

At the bottom of the file, add the following line.

@reboot nohup python clap.py &
Save the file and close it. Now your Raspberry Pi will be listening for claps when it starts.

Raspberry Pi Clapper LED colors

Once everything is finalized, restart the Raspberry Pi. This is time for the final test. When it boots, the Pi should launch the clap detection script immediately. After about 10-20 seconds—Clap!

Congratulations. You now have the power to control anything you want with the power of claps!

Screen upside down? No problem.
Zach Zach (248)
2 minutes

So you've just finished setting up your Raspberry Pi touchscreen, and it's upside-down.