@kai i use the sample config
{
module: "MMM-Hotword",
position: "top_right",
config: {
chimeOnFinish: null,
mic: {
recordProgram: "arecord",
device: "plughw:1"
},
models: [ // this is the start of the models, note this is an array, so you can have multiple word choices
{
hotwords : "computer", // what word you expect to hear
file : "computer.umdl", // where it gets the wave pattern model file
sensitivity : "0.5",
},
],
commands: {
"computer": {
notificationExec: {
notification: "ASSISTANT_ACTIVATE",
payload: (detected, afterRecord) => {
return {profile:"default"}
}
},
restart:false,
afterRecordLimit:0
}
}
}
},