How to learn Google AIY kits
There are some preparation work before start to assemble AIY kits, some basic on Raspberry Pi needed to familiar with, there are some
You need to practice basic Linux commands in Raspberry Pi
$sudo apt-get update
$sudo apt-get upgrade
$sudo raspi-config
enable SSH for remote login
putty.org
$ssh pi@192.168.0.103
use putty to connect 192.168.0.103
$sudo apt-get remote xrdp vnc4server tightvncserver
$sudo apt-get install xrdp
$pwd print working directory
$sudo apt-get
$cd /home change directory
$cd ~
$ls
$ ls /home/
$mkdir example
$cd example
$cd .. go back
$cd ../../
$cd ..
$nano test.py Ctrl + x
$ python test.py
$mkdir downloads
$cd downloads
$wget https://.... png
$sudo apt-get install git
$git clone https://github.com/python
$ cd ../
$rm delete things
$rmdir xxx
$ rm -r recursively
$ ls -al
$ ls --al
$ls --all
$cd Desktop
$sudo raspi-config enable the camera
$sudo apt-get install python3-picamera
[endif]
$nano cameraexample.py
import picamera
import time
camera = picamera.PiCamera()
camera.capture('example.jpg')
camera.start_recording('examlevid.h264')
ctrl + x
[endif]
$cd Desktop/
$omxplayer examplevid.h264
Start from here http://aiyprojects.withgoogle.com/voice
Build you digital assistant with Raspberry Pi
Console Cloud Google