Add limx tron1 support#2000
Merged
openminddev merged 10 commits intomainfrom Jan 30, 2026
Merged
Conversation
…Provider with refined movement parameters.
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
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.
This pull request introduces the foundational infrastructure for Tron robot autonomy, focusing on movement control and odometry integration. The changes include a new configuration file for the Tron agent, the definition of movement actions and interfaces, a plugin for processing odometry data, and a provider for receiving and interpreting odometry messages from the robot. Together, these updates enable the Tron robot to receive, process, and act on movement and positional information in a safe and structured manner.
Tron Robot Autonomy Integration
Configuration and Agent Definition
config/limx_tron_autonomy.json5to define the Tron robot agent, including system prompts, input sources (such as odometry and speech), LLM configuration, and available actions (move and speak), establishing the core behavioral and safety rules for Tron.Movement Action Interface
src/actions/move_tron_autonomy/interface.pyto define theMovementActionenum and theMoveInput/Movedataclasses, standardizing how movement commands are represented and passed within the system.Odometry Input Plugin
src/inputs/plugins/tron_odom.pyto implement theTronOdominput plugin, which subscribes to odometry data, interprets robot state (moving, sitting, standing), and formats this information for downstream use, ensuring safe movement decisions.Odometry Data Provider
src/providers/tron_odom_provider.py, a singleton provider that manages odometry data acquisition from the robot via Zenoh, processes position and orientation, and exposes the robot’s current state for use by higher-level logic.