Open
Conversation
Updated system requirements and added dependencies section for Ubuntu 22.04.
… quest_reader) Made-with: Cursor
… vr3pt visualizer Made-with: Cursor
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.
Add Meta Quest 3 teleoperation support
Summary
This PR adds Meta Quest 3 as an alternative input device for the GEAR-SONIC teleoperation system. Users can run the manager with Quest controllers (USB or WiFi) in addition to the existing Pico-based flow. The default remains Pico; Quest is opt-in via
--reader quest.Changes
gear_sonic/utils/teleop/readers/quest_reader.py): NewQuestReaderthat implements the same sample interface asPicoReader. Usesmeta_quest_teleopto read controller poses, maps them to the existing VR 3-point pose format (L-Wrist, R-Wrist, Head), and corrects Quest coordinate axes to the robot frame (X=forward, Y=left, Z=up). Supports USB and WiFi (--quest-ip-address), calibration via right trigger, and optional ADB/synthetic modes for testing.gear_sonic/scripts/pico_manager_thread_server.py): New CLI options--reader {pico|quest}(default:pico) and--quest-ip-address. When--reader quest, the manager usesQuestReaderand reads controller state (A/B/X/Y, triggers, grips, joysticks) from the Quest sample for mode switching and locomotion. Calibration uses G1 FK default pose as reference, same as the validation script.validate_quest_rawfor 3D visualization of Quest tracking (raw or G1-calibrated), andtest_quest_meta_quest.pyfor a quick connection check. ADB test viapython -m gear_sonic.utils.teleop.readers.quest_reader --test-adb.meta_quest_teleopadded under the existinggear_sonic[teleop]extra inpyproject.toml.TELEOPERATION_QUEST_SETUP.mdand reader usage ingear_sonic/utils/teleop/readers/README.md.Backward compatibility
pico. All Pico code paths (XRoboToolkit, body tracking, SMPL 3-point pose) are unchanged. Existing users continue to use the same commands without modification.--reader questis passed.How to use (Quest)
Connect the Quest, start the manager, then press right trigger to calibrate (adopt G1 default pose first). See
TELEOPERATION_QUEST_SETUP.mdfor full setup (ADB, developer mode, install).Tested
This allows using the teleoperation system with Meta Quest 3 devices in addition to Pico, without affecting existing Pico users.