MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-PIR doesn´t turn off monitor since update MM 2.7

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    25 Posts 9 Posters 10.3k Views 9 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S Offline
      shgmongohh
      last edited by shgmongohh

      I get a failure message and I don´t know, how to fix it. npm audit fix doesnt work.

      pi@raspberrypi:~/MagicMirror/modules/MMM-PIR-Sensor $ npm install electron-rebuild
      + electron-rebuild@1.8.4
      updated 1 package and audited 301 packages in 17.922s
      found 1 high severity vulnerability
        run `npm audit fix` to fix them, or `npm audit` for details
      
      
      pi@raspberrypi:~/MagicMirror/modules/MMM-PIR-Sensor $ npm audit
      
                             === npm audit security report ===
      
      
                                       Manual Review
                   Some vulnerabilities require your attention to resolve
      
                Visit https://go.npm.me/audit-guide for additional guidance
      
      
        High            Arbitrary File Overwrite
      
        Package         tar
      
        Patched in      >=4.4.2
      
        Dependency of   electron-rebuild [dev]
      
        Path            electron-rebuild > node-gyp > tar
      
        More info       https://nodesecurity.io/advisories/803
      
      found 1 high severity vulnerability in 301 scanned packages
        1 vulnerability requires manual review. See the full report for details.
      
      
      S 1 Reply Last reply Reply Quote 0
      • D Offline
        djay07
        last edited by djay07

        I did the recommended above, but it’s still just nothing happening. Any further ideas?

        I have a RCWL-0516 connected right now and a small python script which shows me it’s activity. but the module won’t shutdown the screen after minutes without motion (delay set to 10 secs).

        Edit:
        Maybe i should add:
        I tried this with MMM-PIR -> interface not starting, error:

        WARNING! Could not validate config file. Starting with default configuration. Please correct syntax errors at or above this line: ReferenceError: NodeHelper is not defined
            at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-PIR/node_helper.js:11:18)
            at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-PIR/node_helper.js:67:3)
            at Module._compile (internal/modules/cjs/loader.js:711:30)
            at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10)
            at Module.load (internal/modules/cjs/loader.js:620:32)
            at tryModuleLoad (internal/modules/cjs/loader.js:559:12)
            at Function.Module._load (internal/modules/cjs/loader.js:551:3)
            at Module.require (internal/modules/cjs/loader.js:658:17)
            at require (internal/modules/cjs/helpers.js:20:18)
            at loadModule (/home/pi/MagicMirror/js/app.js:127:17)
        App threw an error during load
        ReferenceError: NodeHelper is not defined
            at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-PIR/node_helper.js:11:18)
            at Object.<anonymous> (/home/pi/MagicMirror/modules/MMM-PIR/node_helper.js:67:3)
            at Module._compile (internal/modules/cjs/loader.js:711:30)
            at Object.Module._extensions..js (internal/modules/cjs/loader.js:722:10)
            at Module.load (internal/modules/cjs/loader.js:620:32)
            at tryModuleLoad (internal/modules/cjs/loader.js:559:12)
            at Function.Module._load (internal/modules/cjs/loader.js:551:3)
            at Module.require (internal/modules/cjs/loader.js:658:17)
            at require (internal/modules/cjs/helpers.js:20:18)
            at loadModule (/home/pi/MagicMirror/js/app.js:127:17)
        

        And MMM-PIR-Sensor is not reacting at all.

        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @djay07
          last edited by

          @djay07 after you did the git pull update, did you do npm install in the MagicMirror folder
          AND every module that has a package.json file???

          you must

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          D 1 Reply Last reply Reply Quote 0
          • D Offline
            djay07 @sdetweil
            last edited by

            @sdetweil
            morning,
            well i didn’t do it in every single subfolder where a package.json is placed, since i didn’t expect this to be necessary.

            I did:

            • git pull
            • in the module folder “npm install”
            • npm install electron-rebuild
            • ./node_modules/.bin/electron-rebuild

            the result is the above.
            Currently i solved it with external scripts running in system.d, but if you tell me i need to run “npm install” in each folder with a package.json, i would give it a try, just to report back.

            S 1 Reply Last reply Reply Quote 0
            • L Offline
              lxne Project Sponsor
              last edited by

              @djay07 Hi, have you been able to solve the MMM-PIR problem? I am stuck with the same thing.

              F 1 Reply Last reply Reply Quote 0
              • F Offline
                FruityBebbles @lxne
                last edited by

                @lxne @djay07 Same…

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @FruityBebbles
                  last edited by

                  @FruityBebbles sorry, could you tell me more?? same what?

                  can’t tell how far back u are responding…

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  F 1 Reply Last reply Reply Quote 0
                  • S Offline
                    sdetweil @shgmongohh
                    last edited by

                    @shgmongohh just fyi… the npm audit fix will NOT fix everything… these are warnings anyhow… so, no problems

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @djay07
                      last edited by sdetweil

                      @djay07 @lxne @FruityBebbles ok, node_helper missing… heres how to fix

                      cd ~/MagicMirror
                      git checkout modules/node_modules/node_helper/index.js
                      

                      then restart your magic mirror however you do it… reboot, pm2, some script. npm start

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • P Offline
                        Paxan
                        last edited by

                        I could make it work by moving the module in the config file to the very bottom.

                        1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 2 / 3
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy