Fix Linptech ES3 sensor motion clear delay (#1481) #1482
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the 2-minute delay for Linptech ES3 motion sensors to report motion clear status.
Problem
The Linptech ES3 sensor sends two different frames when motion clears:
0x484e
(occupancy=0)motion: 0
(~2 minutes later)The immediate frame was being ignored because
obj484e
returned an empty dict for occupancy=0,causing the motion sensor to remain in "detected" state for ~2 minutes until the second frame
arrived.
Solution
Modified the
obj484e
handler to return{"motion": 0}
specifically for ES3 devices whenoccupancy=0, while preserving the original behavior (empty dict) for other devices that rely on
Home Assistant's motion timer.
Changes
device_type
parameter toobj484e
function0x484e
to the list of object type codes that receive device_typeTesting
0x484e
are unaffectedFixes #1481