No sound feedback or intent capture temp fix - Psychokiller1888/MyChef GitHub Wiki
As seen in the last part of my video, a little bug might stop you from hearing sounds or even use the program. The fix is pretty easy:
sudo nano /usr/bin/seeed-voicecard
Comment out the following line, by starting them with a "#"
cp /etc/voicecard/asound_2mic.conf /etc/asound.conf
echo "get old hw number"
old=$(cat /etc/asound.conf | grep hw: | awk 'NR==1 {print $2}' | sed 's/\"//g')
echo "replace new hw:${hw},0"
sed -i -e "s/${old}/hw:${hw},0/g" /etc/asound.conf
cp /etc/voicecard/wm8960_asound.state /var/lib/alsa/asound.state
Edit you asound configuration:
sudo nano /etc/asound.conf
Delete everything in there and place the following:
sudo nano /etc/asound.conf
pcm.!default {
type asym
playback.pcm {
type plug
slave.pcm "hw:1,0"
}
capture.pcm {
type plug
slave.pcm "hw:1,0"
}
}
Press CTRL+x to quit Nano, type Y for yes and hit enter
Finally reboot your device and you should be good to go