Read the statement by Michael Teeuw here.
Another PIR sensor
-
Ps.: My modules write a lot of debug output to the log file. Maybe there is a hint in “~/.pm2/logs/MagicMirror-out.log”
-
@wishmaster270 I’m using one of the cheaper sensors from a Chinese store. Doesn’t even have jumpers on it. Seems to me that setting the debounce ridiculously high would solve the issue of it keeping firing.
Kind of at a lost here. Reading the PIN with a Python script gives a contiinue high, with an occasional low. However, setting the gpio_state to 0 doesn’t give any reaction. It also does not seem to react to changing the debounce or delay timers.
-
Maybe the problem is not the GPIO. Did you find same useful information in the log. Is the GPIO module fireing that often?
If an delay is configured in the GPIO module any events within this time range will be ignored. It is a simple mechanism and does not depend on the sensor. I use it with three PIRs in my setup without any problems.
Edit: There should be some entry like “MMM-GPIO-Notifications: : Skipped notifcation…” in the log if the delay works and the sensor fires
-
@wishmaster270 The GPIO does indeed fire a lot. I’m sure it is a simple mechanism. I’m trying to figure out a way to “filter” the signals. Be it by a delay, a debounce or whatever… there should be a simple work-around, right? (Don’t take this personally please, my work as IT engineer let’s me think in solutions and workarounds)
A small piece from the mm-out.log:
[2020-04-26 12:58:43.092] [LOG] [12:58:43] - MMM-OpeningHours : : Error: timeout [2020-04-26 12:59:00.692] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:00.694] [LOG] MMM-GPIO-Notifications: Sending notifications of pin 22... [2020-04-26 12:59:00.695] [LOG] CurProfile: pageOneEveryone [2020-04-26 12:59:00.696] [LOG] CurProfileString: pageOneEveryone [2020-04-26 12:59:00.702] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:00.872] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:01.039] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:01.111] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:02.201] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:02.252] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:09.191] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:09.192] [LOG] MMM-GPIO-Notifications: Skipping pin 22 because the delay is not exceeded ! [2020-04-26 12:59:17.471] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:17.472] [LOG] MMM-GPIO-Notifications: Skipping pin 22 because the delay is not exceeded ! [2020-04-26 12:59:27.987] [LOG] MMM-GPIO-Notifications: Watched pin: 22 triggered! [2020-04-26 12:59:27.989] [LOG] MMM-GPIO-Notifications: Sending notifications of pin 22... [2020-04-26 12:59:27.991] [LOG] CurProfile: pageOneEveryone [2020-04-26 12:59:27.992] [LOG] CurProfileString: pageOneEveryone [2020-04-26 12:59:28.005] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:28.102] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:28.112] [LOG] MMM-ProfileControl: Received notification PROFILE_DECREMENT_HORIZONTAL [2020-04-26 12:59:28.537] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE [2020-04-26 12:59:29.213] [LOG] MMM-ProfileControl: Received notification CHANGED_PROFILE
-
Sorry if it look liked i am taking the things personal that wasn’t my goal.
I want my modules to work and not to cause problems…Could it be that you run two Browser (maybe build in and a second head) because the notifications get fired twice?
Edit: The delay seems to work. Because there are 20 seconds between the first time the gpio fires and the second time.
-
@wishmaster270 No, it didn’t look like you took it personal, I just didn’t want you to on forehand.
I Have indeed a second browser open on my laptop. Never thought of that being the issue… :-DLet’s close that one, and fiddle around with the timers a bit. My laptop shut down during lunchtime, and then I indeed saw the second screen show up.