Introduction: Raspberry Pi Tutorial: How to Use a Buzzer
In this tutorial you will learn how to use a buzzer (or piezo speaker) with Raspberry Pi. Buzzers can be found in alarm devices, computers, timers and confirmation of user input such as a mouse click or keystroke.
Tutorial updates and more Raspberry Pi tutorials can be found here:
http://www.ardumotive.com/how-to-use-a-buzzer-en1....
Let's get started!
Step 1: What You Will Need - Hardware
For this tutorial you will need:
And of course any Raspberry Pi board with Raspbian OS installed.
Step 2: The Circuit
The connections are pretty easy, see the image above with breadboard circuit schematic.
Step 3: Python Code
In the program below, the first thing you do is to import the library for GPIO and sleep. The next step is to initialize pin 23 as an output pin with GPIO.setup( ) function. The While True loop runs over and over again, forever. In the main loop, you make a beep sound with GPIO.output( ) function and "pause" the program for 0.5 second with sleep( ) function.
Download the code from here and open it with Thonny Python IDE or run it from terminal.
- #Libraries
- import RPi.GPIO as GPIO
- from time import sleep
- #Disable warnings (optional)
- GPIO.setwarnings(False)
- #Select GPIO mode
- GPIO.setmode(GPIO.BCM)
- #Set buzzer - pin 23 as output
- buzzer=23
- GPIO.setup(buzzer,GPIO.OUT)
- #Run forever loop
- while True:
- ......GPIO.output(buzzer,GPIO.HIGH)
- ......print ("Beep")
- ......sleep(0.5) # Delay in seconds
- ......GPIO.output(buzzer,GPIO.LOW)
- ......print ("No Beep")
- ......sleep(0.5)
Attachments
Step 4: Well Done
You have successfully completed one more Raspberry Pi "How to" tutorial and you learned how to use a buzzer!
I hope you liked this, let me know in the comments below.
Video in Greek language
5 Comments
2 years ago on Step 3
What do we do with this .py file? Where on the sd card does it get copied to??
Reply 1 year ago
It doesn't matter where the file is stored. Run it using `python filename.py`
Question 1 year ago
Are you aware that you are running 3.3 volts through a five volt buzzer? if yes, is it just not a problem?
2 years ago
easiest programming I've done. Thanks heaps for making it clear
Question 4 years ago on Step 4
this is a good Tutorial I am wondering if you could do one about speakers as this does not quite cover them