Questions tagged [google-aiy]

Tag for Google AIY projects, a series of do-it-yourself kits for makers to explore creative uses of artificial intelligence (AI).

AIY Voice Kit demonstrates voice recognition AI. With this kit, makers assemble their own device that can process natural language (NLP) using cloud services and respond with software events and hardware integration points. The VoiceBonnet accessory board included with the kit has GPIO breakouts to enable makers to extend the device for their own purpose. Please see the website here to get started.

AIY Vision Kit demonstrates image recognition AI. With this kit, makers assemble their own device that can process the video stream from the camera, using a variety of Convolutional Neural Networks (CNN) to evaluate image frames. Trained CNN models for face detection, facial emotions and common objects are included. The VisionBonnet includes a neural network acceleration chip to enable on-device AI (no internet connection required), as well as GPIO breakouts for makers to extend the device for their own ideas. Please see the website here to get started.

More AIY products will be coming soon, so please check the website for the latest details.

45 questions
0
votes
1 answer

How to shutdown AIY voice kit with button

I use below code for AIY VOICE KIT google assistant. This kit uses a raspberry pi to run google assistant. So basicly you can build your own mini google home and control other raspbery pis or whatever will talk to python. I have it set up with the…
UNKNOWN
  • 105
  • 10
0
votes
0 answers

gpio zero button press error with aiy pins.py

With a button connected to GND and PIN_D on a V2 AIY Voice Bonnet and code: from gpiozero import Button from signal import pause from aiy.pins import PIN_D button = Button(PIN_D) button.wait_for_press() print("The button was pressed.") pause() I…
0
votes
1 answer

Gstreamer does not work with other user than mendel

I have a google coral dev board. I want the gstreamer plugin to work with user other than default user mendel .I performed the following steps and ran into problem. Installed the gstreamer using the following command. sudo apt-get install -y…
0
votes
1 answer

Is there any example of how to use the digital input or analog input of GPIO on google aiy voice board?

I can not read the input from the motion sensor (HC-SR501) which connects to PIN_A of the expansion pins on the voice bonnet of my aiy voice kit. Below are the code and the error message, please shed some light. Code: from gpiozero import…
0
votes
0 answers

What is the best way to send data from a python script on a raspberry pi to a place that a chrome extension could access?

So I'm working on an attendance system using an AIY Voice kit which I've programmed to when I say "Ok google, take attendance" It starts listing names and when you say here or absent, then it sorts them into 2 separate arrays. I made a chrome…
user12465154
0
votes
0 answers

Cloudspeech demo in voice AIY kit cryptography error

I am running the cloudspeech_demo.py in my Google AIY voice kit. I have also included the Google Cloud Speech to Text credentials This is the error I am running into INFO:root:Initializing for language en_GB... Traceback (most recent call last): …
gd vigneshwar
  • 847
  • 1
  • 9
  • 19
0
votes
0 answers

How can I run Assistant demo in bootup in my AIY?

I'm building Google Assistant in my AIY Voice Kit V1, and want to make it respond when it booted up. But I have problems with making it in reality. Being new in both Linux and Raspberry Pi, now I have no idea what to do. In the beginning, I followed…
Dogeun Oh
  • 1
  • 1
0
votes
1 answer

google-assistant-demo and googlesamples-assistant-hotword segmentation fault

I tried to install google assistant on raspberry pi3 b+ using these instructions - https://developers.google.com/assistant/sdk/guides/service/python/ - and using GassistPi. In both cases when I run command google-assistant-demo --project-id…
0
votes
1 answer

Where can I download mobilenet_v1_160res_0.5_imagenet_labels.txt for local testing?

For our course projects, we started off with Google's AIY Vision kit. I am looking into how to use output for next level processing. We are all newbies to ML I am testing image classification using sources from Github AIY Projects on my mac. python…
Yuva Athur
  • 131
  • 1
  • 4
0
votes
1 answer

GPIO access from Voice Bonnet

I have a Google AIY Voice Kit. I want to use the raspberry pi to create a water dispenser system. I need access to the GPIO to connect relay and motors. Can I access them via Google Voice Bonnet or I have to remove it? I want to use the voice chip…
blackbug
  • 1,098
  • 3
  • 13
  • 40
0
votes
1 answer

aiy.led and aiy.board modules do not exist

I am trying to import a module to control the LED in the button of the voice AIY. I have version 2 of the kit. Using both the v2 instructions and the v1 instructions, I get an ImportError when trying to import the packages. The v2 instructions say…
John Locke
  • 185
  • 1
  • 17
0
votes
1 answer

Fatal Python Error: Segmentation Fault when running my own voice assistant program

I have an error when i run my custom voice assistant program on Raspberry Pi 3B .This script is made from two programs from examples(assistant_library_demo.py and cloud_speech.py).Consequently the script does the both functions from those examples.…
ArduinoAz
  • 31
  • 1
  • 2
0
votes
0 answers

make a python script (google assistant) program as a service to start on boot

I have a google aiyproject voice kit. I have setup authentication and everything work when the script is run from terminal, like ./example.py. I configured the same script as a systemctl service, and when start I get this error. Feb 26 20:27:47…
bsr
  • 57,282
  • 86
  • 216
  • 316
0
votes
0 answers

Python : Problem using google AIY and Google TextToSpeech

I'm having an issue with python and my AIY voice kit on a Raspberry Pi 3B+. I can get the AIY voice kit to work, recognise trigger words and all. I can also get google's TextToSpeech API working no problem with text or ssml. However I can't get both…
RHarris
  • 23
  • 6
0
votes
1 answer

Build of "aiy-vision-dkms" fails

I am trying to install the Google AIY Vision Bonnet on Raspian Stretch 4.14.79-v7+, as explained in https://github.com/google/aiyprojects-raspbian/blob/aiyprojects/HACKING.md, but the build of aiy-vision-dkms fails with lots of errors. I did all…
haku15
  • 111
  • 2