Mycroft with Respeaker 2-Mic

As Requested here is the extent of the files I edited and what was edited.

/boot/config.txt
from

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

to

`# Enable audio (loads snd_bcm2835)
dtparam=audio=off
dtoverlay=i2s-mmap
dtparam=i2s=on
dtoverlay=seeed-2mic-voicecard

/etc/mycroft/mycroft.conf

“play_wav_cmdline”: “paplay %1”
“play_mp3_cmdline”: “mpg123 %1”

/etc/asound.conf

`# Use PulseAudio by default
pcm.!default {
type pulse
fallback “sysdefault”
hint {
show on
description “Default ALSA Output (currently PulseAudio Sound Server)”
}
}

ctl.!default {
type pulse
fallback “sysdefault”
}

/etc/pulse/daemon.conf

resample-method = ffmpeg
default-sample-format = s24le
default-sample-rate = 48000
alternate-sample-rate = 44100

/etc/pulse/default.pa

unload-module module-suspend-on-idle
unload-module module-role-cork
load-module module-role-ducking

pactl set-default-sink 0
pactl set-default-source 1

1 Like