@Bugsounet I was trying to install Google Assistant in my Magic Mirror, according to the tutorial: https://github.com/bugsounet/MMM-GoogleAssistant/wiki/Installation and it was installed correctly, but at the time of testing it comes out a console error and the screen goes black.
@Mauro-1998 he wrote, that he solved it by reinstalling the snowboy library. That’s why my question.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-GoogleAssistant doesn't run
-
RE: MMM-GoogleAssistant doesn't run
@Bugsounet sorry, I am a beginner. I have installed GoogleAssistant successfully
as in Wiki. But when I start MagicMirror, I have only blank screen. -
RE: MMM-GoogleAssistant doesn't run
@Mauro-1998 hai, could you tell me how you reinstall the snowboy library? I have the same Problem, after installing the GoogleAssistant only black screen :-(
Thanks. -
RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror
@Jopyth after update the Magic Mirror to v2.7.0. I lost all icons. Do you have any idea why? Thanks in advance
-
RE: MMM-AssistantMk2
@Sean after MM latest update found youtube video is not played automatically. It is only shown. I ran npm start dev and get this error: Failed to execute ‘postMessage’ on ‘DOMWindow’: The target origin provided (‘https://www.youtube.com’) does not match the recipient window’s origin (‘http://0.0.0.0:8080’). Do you have any idea? Thanks in advance.
-
RE: MMM-AssistantMk2
@Sean unfortunately it doesn’t help. I wonder, why only this SHOWMODULES doesn’t work but all other recipes do (include HIDEMODULES) :pensive_face:
-
RE: MMM-AssistantMk2
@Sean I’ll try it tonight (I’m still at work now :smiling_face_with_smiling_eyes: ) and let you know. Many thanks…you did really a great job :thumbs_up_light_skin_tone: :folded_hands:
-
RE: MMM-AssistantMk2
@Sean
thank you sean for your quick response. Actually I use the default hide_and_show_all_modules.js and change the pattern to german:
var recipe = {
transcriptionHook: {
“HIDE_ALL_MODULES”: {
pattern: “alle verstecken”,
command: “HIDEMODULES”
},
“SHOW_ALL_MODULES”: {
pattern: “alle module”,
command: “SHOWMODULES”
},
},
command: {
“HIDEMODULES”: {
moduleExec: {
module:()=>{
return []
},
exec: (module, params, key) => {
module.hide(1000, null, {lockString:“AMK2”})
}
}
},
“SHOWMODULES”: {
moduleExec: {
module:[],
exec: (module, params, key) => {
module.show(1000, null, {lockString:“AMK2”})
}
}
},
},
}exports.recipe = recipe