DIY You Own Amazon Echo

Hello, readers. First of all, a BIG thank you for the tremendous response on my previous post about why you should not pay for an antivirus. If you missed it, click here to read. 

I got many requests after reading the How To Make Your Computer Talk Like JARVIS post to write up a similar DIY project for Raspberry Pi. So here it is!




The Amazon Echo is useful to have around the home. It can play podcasts, take reminders and notes, tell you the length of your commute, even control other appliances in your house. But at prices ranging from $50 to $150, it’s an expensive proposition if you’re not sure you’ll use it. Good news though, you can make a fully-functional one using a Raspberry Pi.
What exactly is different about this version? First off, the end result is basically the same: you can activate your DIY Echo by saying the wake word “Alexa,” and the device works just like a real Echo.




The installation process here is different though. Instead of using Amazon’s official resources, we’ll use a GitHub project called Alexa Pi. This installs the exact same Alexa voice service that Amazon uses on the Echo onto your Raspberry Pi. With this version of the project, if something goes wrong, the Alexa service will start automatically when you restart your Raspberry Pi. This is much better than the other projects I have come across online that require you to restart the service manually by opening three different Terminal windows. Beyond that, this method also supports other development boards, like the Orange Pi and C.H.I.P.



Obviously, there is a cheaper option such as the Echo Dot, but it is a great project if you already have the materials sitting around. Oh, and it is open source. So you can put your skills to test and modify/update it as per your own needs. With that, let’s get to it.
As you’d expect, you’ll need a Raspberry Pi and a handful of parts:
  • A Raspberry Pi 3 (recommended), Raspberry Pi Zero W, or Raspberry Pi 2(you’ll also need a USB Wi-FI adapter with the Model 2) with Raspbian installed and Wi-Fi set up. If you haven’t installed Raspbian before, our guide covers everything you need to know. While I’m going to concentrate on installing this on the Raspberry Pi, a number of other devices are supported. You can find a whole list here. I ran the installation on a C.H.I.P. as well just out of curiosity and it worked fine.
  • A MicroUSB power cable.
  • A USB Microphone (I used this webcam which has an in-built mic, but pretty much any USB mic seems to work. The $8 Playstation Eye seems to work especially well if you’re looking for a slight upgrade) If you’re using the Raspberry Pi Zero W you’ll also need a MicroUSB-USB adapter.
  • Speakers (any powered speaker does the job. I used a portable speaker I had laying around).
  • A Keyboard and Mouse for setup (or use SSH).

Now that you have everything gathered up, connected, plugged in and start building!

Step One: Setting up Amazon Account

Before you do anything, you’ll need to register for a free Amazon Developer Account, then create a profile for your DIY Echo. If you’ve already done this because you made the previous version of the DIY Echo, note that sections 10-13 are slightly different, so you’ll want to change those details. Otherwise, this is pretty straightforward even though it takes a lot of clicks:
  1. Log into your Amazon Developer Account.
  2. Click on the Alexa Tab.
  3. Click Register a Product Type > Device.
  4. Name your device type and display name (I arbitrarily chose “Pi2” for both, though you can enter pretty much whatever you want here), then click Next.
  5. On the Security Profile screen, click “Create new profile.”
  6. Under the General tab, next to “Security Profile Name” name your profile. Do the same for the description. Click Next.
  7. Make a note of the Product ID, Client ID, and Client Secret that the site generates for you.
  8. Click the Web Settings tab, then click the Edit button next to the profile dropdown.
  9. Next to Allowed Origins, click, “Add Another” and type in: http://localhost:5050.
  10. Click “Add Another,” then type in http://your.raspberrypi.ip.address:5050 but replace with your.raspberrypi.ip.address with your Raspberry Pi’s IP address. You can find your Pi’s IP address using the Pi Finder tool detailed here.
  11. Next to Allowed Return URLs, click “Add Another” and type in: http://localhost:5050/code 
  12. Click “Add Another” and add in http://your.raspberrypi.ip.address:5050/code once again replacing your.raspberrypi.ip.address with your own info. Click Next when you’re done.
  13. The Device Details tab is next. It doesn’t matter much what you enter here. Pick a category, write a description, pick an expected timeline, and enter a 0 on the form next to how many devices you plan on using this on. Click Next.
  14. Finally, you can choose to add in Amazon Music here. This does not work on the Pi powered device, so leave it checked as “No.” Click Save.
  15. Now you have an Amazon Developer Account and you’ve created a profile for your Pi-powered Echo. It’s time to head over to the Raspberry Pi and get Alexa working.



Step Two: Install Git and AlexaPi

Next up, you’ll need to fire up Terminal on your Raspberry Pi because we’re going to do the entirety of this project in the command line. Before you start the installation you need to update and install a couple things:

  • Type in sudo apt-get install update and press Enter to make sure your version of Raspbian is up to date. Let it do its thing here.
  • Type in sudo apt-get install git and press Enter to install Git. Again, let it do its thing.
  • Type in cd /opt and press Enter to change the directory.
  • Finally, type in sudo git clone https://github.com/alexa-pi/AlexaPi.gitand press Enter to clone the AlexaPi GitHub repository. Again, give it a second to download and do its thing.
That’s it for the downloading portion, onward to actually installing it.



Step Three: Run the AlexaPi Installation Script

Next, you’ll run an installation script. This automates the installation of everything else you need to get your Echo up and running.
  1. Type in sudo ./AlexaPi/src/scripts/setup.sh and press Enter.
  2. You’ll be asked a series of questions. If you’re using the Raspberry Pi, just press Enter for both the operating system and device prompts. The last question asks if you want to add AirPlay support. If you have an iOS device, this makes it so you can easily stream music from your iPhone to your DIY Echo over Airplay. The script will then download a bunch of software for the next 5-10 minutes, so go ahead and relax for a bit.
  3. Eventually, you’ll be asked to enter in your Amazon developer information. Type in the Device Type ID and Security Profile Description you made way back in step one (we used AlexaPi). Next, you’ll need to enter in all those long, complicated numbers for your Profile ID, Client ID, Client Secret.
  4. Finally, the last thing you need to do is authorize your device. You only need to do this once. Head back to your main computer and open up a web browser. Than type in http://your.raspberrypi.ip.address:5050 replacing your raspberryi.ip.address with your Raspberry Pi’s IP address from earlier. You’ll then need to log into your Amazon account. After that, you’ll see an authorization token.

That’s it, the Alexa voice service is now installed on your Raspberry Pi. You just need to start the service. 




You can either just reboot your device completely, or type in sudo systemctl start AlexaPi.service and press Enter to start it.

Go ahead and try it, say “Alexa” into the mic, and it should reply back with a “Yes?” If it’s not working, you can type in sudo systemctl status AlexaPi.service and press Enter to check the status. Alexa will start up automatically when you reboot your device or if the power goes out for some reason, so you shouldn’t ever have to think about it again.



Guys if you found this useful do share this article with your friends. If you need tutorials or any other DIY then let me know in the comments section below.

Comments

Popular posts from this blog

You Don't Have To Pay To Be Infected

Online Learning – Does It Pay Off?