Build Your Own Raspberry Pi Amazon Echo

Raspberry Pi Amazon EchoRaspberry Pi Amazon Echo
Hello, Alexa Voice Service.
Jeremy Jeremy (10)
Total time: 20 minutes 
Updated: April 16th, 2020

The Amazon Echo and Echo Dot are one of the hottest gifts of the 2017 holiday season. This year, instead of buying one, you can make your own!

In this guide, we’ll be using a Raspberry Pi 3 and Amazon’s Alexa Voice Service (AVS) software to create our very own Amazon Echo for a fraction of the price.

Why create my own DIY Amazon Echo?

In addition to learning (and building something really cool!), a DIY Echo can be less expensive than purchasing a prebuilt one. Additionally, you can build it into really cool enclosures like our Amazon Echo Furby.

Here’s everything you’ll need to complete this guide:

Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

Build Your Own Raspberry Pi Amazon Echo

Raspberry Pi Amazon EchoRaspberry Pi Amazon Echo
Hello, Alexa Voice Service.
Jeremy Jeremy (10)
Total time: 20 minutes 
Updated: April 16th, 2020

The Amazon Echo and Echo Dot are one of the hottest gifts of the 2017 holiday season. This year, instead of buying one, you can make your own!

In this guide, we’ll be using a Raspberry Pi 3 and Amazon’s Alexa Voice Service (AVS) software to create our very own Amazon Echo for a fraction of the price.

Why create my own DIY Amazon Echo?

In addition to learning (and building something really cool!), a DIY Echo can be less expensive than purchasing a prebuilt one. Additionally, you can build it into really cool enclosures like our Amazon Echo Furby.

Here’s everything you’ll need to complete this guide:

Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

Jump to step

Build Your Own Raspberry Pi Amazon Echo

Raspberry Pi Amazon EchoRaspberry Pi Amazon Echo
Hello, Alexa Voice Service.
Jeremy Jeremy (10)
Total time: 20 minutes 
Updated: April 16th, 2020

The Amazon Echo and Echo Dot are one of the hottest gifts of the 2017 holiday season. This year, instead of buying one, you can make your own!

In this guide, we’ll be using a Raspberry Pi 3 and Amazon’s Alexa Voice Service (AVS) software to create our very own Amazon Echo for a fraction of the price.

Why create my own DIY Amazon Echo?

In addition to learning (and building something really cool!), a DIY Echo can be less expensive than purchasing a prebuilt one. Additionally, you can build it into really cool enclosures like our Amazon Echo Furby.

Here’s everything you’ll need to complete this guide:

Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

Build Your Own Raspberry Pi Amazon Echo

Raspberry Pi Amazon EchoRaspberry Pi Amazon Echo
Hello, Alexa Voice Service.
Jeremy Jeremy (10)
Total time: 20 minutes 
Updated: April 16th, 2020

The Amazon Echo and Echo Dot are one of the hottest gifts of the 2017 holiday season. This year, instead of buying one, you can make your own!

In this guide, we’ll be using a Raspberry Pi 3 and Amazon’s Alexa Voice Service (AVS) software to create our very own Amazon Echo for a fraction of the price.

Why create my own DIY Amazon Echo?

In addition to learning (and building something really cool!), a DIY Echo can be less expensive than purchasing a prebuilt one. Additionally, you can build it into really cool enclosures like our Amazon Echo Furby.

Here’s everything you’ll need to complete this guide:

Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1

Build Your Own Raspberry Pi Amazon Echo

piamazonecho
Hello, Alexa Voice Service.
Jeremy Jeremy (10)
Total time: 20 minutes 
Updated: April 16th, 2020
Jeremy
19
12
 
7
Mentioned here
I turned a Furby into an Amazon Echo. Introducing: Furlexa

Here’s everything you’ll need to complete this guide:

Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1
Raspberry Pi 3Raspberry Pi 3×1
Raspberry Pi 3 case×1
USB microphone×1
MicroSD card, 32GB×1
Raspberry Pi power supply, 2A×1
Speakers×1
HDMI cable×1
Raspberry Pi 3
Jump to step
Calling all writers!

We’re hiring. Write for Howchoo

19
12
 
7
In these interests
pi
PRIMARY
215 guides
amazon
17 guides
echo
3 guides
pi
PRIMARY
215 guides
amazon
17 guides
echo
3 guides
PRIMARY
Jump to step

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

The first thing we need to do is set up our Raspberry Pi to run the Alexa Voice Service. To do that, I recommend installing a fresh instance of Raspbian Stretch on your Pi. Thankfully, there’s already a Howchoo guide on this! Check out “How to install Raspbian Stretch on the Raspberry Pi”.

The project we’ll be using also supports Raspbian Jessie and Wheezy. Of course, you can use either of those versions if you prefer old things!

Install Raspbian Stretch on your Raspberry Pi

Mentioned here
How to Install Raspbian Stretch on the Raspberry Pi

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Before we continue, we’ll need to create an Amazon Developer account so we can register our usage of the Alexa Voice Service.

In the top right corner of the page, there is a “Sign In” button. Click that and at the bottom of the next page you’ll see a “Create your Amazon Developer account” button. Click it and continue following the prompts until your registration is complete…

Congratulations, you’re an Amazon Developer! Feel free to brag about it to your friends.

Create an Amazon Developer account

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

Next, we’ll need to create a new AVS product. To do this, navigate to the Alexa Voice Service homepage and click the “Create Product” button at the top right of the page.

You’ll find yourself staring at a big, scary form with a scrollbar but, don’t worry, it’s actually very simple to fill out!

  1. Product Name is used to identify your product to humans. I used “Howchoo Alexa Project”.
  2. Product ID is used to identify your product to robots. Only use alphanumeric characters for this field (no spaces). I used “howchooalexa”.
  3. When asked if your product is an app or device, select Device.
  4. When asked if your product will use a companion app, select Yes.
  5. For Product Category, select whatever you think is most appropriate for your usage. I selected “Computing”.
  6. For Product Description, feel free to enter whatever you think is appropriate. This identifies the usage of your product to Amazon.
  7. When asked how users will interact with your product, select Touch-initiated and Hands-free.
  8. You can skip uploading an image for now.
  9. When asked if you will distribute your product commercially, select No.
  10. When asked if children under the age of 13 will use your product, select No.

Click “Next”.

Create a new AVS product

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

You’ll be taken to a new page to create a new LWA (Login with Amazon) security profile. Click the “CREATE NEW PROFILE” link in the center of the page.

Two new fields will be created, “Security Profile Name” and “Security Profile Description”. These fields are to help you identify the purpose of different security profiles that you’ve created. Feel free to enter whatever you like here to help you identify this security profile with this project.

Click “Next”.

You will be brought to a new form containing a “Client ID” and “Client secret” field. Copy these and save them somewhere easily accessible. We’ll be using them in a following step.

In the “Allowed origins” field add the following two URLs:

http://localhost:3000
https://localhost:3000

In the “Allowed return URLs” field add the following two URLs:

http://localhost:3000/authresponse
https://localhost:3000/authresponse

Check the box to agree to the “AVS agreement” and the “AVS Program Requirements” and click “Finish”.

Create a new security profile

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

The last step before the fun stuff is to enable your newly created LWA security profile. At the top of the page, select the security profile you just created and click “Confirm”.

You will be presented with yet another form with a field called “Content Privacy Notice URL”. Just enter any domain name starting with http:// or https://, such as http://example.com.

Click “Save”.

Enable your new security profile

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Now we’re ready for the fun part! Plug a monitor and keyboard into your Raspberry Pi, give it some power, and open a new terminal window.

If you don’t have a monitor/keyboard setup and you aren’t sure how to log into your Raspberry Pi, consult the following guide on “How to log in to a Raspberry Pi via SSH”.

When you’re setup, clone the Alexa sample app repository from GitHub by running the following command:

cd ~ && git clone https://github.com/Howchoo/alexa-avs-sample-app.git

Clone the Alexa sample app from GitHub

Mentioned here
How to Connect to a Raspberry Pi Remotely via SSH How to Connect to a Raspberry Pi Remotely via SSHThe preferred (and most common) method of connecting to your Pi to run commands.
How to Connect to a Raspberry Pi Remotely via SSH

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

Now we need to update the Alexa sample app install script with the product information we obtained in steps 3 and 4. In the same terminal window we opened in the previous step, run the following commands:

cd alexa-avs-sample-app
sudo nano automated_install.sh

At the top of this file, you will see three variables “ProductID”, “ClientID”, and “ClientSecret”. Each of these variables corresponds with a piece of information we obtained above. Update these values and press “Ctrl+X”, followed by the “Y” key, followed by the “Enter” key to save the changes.

Finally, run the following command to initiate the installation process:

. automated_install.sh

You will prompted with several questions regarding terms & conditions, Amazon registration status, language preferences, and audio output. Be sure to select Yes when asked if you’d like to use the “wake word engine”.

After answering all the prompts, the installation will begin. Go grab a cup of coffee, because this will take a few minutes.

Update and run the install script

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

For this step, we will need to make use of the Raspbian desktop environment. If you don’t have a monitor/keyboard setup, you can log into your Raspberry Pi with a VNC client.

Once you’re all set up, run the following commands to start the AVS companion service:

cd ~/alexa-avs-sample-app/samples/companionService
npm start

Leave this terminal window open for the following steps.

Start the AVS companion service

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Initiate the process of registering your Raspberry Pi with AmazonInitiate the process of registering your Raspberry Pi with Amazon

Next, we’ll need to register our physical Raspberry Pi device with Amazon. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/javaclient
mvn exec:exec

After a few moments a window like the one above will pop-up. Copy the URL in the dialog window to your clipboard and click Yes. A new dialog window will pop-up, but just ignore it for now.

Shortly after, a new web browser window will be opened for you.

Initiate the process of registering your Raspberry Pi with Amazon

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

Complete the device registration processComplete the device registration process

In your new browser window you’ll likely be presented with a message like the one above. Just click “ADVANDED” in the bottom left corner, scroll drown and follow the link called “Proceed to localhost”.

You will be redirected to a secure Amazon login screen. Enter the login credentials you created in step 2 to continue. Don’t be alarmed if you’re asked to login a second time with a Captcha test. Just oblige and be thankful that we still live in a world where humans are better than computers at something.

Lastly, click OK on the dialog window that opened at the end of the previous step. You should now see that the “access token” field of the AVS window is filled. If so, Alexa is now at your command!

Complete the device registration process

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

To make sure everything is working, let’s send Alexa a test command! Click the big microphone button in the AVS window and say “What is the mass of the Sun in grams?”.

If Alexa responds “1,989,100,000,000,000,000,000,000,000,000,000 grams” then congratulations, you did it!

If she doesn’t respond, you may have missed a step or don’t have a microphone setup. If Alexa said a completely different number, then you’re probably in a different solar system! In any case, send your SOS to the comment section below…

Send Alexa a test command

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

If you want to be able to interact with Alexa by just speaking to her, then you’ll need to enable a wake word engine. To do this, open a new terminal window and enter the following commands:

cd ~/alexa-avs-sample-app/samples/wakeWordAgent/src/
./wakeWordAgent -e sensory

Now you can “wake” and interact with Alexa just by saying her name!

(Optional) Start the wake word engine

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

The Alexa Voice Service and do anything a regular Amazon Echo can do! From setting alarms and reminders, to controlling smart home devices, to telling you useless astronomy facts, the possibilities are virtually endless.

If you didn’t already know, you can expand Alexa’s basic capabilities by installing new skills. Check out Amazon’s Skill gallery.

To install your first skill, just say “Alexa, install Jeopardy”!

(Optional) Install your first Alexa skill

Calling all writers!

We’re hiring. Write for Howchoo

Jeremy's profile pictureJeremy
Joined in 2015
Programmer, brogrammer, whoagrammer.
Jeremy's profile picture
Share this guide!
RedditEmailTextPinterest
Related to this guide:
Best Raspberry Pi Beginngers BooksBest Raspberry Pi Beginngers Books
For Raspberry Pi beginners who still love to follow along in a book.
Michael's profile picture MichaelView
In these interests: booksretropiepi
Astro Pi on the ISSAstro Pi on the ISS
What’s better than an experiment? An experiment in space!
Michael's profile picture MichaelView
In these interests: kidspinews
Best Raspberry Pi Beginngers BooksBest Raspberry Pi Beginngers Books
For Raspberry Pi beginners who still love to follow along in a book.
Michael's profile picture MichaelView
In these interests: booksretropiepi
Michael's profile pictureViewbooksretropiepi
Astro Pi on the ISSAstro Pi on the ISS
What’s better than an experiment? An experiment in space!
Michael's profile picture MichaelView
In these interests: kidspinews
Michael's profile pictureViewkidspinewsAsh's profile pictureViewpi
People also read:
The Kali Linux and Raspberry Pi logos, side by side
Kali Linux is a great distribution for Raspberry Pi users who want to get to grips with security testing.
Raspberry Pi Web Server LAMP Stack
The Raspberry Pi micro-computer grows in power with each new model release, with more resources that make it a more capable, low-cost content server for your media and resources.
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Boot Your Raspberry Pi 4 From a USB Drive
The Raspberry Pi was designed to boot from an SD card, but in some cases, it’s convenient to boot from a USB drive.
Raspberry Pi OS
Get the new official Raspberry Pi OS on your Pi.
Raspberry Pi FAQ
New to the Raspberry Pi? Start here.
The Pi-hole logo
Blocking ads just got easier with Pi-hole, a network-wide ad blocker for the Raspberry Pi
Raspberry Pi 4 Cases 2020
Don’t skip out on a proper case for your Pi 4.
Setting up Bluetooth on a Raspberry Pi
The only Raspberry Pi Bluetooth guide you’ll ever need.
Raspberry Pi Windows
Your favorite MS OS on the Pi.
The Kali Linux and Raspberry Pi logos, side by side
Kali Linux is a great distribution for Raspberry Pi users who want to get to grips with security testing.
Raspberry Pi Web Server LAMP Stack
The Raspberry Pi micro-computer grows in power with each new model release, with more resources that make it a more capable, low-cost content server for your media and resources.
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Boot Your Raspberry Pi 4 From a USB Drive
The Raspberry Pi was designed to boot from an SD card, but in some cases, it’s convenient to boot from a USB drive.
Raspberry Pi OS
Get the new official Raspberry Pi OS on your Pi.
The Kali Linux and Raspberry Pi logos, side by side
The Kali Linux and Raspberry Pi logos, side by sideHow to Install Kali Linux on a Raspberry Pi
Raspberry Pi Web Server LAMP Stack
Raspberry Pi Web Server LAMP StackHow to Set Up a Raspberry Pi Web Server
NEMS and Raspberry Pi Logos
NEMS and Raspberry Pi LogosHow to Set Up a Raspberry Pi Network Monitor
How to Boot Your Raspberry Pi 4 From a USB Drive
How to Boot Your Raspberry Pi 4 From a USB DriveHow to Boot Your Raspberry Pi 4 From a USB Drive
Raspberry Pi OS
Raspberry Pi OSHow to Install Raspberry Pi OS on Your Raspberry Pi
Raspberry Pi FAQ
New to the Raspberry Pi? Start here.
The Pi-hole logo
Blocking ads just got easier with Pi-hole, a network-wide ad blocker for the Raspberry Pi
Raspberry Pi 4 Cases 2020
Don’t skip out on a proper case for your Pi 4.
Setting up Bluetooth on a Raspberry Pi
The only Raspberry Pi Bluetooth guide you’ll ever need.
Raspberry Pi Windows
Your favorite MS OS on the Pi.
Raspberry Pi FAQ
Raspberry Pi FAQRaspberry Pi FAQ – Everything You Need To Know
The Pi-hole logo
The Pi-hole logoPi-hole: How to Set Up and Configure Pi-hole on Raspberry Pi
Raspberry Pi 4 Cases 2020
Raspberry Pi 4 Cases 2020Best Raspberry Pi 4 Cases of 2020
Setting up Bluetooth on a Raspberry Pi
Setting up Bluetooth on a Raspberry PiHow to Set Up Bluetooth on a Raspberry Pi
Raspberry Pi Windows
Raspberry Pi WindowsHow to run Windows on the Raspberry Pi
Posted in these interests:
pipi
pi
PRIMARY
The Raspberry Pi is a small, inexpensive computer developed by the Raspberry Pi Foundation in the United Kingdom.
echoecho
The Amazon Echo is a device that houses Amazon’s Alexa voice assistant. It can be purchased directly from Amazon, or you can build your own Echo using a Raspberry Pi computer!
pipi
pi
PRIMARY
The Raspberry Pi is a small, inexpensive computer developed by the Raspberry Pi Foundation in the United Kingdom.
PRIMARY
ExploreExplore
echoecho
The Amazon Echo is a device that houses Amazon’s Alexa voice assistant. It can be purchased directly from Amazon, or you can build your own Echo using a Raspberry Pi computer!
Explore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate

Leave a Reply

Your email address will not be published. Required fields are marked *