Using Hermes MQTT. Wake word is detected multiple times, added debug messages and some timeout code to mitigate multiple activations of Rhasspy. config.yaml for configuration of MQTT and open wake word
15 lines
439 B
Text
15 lines
439 B
Text
# Configuration for using Open Wake Work with Rhasspy voice assistant
|
|
|
|
mqtt:
|
|
broker: 127.0.0.1
|
|
port: 1883
|
|
username: mymqttusername # Login to broker. Delete if not required
|
|
password: mymqttpassword # Login to broker. Delete if not required
|
|
|
|
# Open Wake Word config
|
|
# https://github.com/dscripka/openWakeWord#recommendations-for-usage
|
|
oww:
|
|
activation_threshold: 0.5
|
|
vad_threshold: 0.5
|
|
enable_speex_noise_suppression: false
|
|
|