• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

Bugsounet and MMM-Pir

Scheduled Pinned Locked Moved General Discussion
68 Posts 10 Posters 5.0k Views 11 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 Away
    sdetweil @lif
    last edited by Mar 24, 2025, 3:04 PM

    @lif and you are using the correct pin definition

        Pir: {
          mode: 0,
          gpio: 21
        },
    

    Sam

    How to add modules

    learning how to use browser developers window for css changes

    L 2 Replies Last reply Mar 24, 2025, 3:09 PM Reply Quote 0
    • L Offline
      lif @sdetweil
      last edited by Mar 24, 2025, 3:09 PM

      @sdetweil said in Bugsounet and MMM-Pir:

      @lif and you are using the correct pin definition

          Pir: {
            mode: 0,
            gpio: 21
          },
      

      Yes, the working script is:
      from gpiozero import MotionSensor
      from datetime import datetime
      import os, time
      import RPi.GPIO as GPIO

      pir = MotionSensor(21)
      while True:

          pir.wait_for_motion()
          now = datetime.now()
          current_time = now.strftime("%H:%M:%S")
          print("Movement detected at", current_time)
          pir.wait_for_no_motion()
      
      S 1 Reply Last reply Mar 24, 2025, 3:11 PM Reply Quote 0
      • S Away
        sdetweil @lif
        last edited by Mar 24, 2025, 3:11 PM

        @lif I meant MMM-PIR config setup

        there are different numbering schemes for GPIO pins and different ways to access

        the doc (readme) describes the different choices.

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • L Offline
          lif @sdetweil
          last edited by Mar 24, 2025, 3:17 PM

          @sdetweil said in Bugsounet and MMM-Pir:

          @lif and you are using the correct pin definition

              Pir: {
                mode: 0,
                gpio: 21
              },
          

          Yes, I think so, the pir is connected to pin 40 on the Raspberry pi 3b which I’m sure is GPIO 21

          S 1 Reply Last reply Mar 24, 2025, 3:32 PM Reply Quote 0
          • S Away
            sdetweil @lif
            last edited by Mar 24, 2025, 3:32 PM

            @lif and if you change to mode 1?? which matches your python lib test?

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            L 1 Reply Last reply Mar 24, 2025, 3:43 PM Reply Quote 0
            • L Offline
              lif @sdetweil
              last edited by Mar 24, 2025, 3:43 PM

              @sdetweil said in Bugsounet and MMM-Pir:

              @lif and if you change to mode 1?? which matches your python lib test?

              No difference.

              I have added a header: “PIR”, line before the config and that is not showing either.

              S 1 Reply Last reply Mar 24, 2025, 3:46 PM Reply Quote 0
              • S Away
                sdetweil @lif
                last edited by Mar 24, 2025, 3:46 PM

                @lif are there any errors listed in the MM startup messages??

                if using pm2 to auto start

                pm2 logs --lines =xxx

                xxx is number of most recent lines to display, default 15,
                usually need 100 or more for full message list

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                L 1 Reply Last reply Mar 24, 2025, 4:02 PM Reply Quote 0
                • L Offline
                  lif @sdetweil
                  last edited by Mar 24, 2025, 4:02 PM

                  @sdetweil said in Bugsounet and MMM-Pir:

                  @lif are there any errors listed in the MM startup messages??

                  if using pm2 to auto start

                  pm2 logs --lines =xxx

                  xxx is number of most recent lines to display, default 15,
                  usually need 100 or more for full message list

                  Thanks for all your help
                  I think this line might be relevant
                  0|mm | [2025-03-24 16:54:30.994] [WARN] No /home/pi/MagicMirror/js/…/modules/MMM-Pir/MMM-Pir.js found for module: MMM-Pir.

                  It’s correct, there isn’t a MMM-Pir.js file in the MMM-Pir directory.

                  S R F 3 Replies Last reply Mar 24, 2025, 4:06 PM Reply Quote 0
                  • S Away
                    sdetweil @lif
                    last edited by Mar 24, 2025, 4:06 PM

                    @lif module rules

                    module name (exact case) = folder name in modules folder
                    MUST contain at minimum a file name that matches(exact case) of the modulename.js

                    AND inside that file it MUST contain a module.register(name…)
                    where name MUST match (exact case) the module name

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    1 Reply Last reply Reply Quote 0
                    • R Offline
                      rkorell @lif
                      last edited by rkorell Mar 24, 2025, 4:12 PM Mar 24, 2025, 4:11 PM

                      @lif said in Bugsounet and MMM-Pir:

                      It’s correct, there isn’t a MMM-Pir.js file in the MMM-Pir directory

                      If you had cloned this repository from @coernel - the MMM-pir.js is missing.
                      This must be an error.

                      Nevertheless: I’ve played around with the original version from bugsounet and figured out that editing his “origin” MM-Pir.js was really hard because he has deleted all linefeeds.
                      Seeking around I found an editable clone of the *.js files (including node_helper) in the src folder of the repository.
                      This is true for the new clone from coernel …
                      give it a try :-)

                      Regards,
                      Ralf

                      S R 2 Replies Last reply Mar 24, 2025, 4:14 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 7
                      • 3 / 7
                      3 / 7
                      • First post
                        22/68
                        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