-
Notifications
You must be signed in to change notification settings - Fork 87
feat: Q10 map layers, calibration, path & no-go zones (+ Q7 layer reuse) #848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tubededentifrice
wants to merge
27
commits into
Python-roborock:main
Choose a base branch
from
tubededentifrice:q10-map-layers
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
bd4b3f9
feat: add Q10 (B01/ss07) map support with rooms and rendered image
tubededentifrice 1c4353e
feat: add Q10 live position parsing from 02 01 packets
tubededentifrice 57f2639
fix: frame Q10 02 01 trace as full cleaning-session path
tubededentifrice d45d488
fix: allow Q10 maps without room records
tubededentifrice e6feafc
refactor: make Q10 map support fully push-driven
tubededentifrice 84fc5e8
feat: decompose Q10 map into separable layers (Tier 1)
tubededentifrice 4f9806c
feat: Q10 map calibration + path/position on map (Tiers 2-3)
tubededentifrice 396958f
feat: decode Q10 vector overlays - no-go/no-mop zones + charger (Tier 4)
tubededentifrice dac32f2
feat: reuse B01 grid layers + calibration for Q7 (shared abstraction)
tubededentifrice fbb5c27
feat: decode Q10 carpets from the map packet tail
tubededentifrice f425757
fix: don't wipe Q10 overlays on partial status updates
tubededentifrice fc11176
fix: correct Q10 map orientation and identify/apply erase zones
tubededentifrice 4b0ca89
fix: preserve Q10 map overlays after reparse
tubededentifrice 6efe266
fix: adapt Q10 map-layers CLI + overlay routing to push-driven map API
tubededentifrice 74c88e9
Merge origin/main into q10-map-layers
tubededentifrice 48d70c9
feat: derive Q10 calibration origin from the 0101 grid-frame header
tubededentifrice 1a2826e
fix: decode Q10 virtual walls (DP 57) with their own frame
tubededentifrice 2a6059e
test: add live RDC ss07 capture for the DP-57 virtual-wall decoder
tubededentifrice fa799d4
test: add live RDC ss07 capture for the DP-55 no-go zone decoder
tubededentifrice 1d6956f
fix: decode Q10 trace heading from the 0201 SLAM field (bytes 10-11)
tubededentifrice cea9c74
fix: decode Q10 virtual walls (DP 57) in the same axis order as no-go…
tubededentifrice c6285fa
test: add ground-truthed R1 mixed-orientation virtual-wall capture
tubededentifrice 3a03eb3
fix: widen Q10 calibration resolution range to bracket the real 20 pa…
tubededentifrice b980853
docs: pin Q10 path-unit scale (2.5mm) and ground-truth the heading co…
tubededentifrice 3e9e34d
Merge remote-tracking branch 'origin/main' into q10-map-layers
tubededentifrice 496474c
refactor: reconcile Q10 map dispatch onto #847's typed-message model
tubededentifrice 52e6f1e
feat: decode the Q10 carpet mask from the map-packet tail
tubededentifrice File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This indicates to me the DPS fields on Status should probably live on the map trait? It seems like the
update_from_dpsAPI could potentially handle these types of calls.