fix: publish Twist instead of TwistStamped, improve keyboard HUD#10
Merged
spomichter merged 1 commit intomainfrom Mar 6, 2026
Merged
fix: publish Twist instead of TwistStamped, improve keyboard HUD#10spomichter merged 1 commit intomainfrom
spomichter merged 1 commit intomainfrom
Conversation
…ard overlay - Change LCM message type from TwistStamped to Twist (matches DimOS convention) - Channel: /cmd_vel#geometry_msgs.Twist (was geometry_msgs.TwistStamped) - Twist encoding: 56 bytes (hash + 6 doubles), no Header overhead - Fingerprint hash: 0x2e7c07d7cdf7e027 (verified against Python LCM reference) Keyboard overlay improvements: - Dark semi-transparent background panel (HUD style) - Visual key grid showing Q/W/E/A/S/D with active state highlighting - Green highlight on pressed keys, dim when idle - STOP bar (space) with red flash on e-stop - Shift speed indicator - Always visible (dims when no keys active) - Fix egui deprecation: Rounding -> CornerRadius, .rounding() -> .corner_radius() All 27 tests pass.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
fixes type mismatch that prevented keyboard controls from moving the robot.
changes
LCM type fix:
geometry_msgs/Twistinstead ofTwistStampedon/cmd_vel0x2e7c07d7cdf7e027(verified against python lcm reference)keyboard overlay:
all 27 tests pass.