Well done.
Read the statement by Michael Teeuw here.
Posts made by Keith
-
RE: MMM-SeawayLockTraffic
@sdetweil sorry, I just followed them from your signature block and didn’t pay attention to who’s they were.
-
RE: MMM-SeawayLockTraffic
@sdetweil Thanks, I’m pleased with myself for figuring it out. @Mykle1 's module was a great starting point, The group is very helpful for us beginners. Your how-to docs are wonderful.
-
MMM-SeawayLockTraffic
GitHub Repo: https://github.com/ProfKP/MMM-SeawayLockTraffic
I created my first module. It lists the “order of turn traffic” for any lock in the St Lawrence Seaway. This is a work in progress module as I’m not a program or web developer.
Note: Seaway traffic ends around 31 December so after the Seaway closes for the season no ships will be shown again until the Seaway reopens in the spring.
-
MMM-Hotword
Since upgrading to MMM-Hotword 2.0.2, my MMM-AssistantMk2 module has stopped receiving notifications.
Hotword works as expected and in console() I see the notification “ASSISTANT_ACTIVATE” being sent out. MMM-Assistant does not react to this notification. If I click on the MMM-AssistantMk2 icon it records audio and works as expected. I don’t know what was changed so any help would be appreciated.It was all working before the upgrade.
-
RE: MMM-AssistantMk2
@Sean I got it working, thanks for your help. The code that worked for me is below
command: { "HIDECALENDAR": { moduleExec: { module:()=>{ return [] }, // For all modules, exec: (module, params, key) => { if (module.name == "MMM-GooglePhotos") { // if module name is... module.show() } if (module.name == "MMM-CalendarExt2") { module.hide() } } } }, "SHOWCALENDAR": { moduleExec: { module:()=>{ return [] }, // For all modules, exec: (module, params, key) => { if (module.name == "MMM-GooglePhotos") { // if module name is... module.hide() } if (module.name == "MMM-CalendarExt2") { module.show() } } } } }
-
RE: MMM-AssistantMk2
I’m trying to create a recipe that with a single command will hide “module A” and show “module B”. Another command will reverse this action. I can hide and show single modules or all modules but I can’t figure out hide one and show another. Any suggestions would be appreciated.
-
RE: MMM-CalendarExt
Is there any way to get a “month” view of the following month? I can do it in CalendarExt2 but I like the layout of CalendarExt better.
Both are excellent modules BTW