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

    Scheduled Pinned Locked Moved Solved Troubleshooting
    34 Posts 5 Posters 6.3k Views 6 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.
    • G Offline
      gonzonia @sdetweil
      last edited by

      @sdetweil Thanks!

      1 Reply Last reply Reply Quote 0
      • S sdetweil has marked this topic as solved on
      • G Offline
        gonzonia @sdetweil
        last edited by

        @sdetweil I did that and I still get the same problem. How do I make sure it uses the correct version?

        pi@MagicMirror:~/MagicMirror/modules/MMM-Pir $ sudo npm install n -g
        
        added 1 package in 5s
        pi@MagicMirror:~/MagicMirror/modules/MMM-Pir $ sudo n 20
             copying : node/20.18.0
           installed : v20.18.0 (with npm 10.8.2)
        
        
        
        npm error code EBADENGINE
        npm error engine Unsupported engine
        npm error engine Not compatible with your version of node/npm: MMM-Pir@2.0.0
        npm error notsup Not compatible with your version of node/npm: MMM-Pir@2.0.0
        npm error notsup Required: {"node":">=20.9.0 <21 || >=22"}
        npm error notsup Actual:   {"npm":"10.9.0","node":"v21.7.1"}
        
        S 1 Reply Last reply Reply Quote 0
        • S Offline
          sdetweil @gonzonia
          last edited by

          @gonzonia said in MMM-Pir:

          {“npm”:“10.9.0”,“node”:“v21.7.1”}

          you may have to close and open new shell
          or do

          hash -r
          

          to update the path

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          G 1 Reply Last reply Reply Quote 0
          • G Offline
            gonzonia @sdetweil
            last edited by

            @sdetweil Okay.
            I’ve run

            sudo npm install n -g
            sudo n 20
            hash -r
            

            then closed the terminal and reconnected.
            Went back into the MMM-Pir directory and tried running the setup again.
            Same problem

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

              @gonzonia node -v
              returns what?

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              G 1 Reply Last reply Reply Quote 0
              • G Offline
                gonzonia @sdetweil
                last edited by

                @sdetweil

                pi@MagicMirror:~ $ node -v 
                v21.7.1
                
                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @gonzonia
                  last edited by

                  @gonzonia weird… how did you upgrade to node 21?
                  apt or nvm?

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  G 1 Reply Last reply Reply Quote 1
                  • G Offline
                    gonzonia @sdetweil
                    last edited by

                    @sdetweil Honestly, I don’t remember. I think I installed nvm at one point to fix something else but I do run apt regularly to update everything

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

                      @gonzonia do nvm -v

                      n and nvm do the same thing
                      nvm is a bash script
                      n is a javascript app

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      G 1 Reply Last reply Reply Quote 0
                      • G Offline
                        gonzonia @sdetweil
                        last edited by

                        @sdetweil

                        $ nvm -v
                        0.39.7
                        
                        
                        S 1 Reply Last reply Reply Quote 0
                        • S Offline
                          sdetweil @gonzonia
                          last edited by

                          @gonzonia ok, so you have nvm too

                          sudo nvm i 20

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          G 1 Reply Last reply Reply Quote 0
                          • G Offline
                            gonzonia @sdetweil
                            last edited by

                            @sdetweil said in MMM-Pir:

                            sudo nvm i 20

                            sudo nvm i 20
                            sudo: nvm: command not found
                            
                            S 1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @gonzonia
                              last edited by

                              @gonzonia ok, been a while

                              nvm install v20.9.0

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

                              G 1 Reply Last reply Reply Quote 0
                              • G Offline
                                gonzonia @sdetweil
                                last edited by

                                @sdetweil said in MMM-Pir:

                                nvm install v20.9.0

                                That did it!

                                As always, THANK YOU!

                                P 1 Reply Last reply Reply Quote 0
                                • P Offline
                                  Peter @gonzonia
                                  last edited by

                                  @gonzonia is your Magic Mirror working now with MMM-PIR?
                                  My MM stopped turning on after updating MMM-PIR.
                                  Peter

                                  G 1 Reply Last reply Reply Quote 0
                                  • G Offline
                                    gonzonia @Peter
                                    last edited by

                                    @Peter So it’ll go off but the PIR doesn’t work to turn it back on? Mine is working. Try re-installing. Here’s the config I’m using.

                                      module: 'MMM-Pir',
                                    		  position: 'top_left',
                                    		  classes: 'SceneFamily SceneSam',
                                    		  config: {
                                    			debug: false,
                                    			delay: 2 * 60 * 1000,
                                    			mode: 9	,
                                    			displayCounter: false,
                                    			displayBar: false,
                                    			displayStyle: "Line",
                                    			displayLastPresence: false,
                                    			lastPresenceTimeFormat: "LL H:mm",
                                    			mode6_gpio: 20,
                                    			mode6_clearGpioValue: true,
                                    			xrandrForceRotation: "left",
                                    			wrandrForceRotation: "normal",
                                    			wrandrForceMode: "1920x1080",
                                    			touchMode: 3,
                                    			pir_gpio: 4,
                                    			pir_mode: 0,
                                    	  }
                                    
                                    
                                    P 1 Reply Last reply Reply Quote 0
                                    • P Offline
                                      Peter @gonzonia
                                      last edited by

                                      @gonzonia before installing did you follow all the tips mentioned by sdetweil?
                                      Peter

                                      bugsounetB G 2 Replies Last reply Reply Quote 0
                                      • bugsounetB Offline
                                        bugsounet Banned @Peter
                                        last edited by

                                        Can you check new ReadMe

                                        I haven’t had time to create a topic for the new release of MMM-Pir v2 yet, sorry

                                        G 1 Reply Last reply Reply Quote 0
                                        • G Offline
                                          gonzonia @Peter
                                          last edited by

                                          @Peter Yes. Because I was getting an error when I tried installing.

                                          1 Reply Last reply Reply Quote 0
                                          • G Offline
                                            gonzonia @bugsounet
                                            last edited by

                                            @bugsounet
                                            I installed v 2 successfully. Everything seemed to be working with my old config (posted above). I tried updating based on the new readme, but now it won’t come back on.

                                            I did have the wrong GPIO originally, but now it should be correct.

                                            {
                                            		  module: 'MMM-Pir',
                                            		  position: 'top_left',
                                            		  classes: 'SceneFamily SceneSam',
                                            		  config: {
                                            			debug: false,
                                            			Display: {
                                            					timeout: 2 * 60 * 1000,
                                            					animate: true,
                                            					style: 0,
                                            					colorFrom: "#FF0000",
                                            					colorTo: "#00FF00",
                                            					mode: 2,
                                            					counter: true,
                                            					lastPresence: false,
                                            					lastPresenceTimeFormat: "LL H:mm",
                                            					availability: false,
                                            					autoDimmer: false,
                                            					xrandrForceRotation: "left"
                                            				},
                                            				Pir: {
                                            					mode: 0,
                                            					gpio: 20
                                            				},
                                            				Cron: {
                                            					ON: [],
                                            					OFF: []
                                            				},
                                            				Touch: {
                                            					mode: 0
                                            				},
                                            				Governor: {
                                            					sleeping: 4,
                                            					working: 2
                                            				},
                                            				Sounds: {
                                            					on: 0,
                                            					off: 0
                                            				}
                                            			}
                                            		},
                                            
                                            htilburgsH 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • 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