Ever imagined building a hands-free speaker that you can control with your voice. Wouldn’t it be even better if we could also control home appliances this way? In this blog series, let’s see how to build a voice controlled home automation system using Amazon Alexa and Raspberry Pi. I will show you how we can use Raspberry Pi to run the Alexa Voice Service and control a Light Bulb.

Alexa Voice Service provides us the facility to play music, provide information, news, sports scores, weather, and more—instantly. All you have to do is ask.

In this first post of the series, we will setup Amazon Alexa on Raspberry Pi.

Things Required for this Project


Hardware Requirements:

Note: The supply of 230v is country specific. Make sure to check this and choose the relays and light fixture as per your country specific settings.

Software apps and Web Requirements:


Prerequisites

  1. Raspberry Pi with Raspbian OS installed, if it not installed follow Setting up the Raspberry Pi with Rasbian OS – that will walk you through setting up Raspbian Jessie and connecting the hardware.
  2. Internet Connection [Ethernet or WiFi].
  3. Setting up a Microphone for the Alexa Voice Input.
    1. USB 2.0 Mic for the Input.
    2. 5.1 USB Sound Card with a condenser Mic.
    3. I have used a 5.1 USB Sound Card with custom made Mic, a small hack with the sound card and mic you can build the Audio Input for Rpi.
      Follow the Schematic and build your mic,micc Actual Setup of mic looks somewhat like this.mic-setup

And here is how the voice controlled home automation demo will function.

Once you are ready with the hardware setup, let’s work on the software side of the Project. But first, we will setup the VNC Server and Viewer for accessing Raspberry Pi from a laptop. I have followed the official Github Repo for setting up the Alexa and customized for installation steps for this demo.

 

Steps to be followed

  1. Setting up Raspberry Pi with SSH and VNC
  2. Setting up Alexa Voice Service
  3. Installing Alexa on Raspberry Pi

Setting up Raspberry Pi with SSH and VNC

SSH Setup for Remote Access

Initially start with Raspberry Pi connected to a Monitor and install SSH Server with the following command.

$ sudo apt-get install openssh-server

On the latest Raspian OS, SSH Server is enabled by default. If you run into problems with getting the SSH to work, use the raspian-config utility to check it is enabled.

So, now let’s SSH into Raspberry Pi to get rid of Keyboard, Mouse, and Monitor with Rpi. To do that, you need to know the IP address of your Raspberry Pi.

Type this command into the terminal:

$ hostname -I
> 192.168.1.133 //this is an example Raspberry Pi’s IP - it would be different for you

If you’re on a Windows PC, follow the instructions here to SSH Using Windows

Now that you know the IP address of your Pi, you are ready to connect to it remotely using SSH. To do this, open the terminal utility on the computer you would like to connect from and type the following:

ssh pi@<YOUR Raspberry Pi IP ADDRESS>

It will prompt you for your password, enter default password for the user pi is raspberry. Now, we are ready to setup the VNC.

VNC Setup

For setting up the VNC server, we have to install tightvncserver on the Raspberry Pi. Open the Serial Terminal and install using the following command,

sudo apt-get install tightvncserver

Once Installation is completed to run the VNC Server, type the following command on terminal

tightvncserver

Make sure that tightvncserver is running otherwise, the remote access to Raspberry Pi using VNC Viewer will not work.

Autostart and run VNCServer at Startup

To auto start the application on the bootup, type the following in the terminal:

cd /home/pi
cd .config

Note the ‘.’ at the start of the folder name. This makes it a hidden folder that will not show up when you type ‘ls’.

mkdir autostart
cd autostart

Create a new configuration by typing the following command:

nano tightvnc.desktop

Edit the contents of the file with the following text:

[Desktop Entry]
Type=Application
Name=TightVNC
Exec=vncserver :1
StartupNotify=false

Type ctrl-X and then Y, and then press Enter to save the changes to the file.

That’s it. The next time you reboot, the VNC server will restart automatically.

Setting up VNC Viewer on Laptop

First download VNC Viewer on your laptop and then,

  1. Run the downloaded VNC Viewer.
  2. Open a new connection by, File -> New Connection.vnc-view
  3. Register the device by providing the IP address [192.168.XX.XXX] and Device Name. vnc-regi
  4. Once Registration is done, Double click on the following icon and VNC starts connecting to the device.vnc-run3
  5. Once the device is connected, we are ready for setting up Alexa Installation.vnc-des

 

Setting Up Alexa Voice Service

In this section, let’s setup the Alexa with Raspberry Pi

  1. Log in to Amazon Developer Console and get started with Alexa Voice Service by clicking on Alexa.login-aws
  2. Click on the Alexa Voice Service, to proceed with the device registration.alexa-voice
  3. Under Register a Product Type, select Device.regester-device
  4. Under Device Type Info, provide the Device Type ID and Device Name and Click on Next.new-device
  5. Under Security Profile, click on Create a new Profile
    1. Provide a Security Profile name
    2. Provide a short description about the profile and click on next.security-profile
  6. Now, note down the ProductID, ClientID and ClientSecret values that you see on the screen.  You will need these later while installing Alexa on Raspberry Pi.security-details
  7. Click on Web Settings, select the profile you have created in the security profile.
    1. Provide Allowed Origins as,
      https://localhost:3000
    2. Provide Allowed Return URLs as,
      https://localhost:3000/authresponse
    3. Click on Next to proceed with device details.web-settings
  8. Under Device Details tab,
    1. Download and Upload the following image.
      alexa
    2. Select the Category as Home Automation.
    3. Provide a Short Description
    4. Expected timeline for Commercialization, Select Longer than 4 months/ TBD.
    5. Total devices for commercialization, Set as 0.
    6. Click on Next to proceed.device-details
  9. Under Amazon Music, Select No for access to Amazon Music.amazon-music
  10. Click on Submit to finish the device type creation. Now you can see your device on Registered Products.registered-device

Install Alexa on Raspberry Pi

To install Alexa on Raspberry Pi, follow the official link for installation, Setting up Alexa RPi.

In the end, you will have three terminals on Raspberry Pi.

fianl-setup

So this will be our complete setup with Alexa. In a subsequent blog post, we will see how to setup the IFTTT and other components of hardware to complete the project. See you soon !!

About the author 

Radiostud.io Staff

Showcasing and curating a knowledge base of tech use cases from across the web.

{"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}
TechForCXO Weekly Newsletter
TechForCXO Weekly Newsletter

TechForCXO - Our Newsletter Delivering Technology Use Case Insights Every Two Weeks

>