To help us provide you with free impartial advice, we may earn a commission if you buy through links on our site. Learn more
Setting up your Raspberry Pi
Using a mobile device is a useful way to test that the back end of your setup is working. The next steps show you how to play your music via your Raspberry Pi.
We’re now going to configure the software on the Raspberry Pi that turns it into a Squeezebox Player, capable of receiving and playing audio from the Squeezebox app running on your Squeezebox server. Configuring this software is tricky, but we’ve got a trick to ensure that you need to do it only once.
Before that, we need to transform the Pi into a Squeezebox player, and the first step is to increase the output volume of the Pi. Type ‘sudo alsamixer’ and you should see a curious ASCII volume control (pictured below). Check that Alsamixer has recognised your sound card by looking at the information in the top-left of the screen. It will probably say ‘bcm2835 ALSA’ (or bcm2836 for the new Pi 2), which is the Pi’s built-in audio.
Use Alsamixer to adjust your Raspberry Pi’s audio input and output levels
To change this to the USB sound card we decided to use for this project (see Part 1), press F6 and use the down arrow to highlight the C-Media option, then hit Enter. As our USB sound card has both a stereo output and a microphone input, it has two levels. Alsamixer should highlight the Headphone level by default (the blue bar will have red text and red arrow brackets) so you need only press the up arrow until the level bar is at 100. Oddly, you then have to exit Alsamixer (press Escape) and only then save the change you’ve made. Type ‘sudo alsactl store’ and hit Enter.
Your next job is to install a few audio libraries so that all the files – no matter what their format – can be played by the Pi. Type ‘sudo apt-get install libfaad2 libflac-dev libmad0’ (without the quotes) and hit Enter. You’ll have to agree to download and install at least one of these libraries – type ‘y’ and press Enter when asked.
Set up Squeezelite
Squeezelite is an open-source project that can turn a Linux computer into a Squeezebox player, and it comes in different flavours depending on the hardware you wish to run it on; you’ll need the ‘armv6hf’ version. You’ll have to download the file to the temporary folder of your Pi, then move this file to the /usr/bin folder. After this you’ll need to change to the /usr/bin folder, and make the file you downloaded executable. To perform all these steps, type the following lines into your Pi’s console:
cd /tmp
wget http://squeezelite-downloads.googlecode.com/git/squeezelite-armv6hf
sudo mv squeezelite-armv6hf /usr/bin
cd /usr/bin
sudo chmod a+x squeezelite-armv6hf
Now you should test that Squeezelite works, but you’ll need two pieces of information: the code for your USB sound card and the IP address of the Squeezelite server. You can find the USB sound card’s code with the command sudo ./squeezelite-armv6hf –l. A load of options will appear on your screen, and you need to find an entry for the C-Media Front output. In our case the code for this output is ‘front:CARD=Set,DEV=0’. You can find the IP address of the Squeezebox server by either logging into your router or loading the server’s web page in a browser (we set a static IP address for this server in last month’s guide, which was 192.168.1.145.) Now you can give Squeezelite a spin:
./squeezelite-armv6hf -o
front:CARD=Set,DEV=0 -s 192.168.1.145
Replacing the IP address at the end with your Squeezebox server’s IP. Oddly, if everything is working, the Pi should look as though it’s crashed, as it won’t give you a new command prompt. Don’t panic, as this means that Squeezelite is running.
If Squeezelite launches properly, it will probably look as though your Pi is broken, but check the Squeezebox web page and you’ll see that everything is running fine
You can check this is the case by opening Squeezebox’s web page; you should see ‘Squeezelite’ listed in the ‘players’ drop-down menu at the top-right of the page. Play a track via the Squeezebox web page and it should start playing through the speakers plugged into the USB sound card of your Pi. If not, check your speakers and their connection with the USB sound card (we found we had to rotate the speakers’ mini-jack connection within the USB sound card’s headphone port to make a reliable connection).
Running Squeezelite on startup
The next step is to ensure Squeezelite runs on startup. To do this you should use a script created by a Dutch VW enthusiast called Gerrelt. Press Ctrl-Z to end Squeezelite and your Pi should present its command prompt again. You’ll need to download a script file, so change to the temp folder again, download the script, move it, go to its new location and make it executable, just as you did with the original Squeezelite file:
cd /tmp
sudo wget http://www.gerrelt.nl/RaspberryPi/squeezelitehf.sh
sudo mv squeezelitehf.sh /etc/init.d/squeezelite
cd /etc/init.d
sudo chmod a+x squeezelite
sudo update-rc.d squeezelite defaults
The last command tells the Pi there’s an executable script to run during startup; the ‘update-rc.d’ command is linked to the /etc/init.d folder, which contains items to be loaded during the bootup sequence. However, although you’ve ensured that Squeezelite launches every time the Pi boots up, Gerrelt’s script can’t automatically set the correct settings for your Pi or network, so you’ll have to edit the script, by typing ‘sudo nano squeezelite.’
Hunt through Gerrelt’s amazing Squeezelite script for the few options you need to tweak
In the script, the first option to check is that Squeezelite (on your Pi) knows which port your Squeezebox server is using. Find the entry for SB_SERVER_CLI_PORT. Gerrelt’s default port is 9090, but the web page of our Squeezebox server says the port is 9002, so we needed to change the value.
The default sound card is the Pi’s integrated model, so find the entry for ‘SL_SOUND CARD’ and change the entry from “sysdefault:CARD=ALSA” to “front:CARD=Set,DEV=0” (or whatever code your USB sound card uses). Note once again that you’re declaring the sound card as a variable, so you need to include those double-quotes.
Quality control
For better audio quality, Gerrelt recommends you enable the ‘SL_ALSA_PARAMS=”80″‘ entry that increases the size of Squeezelite’s output buffer. It’s commented out by default, so you need only remove the hash symbol. This option can be tricky to find, so press Ctrl-W (to search), type ‘params’ and hit Enter; the option should be highlighted. To save and exit, press Crtl-X, Y and then Enter.
A simple script tweak can improve audio quality
You can test Gerrelt’s script by typing ‘sudo ./squeezelite start’ and pressing Enter. This is a much more elegant way to start a service on a Pi than the quick and dirty method we used earlier: the Pi will report the settings Squeezelite has used and even give you a command prompt so you can continue to work. You can check that Squeezelite is working by logging into your Squeezebox server and opening the Squeezebox player menu (in the top-right). Instead of the player being called ‘Squeezeslave’ it should now be called ‘raspberrypi’. That’s because Gerrelt’s clever script reports the name of the Pi to the Squeezebox server. Perform a final check by typing ‘sudo reboot’ and hitting Enter. The Pi should reboot and, once it has done so, your Squeezebox server should again see a Squeezebox player called ‘raspberrypi’.
Finally, Gerrelt recommends setting an automatic reboot each night (to clear some gremlin that can interfere with Squeezelite). Edit the crontab (which sets automated routines) by typing ‘sudo crontab –e’ and hitting Enter. On a new line at the end of the file, add ‘0 3 * * * sudo /sbin/shutdown –r now’ (without the quotes, but pay attention to the spaces) to reboot the Pi at 3am every day. Then save and exit by typing Ctrl-X, Y and then Enter.
Clone yours
We promised that you wouldn’t have to go through the same setup process for every multiroom audio speaker you wish to create, and here’s how. Power down your Pi (sudo shutdown –h now) and unplug it. Take out the microSD card, put it back in your PC and fire up Win32 Disk Imager, the tool you used to write Raspbian on to the card in part 1. You’ll need to cheat the software a little by selecting a file in a memorable location on your hard disk – perhaps the original Raspbian image.
Then edit the name in the Image File field from ‘…/2014-09-09’wheezy-raspbian.img’ to something like ‘…/audiopi.img’ and click the Read button (don’t click Write at any point during this process). Win32 Disk Imager will make a 1:1 clone of your SD card, so if you used an 8GB card (as we did) the resulting image will be 8GB; ensure your memorable location has sufficient space. You then use this image (and the Write button of Win32 Disk Image) when writing to the SD card of your other Pi-based wireless speaker units.
Use Win32 Disk Imager to clone your SD card. Type in a location and name for the clone file and press the ‘Read’ button
However, you’ll now have a bunch of speaker controller units all called ‘raspberrypi’. You’ll therefore need to change the name of each unit so you know where to send your music. Once a cloned Pi has booted up and you’ve logged on (with your updated password, remember), type ‘sudo raspi-config’ and hit Enter. Head to ‘8 Advanced Options’ and then ‘A2 Hostname’. Read the advice on the next screen and hit Enter to set a new host name for the Pi. This is the name that Gerrelt’s script reports to your Squeezebox server, so chose something like ‘Lroom1’ (remembering that if you use a character that’s not a letter, number or hyphen, the Pi will behave very oddly, just as the advice screen warns). Reboot and the updated host name should appear in the Squeezebox players menu of your Squeezebox server.
Repeat the host name update for each Pi and you can now use Logitech’s official app to control your Pi-based speakers. Each speaker will show up by (host) name in the app’s main screen, and you can set a playlist for each independently.
“,”meta_name_twitter:title_content”:””,”meta_name_twitter:description_content”:””,”meta_name_copyright_content”:”Dennis Publishing Limited, licensed by Felden”,”meta_name_canonical_content”:”
[current-page:url:all-arguments]
“,”meta_name_shortlink_content”:”
[current-page:url:unaliased]
“,”navigation_title”:”Make a Raspberry Pi smart doorbell”,”url”:””}–>
Make a Raspberry Pi smart doorbell
It might sound silly, but connecting your doorbell to the internet is a great idea. At a basic level, it means that whenever someone presses your doorbell, your smartphone or tablet will chime so you’ll never miss a delivery or visitor, whether you’re down the bottom of the garden or listening to loud music in your study. You’ll also be able to log doorbell presses, so you can prove that the courier you’ve waited for all day really did just stick the “sorry you were out” card through the letterbox without even trying the bell.
To connect your doorbell to your network (and the internet beyond), you’ll need a Raspberry Pi and a Class 4 (or faster) 4GB SD card with the latest version of Raspbian installed. You’ll also need a power supply and an internet connection for the Pi, as well as all the doorbell-specific hardware we’ve listed below.
If you don’t want to buy the Adafruit doorbell we list, you can also use any waterproof, momentary-type push button as a doorbell. If you wish to use an alternative pushbutton – perhaps the one currently next to your door, or one that’s a little wider than the slightly skinny 16mm Adafruit button – ensure the button is a momentary button rather than an on/off switch button, and that its contact and insulation resistances are close enough to that of Adafruit’s button. A momentary button only sends a signal when it’s being pressed, while an on/off button switches from one state to another once pressed; use the wrong button and your doorbell will buzz until the next time someone presses the button.
What you need
*Raspberry Pi (plus power supply and 4GB, Class 4 SD card) with internet access
*PC speaker (standard active type with 3.5mm plug)
*Android or Apple smartphone
*Pushover account (see below)
*Adafruit Waterproof Metal Pushbutton with LED Ring
*10k-Ohm resistor
*Multicore cable (at least 4-strand, such as telephone wire)
*Soldering iron and solder
*Wire strippers
When ordering, why not support your local electronics shop? Below is a table of certified UK Adafruit suppliers. You may have to search for ‘momentary pushbutton’ or similar under the Adafruit section on these sites to find the correct button. Many of these suppliers will also be able to provide the resistor, probably as a pack of 20 for around £1, and the multi-core cable (telephone wire costs around 75p per metre).
Certified UK Resellers | ||
Name | Location | Website |
4Tronix | Sheffield | www.4tronix.co.uk |
Cool Components | London | http://coolcomponents.co.uk |
ModMyPi | London | www.modmypi.com |
Oomlout | Leeds | http://oomlout.co.uk |
Phenoptix | Nottingham | www.phenoptix.com |
Pi Supply | Croydon | www.pi-supply.com |
PKMC | London | http://pkmc.uk.com |
Proto-Pic | Kirkcaldy | http://proto-pic.co.uk |
SK Pang electronics | Braintree | www.skpang.co.uk |
Tandy | Oxford | www.tandyonline.co.uk |
The Pi Hut | Cambridge | http://thepihut.com |
Once you’ve installed Raspbian on your SD card connect the Pi to your network and power it up, then log in with the default user name of ‘pi’ and password ‘raspberry’. Then expand the file system via the blue configuration screen and reboot. Log in again and type ‘sudo apt-get update’ and hit Enter; once Raspbian has updated, update its applications by typing ‘sudo apt-get –y upgrade’.
Remember to expand the file system, otherwise your Pi won’t be able to access the entire storage capacity of your SD card
Next you need to convert the Pi’s GPIO (General-Purpose Input/Output) connection (the double line of bare pins near the SD card slot) from Serial mode to Software Access mode. To do this you need to edit a boot file. Type ‘sudo nano /boot/cmdline.txt’ and hit Enter. You’ll need to edit the current line:
dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
To match this line:
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait
Press Ctrl+X, then Y, then Enter to close, save and overwrite the file with the new changes. Then edit another setup file by typing ‘sudo nano /etc/inittab’ and pressing Enter. Comment out the last line (so that it’s ignored) by inserting a hash at the start of the line, to match the example below, then exit and save the change as before.
#TO:23:respawn:/sbin/getty –L ttyAMA0 115200 vt100
You can now reboot your Pi by typing ‘sudo reboot’.
Install Pushover
The service we’ll use to send doorbell alerts to your smartphone is called Pushover and is available for Apple’s iOS and Google’s Android but not Windows Phone. The Android version has a five-day free trial before asking for $4.99 as an in-app purchase, while the iOS version is £2.99. Pushover can push any kind of alert to your smartphone, so can be used for more than just your doorbell. Install the app, sign up for an account and name the device which you want to receive the notifications. If asked, you’ll obviously want to give permission to Pushover to send you Push Notifications. A welcome message should appear on the Pushover Home screen, telling you that the device can receive messages.
Next, head to https://pushover.net and log in. You’ll be asked to verify your email address, do so and then click Register an Application under the Your Applications section. You’ll be asked to give this new application a name, type, description, URL and icon – see the screenshot for our suggestions. Click Create Application and note the API Token/Key that Pushover generates (it’s a long string of numbers and letters that’s case-sensitive) before pressing Save Changes. Pressing this button will take you to a usage screen with two graphs, but just head home by clicking the Pushover logo at the top-left of the screen. From this main screen, note your user key (the top-most of the two long strings of letters and numbers) and log out.
Create a New Application in Pushover for your doorbell
Back on your Pi, install the audio player mpg321 by typing ‘sudo apt-get install –y mpg321’ and pressing Enter. You’ll then need to save an MP3 audio file to your Pi that will act as your doorbell chime. We chose one from Soundjay, a royalty-free site with a choice of seven sounds. To download an MP3 (we chose file 1, for example) from this site directly to your Pi, type ‘wget http://www.soundjay.com/door/doorbell-1.mp3’ and the download should start. You’ll also need to install the GPIO add-on for the Python programming language, by first installing the Python development toolkit, and then the GPIO add-on:
sudo apt-get install –y python-dev
sudo apt-get install –y python-rpi.gpio
The code that drives your WiFi Doorbell, using the Python programming language
Create a new Python script by typing ‘sudo nano doorbell.py’ and then copy the Python doorbell code, inserting your user and application keys instead of the phrases ‘AppKeyHere’ and ‘UserKeyHere’. You could also download the example script from our server by typing ‘wget www.shopperdownload.co.uk/adproj/doorbell.py and edit it with nano, as above. Save and exit by pressing Ctrl+X, Y, then Enter. You can now shut down the Pi by typing ‘sudo shutdown –h now’ and pressing Enter. Wait 15 seconds or so until the Pi is powered down, and disconnect the power, SD card and Ethernet cable.
Soldering the wires
Strip the outer sheath from the multi-core cable, and then strip the ends from four of the wires. Our phone cable had six wires inside, so we snipped the green pair off altogether. On the Adafruit Pushbutton there are five connections, labelled +, -, NC1, NO1 and C1. It doesn’t matter which wire you use for which connection, but write down which colour you’ve connected where. For example, we used the Orange with White wire for positive, White with Orange for negative, Blue with White for NO1 and White with Blue for C1. Solder the wires to the Pushbutton’s connections. If you’re nervous about soldering, you can connect everything dry by curling the bare wire around your pins and connections with a pair of needle-nosed pliers.
This image shows the function of each of the 26 pins of a Pi’s GPIO connector. Pin 1 is marked on the Pi (as P1). When wiring, orientate the Pi so the GPIO connector is at the top-left corner of the circuit board for easy reading
Next, find your 10k-Ohm resistor. This will have bands of brown then black (to make 10), followed by orange (x1k), then gold (tolerance of five per cent). You need to place the resistor between the 3.3V pin on the GPIO and the GPIO pin you intend to use for control – we’ve used Pin 4, which corresponds to GPIO 4 (used in the Python code above). Then connect the NO1 wire from the Pushbutton (Blue with White, in our case) to the GPIO 4 side of the resistor (or whichever pin you have used). The other connections are straightforward: C1 goes to GND (Ground) on the GPIO, as does –, while + goes to the 5V GPIO pin. The spec sheet of the Pushbutton says that its LED requires 6V, but we found the 5V supply from the Pi was perfectly fine.
Use these diagrams to help you wire your Pushbutton to your Pi
Ensure that no bare wire touches any other bare wire (unless they share a GPIO pin), and once you’re happy, reassemble and power up your Pi. Log in and you’re ready to activate the doorbell script. Type ‘sudo python doorbell.py’ and you’ll see the ‘Doorbell Server Started’ message on the Pi’s screen, followed a few seconds later by your phone buzzing with the Pushover alert ‘Doorbell: Started’. Now press the Pushbutton and you should hear the MP3 chime you downloaded followed quickly by a Pushover alert telling you ‘Someone is at the door!’
To start the Doorbell.py script automatically, we’ll add it to the crontab. Type ‘sudo crontab –e’ to open the crontab file. Then instert the line ‘@reboot python /home/pi/doorbell.py &’ on its own line at the end of the crontab file, then save and exit. Test whether the script launches automatically by typing sudo reboot; after 30 seconds or so, you should receive the ‘Doorbell: Started’ message on your phone.
Make it wireless
Having to route an Ethernet cable to your front door is a pain, so why not make the Pi controlling your doorbell wireless? There are a few Wi-Fi dongles compatible with the Pi; the most common being the Edimax EW-7811Un, which costs £8 from Dabs. The driver for this dongle is already installed with Raspbian, so it’ll work as soon as you plug the dongle in.
Overkill?
Using a Pi to make a wireless doorbell might seem like overkill when you can get wireless doorbell kits for under a tenner, but there’s a lot more you can do when a Pi powers your doorbell. Without adding any more code, for example, your Wi-Fi Doorbell can send your phone Pushover alerts over any kind of data connection, so you don’t even have to be in range of your home’s Wi-Fi. This means you can rush back from the shops to meet Great Aunt Ethel who was meant to call at half-past, not quarter-to. You might also be able to prove that your pesky courier didn’t in fact call earlier by showing the company the Pushover graph for your application.