MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Keith
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    K
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 12
    • Groups 0

    Keith

    @Keith

    3
    Reputation
    97
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Keith Unfollow Follow

    Best posts made by Keith

    • 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.

      8f20ae80-d56d-4fa9-9174-6bb522f6a362-image.png

      posted in Transport
      K
      Keith
    • 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.

      posted in Transport
      K
      Keith

    Latest posts made by Keith

    • RE: My family dashboard

      Well done.

      posted in Show your Mirror
      K
      Keith
    • RE: MMM-SeawayLockTraffic

      @sdetweil sorry, I just followed them from your signature block and didn’t pay attention to who’s they were.

      posted in Transport
      K
      Keith
    • 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.

      posted in Transport
      K
      Keith
    • 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.

      8f20ae80-d56d-4fa9-9174-6bb522f6a362-image.png

      posted in Transport
      K
      Keith
    • RE: MMM-Hotword

      @Sean will do.

      posted in Troubleshooting
      K
      Keith
    • 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.

      posted in Troubleshooting
      K
      Keith
    • 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()
                        }
                    }
                }
      
            }
        }
      
      posted in System
      K
      Keith
    • RE: MMM-AssistantMk2

      @Sean I’ll give that a try and let you know. Thanks

      posted in System
      K
      Keith
    • 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.

      posted in System
      K
      Keith
    • 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

      posted in Productivity
      K
      Keith