Introduction: Speak to Your Arduino & Control It by Google Assistant

About: Passionate about electronics parts and tutorials. We're your go-to source for high-quality components and expert guidance. Join us on our journey of exploration and innovation in the world of electronics.

Read This and other amazing tutorial on ElectroPeak's official website

In this project, We’ll Learn how to make a connection between an internet service and Arduino boards. At the end of this article, you will:

  • know how to get data from Google Assist
  • know how to use IFTTT protocol.
  • be familiar to webhooks and http requests.
  • be able to speak to your Arduino.

Step 1: Google Assistant & IFTTT Applets

The Google Assistant is an artificial intelligence-powered virtual assistant developed by Google that is primarily available on mobile and smart home devices. Unlike the company’s previous virtual assistant, Google Now, the Google Assistant can engage in two-way conversations. It can recognize your words better than any devices and respond fast and correctly to your commands. Users primarily interact with the Google Assistant through natural voice, though keyboard input is also supported. In the same nature and manner as Google Now, the Assistant is able to search the Internet, schedule events and alarms, adjust hardware settings on the user’s device, and show information from the user’s Google account. Google has also announced that the Assistant will be able to identify objects and gather visual information through the device’s camera, and support purchasing products and sending money, as well as identifying songs.

If This Then That, also known as IFTTT, is a free web-based service to create chains of simple conditional statements, called applets. An applet is triggered by changes that occur within other web services such as Gmail, Facebook, Telegram, Instagram, or Pinterest. For example, an applet may send an e-mail message if the user tweets using a hashtag, or copy a photo on Facebook to a user’s archive if someone tags a user in a photo. In addition to the web-based application, the service runs on iOS and Android. In February 2015, IFTTT renamed its original application to IF, and released a new suite of apps called Do, which lets users create shortcut applications and actions. As of 2015, IFTTT users created about 20 million recipes each day. All of the functionalities of the Do suite of apps have since been integrated into a redesigned IFTTT app.

Step 2: Webhook & JSON Content

A webhook in web development is a method of augmenting or altering the behaviour of a web page, or web application, with custom callbacks. These callbacks may be maintained, modified, and managed by third-party users and developers who may not necessarily be affiliated with the originating website or application. The term “webhook” was coined by Jeff Lindsay in 2007 from the computer programming term hook.

In computing, JavaScript Object Notation (JSON) is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types (or any other serializable value). It is a very common data format used for asynchronous browser–server communication, including as a replacement for XML in some AJAX-style systems.

Step 3: Google Assistant to Arduino

In this project, We want to control different parts of an Arduino like I/O pins, PWM, Serial port and so on by sending a string from Google assist to Arduino Serial port. First of all, We need to define some specific phrases for Google Assist to find out what we mean. Then we will make an applet in IFTTT website and make a connection between google assist and our database. After that we read data from database by ESP8266 module and send it to the Arduino. Let’s get started!

Step 4: Required Materials

Hardware Components

Software Apps

  • Arduino IDE
  • Visual Studio 2017

Step 5: Circuit

Step 6: Implementation

First of all, you need a device to run your Google assist. Go to assistant.google.com and see all devices that support the assistant. In this project, We use an Android phone device. Open ifttt.com and create an account. After signing in, Click on My Applets then click on New Applet. Now you can add your service as THIS in your applet. Click on THIS and search for Google Assistant. You have 4 choices to define your phrase for google assist. Choose phrase with a number ingredient. In the next page you can add your phrase. For example you want to say “Set PWM of pin 9 to 255”. Just type it as your phrase and replace “255” with a “#” symbol. You can add more phrases with the same meaning like “PWM 9 to 255”. Now add a response so that the Google Assist can let you know that your command was understood and the necessary action was taken, for example “The PWM is updated”. When you are done click on Create Trigger. In “THAT” part of your applet you have lots of services to choose form search for “Webhooks” and choose that. Click “Make a web request”. Add URL of your Server to receive data. Set method on POST and select Application/json for content type. Now you should add a body of content. Something like this : {“Number”:”{{NumberField}}”}. Now click on “Create action”.

Step 7: Server and Database

We write sample code for Server to get data from IFTTT and store in the database. You can change models to make your data sored as your interest.

Necessary Files and Downloads:

Step 8: ESP8266 & Arduino Code

First we write a code for ESP-01 to get data from database and send it to the Arduino via Serial port. Then we write another code for Arduino to get data from ESP-01 and execute the command (e.g. change the PWM). You can use Arduino IDE to compile both codes and Upload them to the boards.

Before you can use the ArduinoJson library, you have to make sure the library is installed on your computer. To do a quick check, head over to the library manager in the Arduino IDE (Sketch > Include Library > Manage Libraries) and type “ArduinoJson” in the text box, if you see a green colored “INSTALLED” label beside the name of the library, that means you are all good to go and you can proceed on to the next step. If you don’t see the label, click on the box/division once and you will see the “Install” button. Hit install and you are all set for the next step.

Now, Upload this code onto ESP-01:

And this is the code for Arduino to get orders from Google Assistant and perform them.

Step 9: What’s Next?

You can improve this project as you wish. Here are a few suggestions:

Try to add your favorite commands like controlling your output pins, you can use a relay module and control you rooms light.

Try to send data from Arduino to Google assist.