ericroberts.ca

How to Turn Your Raspberry Pi Into a Wireless AirPlay Reciever

A while ago I had some brilliant idea to do something, so I bought two Raspberry Pi’s. Because I never follow up on things, they were still sitting in their packaging nearly a year later. Then someone brought one into ArtBarn Labs, where I work, and we started using it as an AirPlay receiver. It was pretty cool, so I demoed it at DemoCampGuelph. But it took a while to get working, so I figured I’d document the process.

At DemoCamp, I only showed it off using ethernet, although I told people you could do it wirelessly. Out of the box, the Raspberry Pi only has ethernet, so I had to figure that out. This is a guide to how I did the whole process, step by step, since I had to compile my instructions from a few different locations. Let’s get started!

Things you’ll need

I’m also going to assume you’re using a Mac, but that is really only important for the first step, and I’m sure you can find alternative instructions elsewhere. I may even tell you where.

Step 1: Get Raspian

You’ll need to download it, unzip it, and write it to an SD card.

  1. Get Raspian. I used this specific version: 2013-09-25-wheezy-raspbian.zip
  2. Get it on an SD card. There are instructions for every operating system here. Since I’m giving specific instructions for my setup, I used RPi-sd card builder. Follow the instructions on that page and it should be good to go. FYI I’m running Mavericks and this program worked fine.
  3. Put the SD card in the Pi!

Step 2: Setup Some Stuff on The Pi

Plug in your mouse and keyboard to the Pi. Also make sure you plugin an ethernet cable, and HDMI, blah blah blah I think you get it. Obviously plug in the micro USB as well so you get some power. When you turn it on you should see something like the following:

Picture of raspi-config

Do the following:

  1. Expand root partition to fill SD card. Unless you did weird things like partition your SD card and you don’t want to use the full space. But seriously… why would you do that?
  2. Setup SSH. Select the ssh option, hit enter, and follow the prompts.
  3. Select start desktop on boot for boot behaviour.
  4. Hit <Finish>

Ok cool. So now we’ve got some initial setup. It probably asked you if you wanted to reboot or it just did it for you, I don’t remember exactly. If you ran into errors, well you’re probably screwed. Or you know, you could google it.

Step 3: Update ALL THE THINGS!

Ok now we’re going to upgrade everything because that’s what the cool kids are doing. Of course, doing this means that this guide might not be of much help at some point in the future. But what the hell. Maybe I’ll even update this thing at some point (not likely).

So do this:

sudo apt-get update
sudo apt-get upgrade

That should take a while. When it’s done, do this:

sudo rpi-update

That should also take a while.

All done? Good, now let’s install a bunch of stuff. I don’t know what it does, but I copied and pasted it off the internet, so how bad can it be? By the way, I got this stuff from a Lifehacker guide: Turn a Raspberry Pi Into an AirPlay Receiver for Streaming Music in Your Living Room. Title sounds an awful lot like mine doesn’t it? I’m 90% just ripping off their article.

sudo apt-get install git libao-dev libssl-dev libcrypt-openssl-rsa-perl libio-socket-inet6-perl libwww-perl avahi-utils libmodule-build-perl

Ok, so now we’ve installed a bunch of stuff, hopefully we didn’t mess shit up.

Step 4: Get the WiFi thing all the kids are talking about.

Now, you’ve got that USB WiFi thing right? Good. Leave it wherever it is. Unless it’s plugged into the Raspberry Pi, then you need to remove that. We’re gonna do some stuff so your Raspberry Pi can actually know that there is a USB adapter plugged in because it didn’t recognize mine at first.

This next bit I found on a Raspberry Pi forum post: Wifi setup with the TP Link WN725N.

Type this in your terminal so we know what version of Raspian we’re using:

uname -a

Mine says this:

Linux raspberrypi 3.6.11+ #557 PREEMPT Wed Oct 2 18:49:09 BST 2013 armv6l GNU/Linux

OK, now do this:

wget https://dl.dropboxusercontent.com/u/80256631/8188eu-20130830.tar.gz
tar -zxvf 8188eu-20130830.tar.gz
sudo install -p -m 644 8188eu.ko /lib/modules/3.6.11+/kernel/drivers/net/wireless
sudo insmod /lib/modules/3.6.11+/kernel/drivers/net/wireless/8188eu.ko
sudo depmod -a

If uname -a returned something different than mine did, you’ll want to visit that forum link and see which driver to install.

So now if you’ve rebooted you should be able to launch “WIFI Config” from your desktop and you should see wlan0 in your adapter dropdown. From here you should be able to find your desired network and connect. You can find more detailed instructions here.

If everything went well you should be able to disconnect your Pi from ethernet and connect over WiFi only! If it didn’t work… hopefully you know how to use Google well.

Step 5: Shairport!

So now we can finally get to that awesome AirPlay receiver program. This is from that Lifehacker article again.

Let’s do this:

git clone https://github.com/hendrikw82/shairport.git
cd shairport
make

We still have more to do, but we should be able to see if this thing at least works now. Do the following:

./shairport.pl -a AirPi

You can replace AirPi with anything you want. For example I have KitchenPi and LivingPi.

It didn’t work right? If it did, you can ignore this next part. If you got an error along the lines of Can't locate Net/SDP.pm then we need to run the following:

cpan install Net::SDP

More details about that last thing can be found on StackExchange: Problem installing Net::SDP.

OK, now you should be able to actually do that thing we tried to do:

./shairport.pl -a LiedToMeTheFirstTimePi

Hooray it works! You should be able to see LiedToMeTheFirstTimePi as an AirPlay source from your Mac or iOS device.

You could keep running that command everytime you booted your Pi in order to make it work, but you probably want to have it happen automatically right?

Once again, we’ll copy stuff from the Lifehacker article:

cd shairport
make install
cp shairport.init.sample /etc/init.d/shairport
cd /etc/init.d
chmod a+x shairport
update-rc.d shairport defaults

Then we need to add it as a launch item.

sudo nano shairport

From Lifehacker: “This loads up Shairport file we need to edit. Look through the file for the “DAEMON_ARGS” line, and change it so it looks like this”:

DAEMON_ARGS="-w $PIDFILE -a AirPi"

Again, change AirPi to whatever you want it to be called when you view a list of AirPlay receivers.

Save the file (ctrl+x) and you’re good!

Conclusion

Hopefully that all went fine for you, but in case it didn’t you should be able to find your solution elsewhere on the internet. If I could be a little bit of help to you then I’ve done my job.

Here’s a list of resources that I used:

  1. Lifehacker: Turn a Raspberry Pi Into an AirPlay Receiver for Streaming Music in Your Living Room
  2. Wifi setup with the TP Link WN725N
  3. Problem installing Net::SDP
  4. Google