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

PIR Sensor turning display on/off over and over

Scheduled Pinned Locked Moved Unsolved Troubleshooting
29 Posts 13 Posters 19.8k Views 13 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.
  • P Offline
    phrazelle
    last edited by Mar 1, 2017, 6:17 PM

    FWIW, a ferrite bead is a working solution, but I was able to circumvent this issue by keeping the PIR Sensor a good distance from the Pi. Mine is about 3 feet away from the Pi and doesn’t act erratically as it did when it was right next to it during testing.

    J H 2 Replies Last reply Mar 1, 2017, 6:37 PM Reply Quote 3
    • J Offline
      johnnyboy @phrazelle
      last edited by johnnyboy Apr 28, 2017, 10:26 PM Mar 1, 2017, 6:37 PM

      This post is deleted!
      1 Reply Last reply Reply Quote 0
      • J Offline
        Jay
        last edited by Mar 2, 2017, 1:45 PM

        Similar problem here, PIR works like a charm (tested with code of post #4) but after starting the MagicMirror the display is turned off and on over and over even though nothing is changed in front of the sensor. (I use MMM-PIR).

        1 Reply Last reply Reply Quote 0
        • H Offline
          hermlam @phrazelle
          last edited by Mar 2, 2017, 1:49 PM

          @phrazelle Since I am having a ‘cordless’ mirror (power is coming from wall behind mirror) I don’t want to see cables to my mirror. I’ve build the PIR into the frame of my mirror.

          1 Reply Last reply Reply Quote 0
          • H Offline
            hermlam
            last edited by hermlam Mar 2, 2017, 4:43 PM Mar 2, 2017, 1:52 PM

            Even with the bead installed I have various results. Sometimes it’s running ok for an hour or so, but most of the time I’m getting a lot of false positives. And very strange, only with the output timer (2nd yellow knob) on minimal it’s working ok. But then the screen lits up far too short. But output time has nothing to do with it?

            1 Reply Last reply Reply Quote 0
            • J Offline
              Jay
              last edited by Mar 5, 2017, 9:08 PM

              Basically I had the same error with the display turning on and off over time. All in anger, I deinstalled the MagicMirror from the Pi and began at zero again.
              After updating and upgrading the Pi and installing the MagicMirror, a new try with the PIR-Module was iniciated. So I installed the PIR-Module and somehow noticed that my GPIO cables were wrong connected (ground connected to GPIO21 and vice-versa).
              So after this embarassing moment of disbelieve I changed the connections and checked if the sensor is working with a simple python script:

              from gpiozero import MotionSensor
              import time
              
              pir = MotionSensor(21)
              
              while True: #repeat this forever
                  if pir.motion_detected: # if motion is detected print the message
                      print("Motion detected!")
                  if not pir.motion_detected: # if no motion is detected print the message
                      print("No motion detected!")
                  time.sleep(1)
              

              Note that my pir is using GPIO21.
              With this script I tested the sensor and it worked like a charm, even though the sensor is placed 5 centimeters away from the raspberry pi 3 (with no case or even a bead installed).
              In the end, I only had to do a cd MagicMirror again, and install the MagicMirror:
              npm install. With this setup the MMM-PIR-module works magnificient.

              D 1 Reply Last reply Mar 10, 2017, 8:05 PM Reply Quote 1
              • D Offline
                deepshades @Jay
                last edited by Mar 10, 2017, 8:05 PM

                @Jay

                Hi Jay, can you reply a link to your PIR module you finaly use?

                J 1 Reply Last reply Mar 10, 2017, 8:14 PM Reply Quote 0
                • J Offline
                  Jay @deepshades
                  last edited by Mar 10, 2017, 8:14 PM

                  @deepshades
                  Basically its just the standard PIR-Sensor shipped with female to female gpio connections (PIR-Sensor Amazon).

                  D 1 Reply Last reply Mar 10, 2017, 8:34 PM Reply Quote 0
                  • D Offline
                    deepshades @Jay
                    last edited by Mar 10, 2017, 8:34 PM

                    @Jay

                    Ok, so you just use a script to let the sensor deactivate the hdmi output?
                    Could you tell me the steps to let all work together?

                    J 1 Reply Last reply Mar 10, 2017, 9:03 PM Reply Quote 0
                    • J Offline
                      Jay @deepshades
                      last edited by Mar 10, 2017, 9:03 PM

                      @deepshades
                      Well ok…
                      step 1: get nodejs and npm --> sudo apt-get install nodejs then sudo apt-get install npm
                      step 2: update + upgrade the pi --> sudo apt-get update then sudo apt-get dist-upgrade
                      step 3: install MagicMirror --> as seen here MagicMirror Github Page
                      step 4: connect the PIR-Sensor to your Pi --> ground to ground (e.g. Pin 6), VCC to 5V (e.g. Pin 2), Out to GPIO XX (e.g. Pin 16)
                      step 5: check if PIR-Sensor works --> as seen at my script above (watch your connected GPIO pin, maybe change in script is required) --> some fiddling with sensitivity knobs here is needed
                      step 6: install MMM-PIR --> MMM-PIR Github Page
                      step 7: reboot and reinstall MagicMirror in MagicMirror directory --> cd MagicMirror and npm install

                      this has worked for me…

                      J 1 Reply Last reply Mar 10, 2017, 9:41 PM Reply Quote 1
                      • 1
                      • 2
                      • 3
                      • 2 / 3
                      2 / 3
                      • First post
                        18/29
                        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