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.

    UPDATE: Replaced my PIR-Sensor with a Doppler Microwave Sensor.

    Scheduled Pinned Locked Moved Tutorials
    103 Posts 17 Posters 91.1k Views 25 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.
    • L Offline
      Lipax
      last edited by

      hello,
      i tried this with the microwave sensor, but im out of ideas. i get wrong positives every minute. (i check every 5 sec).
      i added also the ferrite, tried another raspberry, different of these sensors (bought a 5 pack) and placed it in a different room. anyone got any ideas what else i could try?
      or maybe similar microwave sensors i could try?

      any help would be great, tyvm

      uros76U 1 Reply Last reply Reply Quote 0
      • uros76U Offline
        uros76 @Lipax
        last edited by

        @Lipax said in UPDATE: Replaced my PIR-Sensor with a Doppler Microwave Sensor.:

        hello,
        i tried this with the microwave sensor, but im out of ideas. i get wrong positives every minute. (i check every 5 sec).
        i added also the ferrite, tried another raspberry, different of these sensors (bought a 5 pack) and placed it in a different room. anyone got any ideas what else i could try?
        or maybe similar microwave sensors i could try?

        any help would be great, tyvm

        Did you try and limit the range as described in beginning of this thread? For me option 2 helped to limit oversensitivity.

        My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

        L 1 Reply Last reply Reply Quote 0
        • L Offline
          Lipax @uros76
          last edited by

          @uros76
          the range is not the problem. i get positives when nothing is moving near it

          uros76U kayakbabeK 2 Replies Last reply Reply Quote 0
          • uros76U Offline
            uros76 @Lipax
            last edited by

            @Lipax this sensor is very sensitive and catches any movement 360 around from several meters away. I had same problem… If you don’t dial down the sensitivity-range you will keep getting false positives.

            My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

            1 Reply Last reply Reply Quote 1
            • kayakbabeK Offline
              kayakbabe @Lipax
              last edited by

              @Lipax try dialing down the sensitivity, it’s probably picking up dust or something small you can’t see.

              1 Reply Last reply Reply Quote 0
              • L Offline
                Lipax
                last edited by

                thanks for the help, but i doubt its some kind of movement since its exactly every minute. i tried a different room and its the same.

                bewegung1.jpg

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

                  @Lipax please don’t submit duplicate posts…

                  all users with reputation below 2 have their posts reviewed… this eliminates all the porn, advertising and trash posts from the forum.

                  it just takes time for (me) to get to review the posts…

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  L 1 Reply Last reply Reply Quote 1
                  • uros76U Offline
                    uros76
                    last edited by

                    Can you share your python code? Perhaps there’s something there

                    My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

                    1 Reply Last reply Reply Quote 0
                    • L Offline
                      Lipax @sdetweil
                      last edited by

                      @sdetweil sry about that

                      @uros76 i hope thats not the problem

                      import RPi.GPIO as GPIO
                      import time
                      import datetime
                      
                      switch=11
                      
                      
                      GPIO.setmode(GPIO.BOARD)
                      GPIO.setup(switch, GPIO.IN)
                      
                      
                      
                      
                      try:
                          while True:
                              if GPIO.input(switch) == 1:
                                  now = datetime.datetime.now()
                                  print(now.strftime("%Y-%m-%d %H:%M:%S"), "something")
                                  
                              time.sleep(5)
                              
                              
                      except KeyboardInterrupt:
                          print("Bye Bye")
                      finally:
                          GPIO.cleanup()
                      
                      

                      thanks for the help

                      uros76U 1 Reply Last reply Reply Quote 0
                      • uros76U Offline
                        uros76 @Lipax
                        last edited by uros76

                        @Lipax try different gpio pin, like a pin 18 which is a GPIO 5. It’s default set to input function. Don’t forget to adjust the python code, change switch to 18.

                        You might check the GPIO 0 (your pin 11) if it is set to input. Use command: raspi-gpio get 0 or raspi-gpio get to check all GPIO’s.

                        Also, use a multimeter to measure the voltage coming out from sensor. It should be around 3.3V for few seconds when sensing detected. This way you can monitor if actual detection / voltage is coming from sensor.

                        My magicmirror projects: https://forum.magicmirror.builders/post/79889, https://forum.magicmirror.builders/post/93241 and https://forum.magicmirror.builders/post/94586

                        L 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 4
                        • 5
                        • 10
                        • 11
                        • 3 / 11
                        • 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