Introduction: DIY Your ReSpeaker Adapter(Voice Control)

About: Howdy, we are application engineers in Seeed. Sharing projects with the maker community is awesome. Hope you like it XD Seeed is the IoT hardware enabler providing services that empower IoT developers to swift…

Have you heard about home automation with Amazon Echo and Raspberry Pi? In that case, you could control your home with your voice. But Amazon Echo and Raspberry Pi are too expensive.

Now we have an new idea. With Seeed Studio ReSpeaker and Wio Node, we are able to make a Voice House Control scheme with less money and without having to worry about the complexities of the human voice.

ReSpeaker is an open modular voice interface to hack things around you. Let you interact with your home appliances, your plant, your office, your internet-equipped devices or any other things in your daily life, all by your voice.

In this recipe, we will develop a voice control adapter and control it with some voice command. If you like this, please share with your friends!

Step 1: What Do We Need

Materials:

ReSpeaker Core with a SD card

Wio Node

Grove - Relay

Power Adapter

USB Power Adapter

Tools:

Cable

Soldering Iron

Solder wires

Pliers

Wio Link APP IOS / Android

Step 2: Hardware Work 1

Unscrew the back of power adapter. There are 3 wires marked as “1”,”2”,”3” in the pictures. Cut wire “1” “2” "3" as the picture shown. After that, to make the first socket always power on, solder wire “1” to its copper sheet.

Step 3: Hardware Work 2

Connect wire “3” and “4”(new cable wire) to Grove - Relay. Then solder wire “4” to the copper sheet of the second socket as the picture above. Don’t forget to pull out the grove cable from the hole.

Finally screw down the back of power adapter.

Step 4: Setup Wio Node

Connect Grove - Relay to PORT0 of Wio Node and power Wio Node with a USB power adapter.(PS: Be careful to use eletricity)

Open Wio Link APP in your phone and connect Wio Node to a Wi-Fi following the APP's instructions.

After that, add a Grove - Relay to PORT0 in the APP, update the firmware and get API like this: http://cn.wio.seeed.io/v1/node/resources?access_to...

PS: Get your own access_token in ths API and add it to the "main.py" python script

Step 5: Setup ReSpeaker

Serial console

  • baudrate:57600
  • terminal: putty on windows; "screen /dev/xxx 57600" on Linux/Mac

Connect to the Internet

  • Connect your smart phone/laptop to a Wi-Fi named LinkIt_Smart _xxxxxx and visit 192.168.100.1. After setting a password of Respeaker and logining in, you need to select station mode, select a Wi-Fi network and enter the password as the picture above.

Step 6: Download and Edit Code

Download the code to ReSpeaker:

git clone https://github.com/jerryyip/respeaker_adapter.git

Then get a key from # get a key from https://www.microsoft.com/cognitive-services/en-u... and create 'creds.py' with the key.
Add your own Wio access_token to 'main.py'

Step 7: Finish!

Run the python script

python main.py

Try to say: "Hi ReSpeaker" , then it will repeat "hi" to you. And the next you could say "please turn on/off the relay" to control the adapter.

Let's try this!