Mycroft with Google AIY Voice kit disk image

I did a git clone of https://github.com/google/aiyprojects-raspbian
then sudo scripts/configure-driver.sh
and sudo scripts/configure-driver.sh

Hmmm, could be the modules not loading?

Also check the /boot/config.txt
I posted mine in the other thread,

So just the output is working right?

Starting with the default picroft, you should be able to do this:

# Install google AIY voicehat for use with mycroft 
# https://github.com/google/aiyprojects-raspbian/blob/voicekit/HACKING.md

#Install prereqs
sudo apt-get -y install alsa-utils rsync libttspico-utils ntpdate

#Clone git
git clone https://github.com/google/aiyprojects-raspbian.git voice-recognizer-raspi

#connect the hardware
cd /voice-recognizer-raspi
sudo scripts/configure-driver.sh
sudo scripts/install-alsa-config.sh
sudo reboot

#Update kernel version to 4.9
sudo apt-get update
sudo apt-get upgrade

sudo apt-get install rpi-update
sudo rpi-update
sudo reboot

# aplay -l and arecord -l should now both be seeing the voicehat

# load mic default

sudo vi /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored

i2c-dev


sudo vi boot/config.txt

# Uncomment some or all of these to enable the optional hardware interfaces
dtparam=i2c_arm=on
dtparam=i2s=on
dtparam=spi=on

# Uncomment this to enable the lirc-rpi module
#dtoverlay=lirc-rpi

# Additional overlays and parameters are documented /boot/overlays/README

# Enable audio (loads snd_bcm2835)
#dtparam=audio=on
dtoverlay=i2s-mmap
dtoverlay=googlevoicehat-soundcard


sudo vi /etc/pulse/default.pa
uncomment and change:
load-module module-alsa-sink device="hw:0"
load-module module-alsa-source device="hw:0,0"

kind regards, Tjoen