MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. Lowis
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 21
    • Best 0
    • Controversial 0
    • Groups 0

    Lowis

    @Lowis

    0
    Reputation
    495
    Profile views
    21
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Lowis Unfollow Follow

    Latest posts made by Lowis

    • RE: MMM-Remote-Conrol Modules disappeared

      Anyone know if this module installs something outside the MMM-Remote-Control folder ? .
      Because a clean config.js and a fresh install from MMM-Remote-Control does not fix the problem.

      posted in Troubleshooting
      L
      Lowis
    • MMM-Remote-Conrol Modules disappeared

      it’s the second time that the Modules disappeaed on the Remote Website. Maybe thats the cause of install new Modules or rearange of modules in tne config.js. Deleting the MMM-Remote-Control and a reinstall of the module does not fix this issue. Than i choose the config.js.sample file and only add the MMM-Remote-Control config in this file.

      Noting changes … only the normal remote.html website with Power switch and so on . No Modules Control

      Only a complete reinstall of MM can fix this issue. The Modules Control is nessesary for my installation

      posted in Troubleshooting
      L
      Lowis
    • RE: MMM-Hotword (v2) - whole-new-built

      Hi @Sean installed without problems. Great rebuild of MMM-Hotword !

      posted in System
      L
      Lowis
    • RE: MMM-Hotword Snowboy install problem

      @Sean Great ! Thank you

      posted in Troubleshooting
      L
      Lowis
    • RE: MMM-Hotword Snowboy install problem

      i followed all steps and issues in the Troubleshooting section from MMM-Hotword.

      no luck

      posted in Troubleshooting
      L
      Lowis
    • MMM-Hotword Snowboy install problem

      Hello

      installed MM from scratch. All modules are install OK but with MMM-Hotword i got the Snowboy error.
      I tried all tips from the MMM-Hotword readme https://github.com/eouia/MMM-Hotword
      but i got always this error at the end .

      5492 warn MMM-Hotword@1.1.0 No repository field.
      5493 verbose stack Error: snowboy@1.3.1 install: `node-pre-gyp install --fallback-to-build`
      5493 verbose stack Exit status 1
      5493 verbose stack     at EventEmitter.<anonymous> (/usr/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:301:16)
      5493 verbose stack     at EventEmitter.emit (events.js:189:13)
      5493 verbose stack     at ChildProcess.<anonymous> (/usr/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14)
      5493 verbose stack     at ChildProcess.emit (events.js:189:13)
      5493 verbose stack     at maybeClose (internal/child_process.js:970:16)
      5493 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:259:5)
      5494 verbose pkgid snowboy@1.3.1
      5495 verbose cwd /home/pi/MagicMirror/modules/MMM-Hotword
      5496 verbose Linux 4.14.98-v7+
      5497 verbose argv "/usr/bin/node" "/usr/bin/npm" "install"
      5498 verbose node v10.15.3
      5499 verbose npm  v6.4.1
      5500 error code ELIFECYCLE
      5501 error errno 1
      5502 error snowboy@1.3.1 install: `node-pre-gyp install --fallback-to-build`
      5502 error Exit status 1
      5503 error Failed at the snowboy@1.3.1 install script.
      5503 error This is probably not a problem with npm. There is likely additional logging output above.
      5504 verbose exit [ 1, true ]
      
      Any help ?
      
      posted in Troubleshooting
      L
      Lowis
    • RE: [MMM-Remote-Control] Modules Controls disapear

      sorry my fault … moved the file in the mm folder . That does’t work.
      Now moved in mm/config and the custom menu is on the remote. > solved

      But still missing the next entry " Modules Controls

      posted in Troubleshooting
      L
      Lowis
    • RE: [MMM-Remote-Control] Modules Controls disapear

      i tryed this, but still no entrys in the remote .
      where is the modules control option ? ( 2nd marked in my screenshot )

      posted in Troubleshooting
      L
      Lowis
    • RE: [MMM-Remote-Control] Modules Controls disapear

      yes i tryed this. But nothing changes on the remote after restarting MM

      posted in Troubleshooting
      L
      Lowis
    • RE: [MMM-Remote-Control] Modules Controls disapear

      This is the custom_menu_example.json. I never edit this file. custom_menu.json does not exsist in this folder

      {
         "id": "custom",
         "type": "menu",
         "icon": "id-card-o",
         "text": "%%TRANSLATE:CUSTOM_MENU%%",
         "items": [{
               "id": "custom-item-1",
               "type": "item",
               "icon": "dot-circle-o",
               "text": "Menu Item 1",
               "action": "NOTIFICATION",
               "content": {
                  "notification": "NOTIFCATION_TEXT_1",
                  "payload": "This notification requires a string payload"
               }
            },
            {
               "id": "custom-item-2",
               "type": "item",
               "icon": "dot-circle-o",
               "text": "Menu Item 2",
               "action": "NOTIFICATION",
               "content": {
                  "notification": "NOTIFCATION_TEXT_2",
                  "payload": {
                     "title": "Payload Object",
                     "message": "This notification requires a payload object"
                  }
               }
            },
            {
               "id": "custom-item-3",
               "type": "item",
               "icon": "dot-circle-o",
               "text": "Menu Item 3",
               "action": "NOTIFICATION",
               "content": {
                  "notification": "NOTIFCATION_TEXT_3",
                  "payload": null
               }
            },
            {
               "id": "level2",
               "type": "menu",
               "menu": "custom",
               "icon": "bars",
               "text": "Sub-Menu",
               "items": [{
                     "id": "custom-item-4",
                     "type": "item",
                     "icon": "dot-circle-o",
                     "text": "Sub-Menu Item 1",
                     "action": "NOTIFICATION",
                     "content": {
                        "notification": "NOTIFCATION_TEXT_4",
                        "payload": "This notification requires a string payload"
                     }
                  },
                  {
                     "id": "custom-item-2",
                     "type": "item",
                     "icon": "dot-circle-o",
                     "text": "Sub-Menu Item 2",
                     "action": "NOTIFICATION",
                     "content": {
                        "notification": "NOTIFCATION_TEXT_5",
                        "payload": {
                           "title": "Payload Object",
                           "message": "This notification requires a payload object"
                        }
                     }
                  }
               ]
            }
         ]
      }
      
      posted in Troubleshooting
      L
      Lowis