Wasp in a Box: "Door Closed" grace period to prevent exiting false positives #576
Replies: 2 comments
-
|
This is what the When the door opens or closes, WIAB will clear the wasp and wait until How long do you have your |
Beta Was this translation helpful? Give feedback.
-
|
ok now i get it, the logic is perfect! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm using the Wasp in a Box (WiB) feature, and I've identified a common scenario that leads to a false positive, especially with PIR sensors that have a built-in cooldown period.
The Problem / Scenario
The current logic triggers incorrectly when I exit an area quickly. Here is the sequence:
Box(door sensor) state becomeson(open). TheWasp(motion sensor) state becomeson.Box(door) state becomesoff(closed).Wasp) are located very close to the door. When I exit, they detect this movement and remain active for a few seconds after the door (Box) is already closed.Waspsensor finally changes tooff(motion stops), the integration checks theBoxstate. It sees the door isoff(closed).delaytimer because it assumes someone stopped moving inside the closed room, when in reality, the person has already left.Proposed Solution
My suggestion is to add a new optional setting, perhaps a "grace period" or
arming_delay_after_door_close(e.g., 15 seconds).This new delay would change the logic as follows:
The WiB integration should only "arm" itself (i.e., start monitoring for a
Waspthat stops moving) after theBox(door) has been in theoff(closed) state for this new grace period.How this would fix the problem:
on, Motion=on).off, Motion=on).off, and it waits for the newarming_delay_after_door_close(e.g., 10 seconds) before it starts monitoring.off).off, the WiB logic is not triggered.This would effectively ignore any "stale" motion from the act of exiting and only trigger if motion is detected (and then stops) after the room has truly been closed for a few seconds.
This would make the feature much more reliable for those of us with standard PIR/presence sensors located near doorways.
Thank you for considering this improvement!
Beta Was this translation helpful? Give feedback.
All reactions