@sdetweil It works :-)
thank you for your help and patience. I really appreciate it.
Read the statement by Michael Teeuw here.
Posts
-
RE: Default Calendar - Full Day Events are not shown on day of event
-
RE: Default Calendar - Full Day Events are not shown on day of event
@sdetweil I thought that was the solution. Luckily i have backup from my MM and it works again :-) but the old problem still exists (could you tell me exactly what I should do?) and the MMM-GoogleAssistant/ MMM-Assistant2Display is working but doesn’t play youtube anymore :-(
Many thanks in advance -
RE: Default Calendar - Full Day Events are not shown on day of event
@sdetweil Hi, thank’s for your response, but I don’t get it or maybe to stupid to understand it.
I ran “npm run lint:prettier” and my mirror is blank now :-( -
RE: Default Calendar - Full Day Events are not shown on day of event
@Feedy88 Hi I’m a beginner without coding experience. What should I do fix it? because I have the same problem with my events for birthday calendar, that it isn’t shown at that day.
-
RE: MMM-TelegramBot : Control MM on Telegram
@Bugsounet Oh, sorry for that, I don’t know it. I’ll be glad to hear your response.
Thanks -
RE: MMM-TelegramBot : Control MM on Telegram
@Sean Hi, is it possible to save some shown modules as default with Telegram, when magic mirror restarted?
-
RE: MMM-MplayerRadio
@wishmaster270 Hi, I’m newbie and know almost nothing about coding. I have installed your module successfully, but what should I do to start it (without touchscreen)? It is shown on my mirror but not played. I put only one Station.
I want to start it automatically if I start my mirror.
Thanks. -
RE: MMM-GoogleAssistant doesn't run
@Bugsounet i did the npm run update, It works now. Thanks a lot…man you’re the best
-
RE: MMM-GoogleAssistant doesn't run
@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. -
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