-
Notifications
You must be signed in to change notification settings - Fork 153
Feat: Arm teleop with Pinocchio - single & dual arm #1246
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
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
fea963e
initial commit
ruthwikdasyam cf2021d
Feat: pinnochio_ik to manipulation/planning/kinematics
ruthwikdasyam 018c5ee
using pinnochio class
ruthwikdasyam 4a3258e
Feat: taking in QuestButtons stream
ruthwikdasyam a70f343
Fix: pre-commit fixes
ruthwikdasyam 81f0f96
Merge branch 'dev' into ruthwik_arm_teleop
ruthwikdasyam 299cb63
LFS: Xarm6 URDF created from xacro
ruthwikdasyam 69a77bd
Feat: blueprints added for teleop xarm, piper, dual tasks
ruthwikdasyam 62b7dbe
Feat: teleop_ik task upgrades
ruthwikdasyam e9f20ca
Feat: arm teleop support
ruthwikdasyam 7f0133e
Fix: pre-commit errors
ruthwikdasyam 848311f
Fix: changed xarm6 urdf path in lfs
ruthwikdasyam a4a3217
cleanup
ruthwikdasyam 4d55ec0
Merge branch 'dev' into ruthwik_arm_teleop
ruthwikdasyam 1c08c76
Fix: fix redundant code
ruthwikdasyam a84177d
Fix: _hasattr check added
ruthwikdasyam 1216332
Fix: improper lock errors + remove fallback
ruthwikdasyam e874e4d
Fix: mypy issues - initial_pos check
ruthwikdasyam 1c43535
add LfsPath helper
jeff-hykin 69e225c
Fix: removing ignore + config fix
ruthwikdasyam b4e1a27
Fix: pose_to_se3 standalone method + remove redundant dict_pose conv…
ruthwikdasyam 0df2ea0
method reorder + add warning
ruthwikdasyam 0e7872c
Feat: Added BaseControlTask + removal of hasattr for methodchecking
ruthwikdasyam 1842857
Fix: pre-commit fixes
ruthwikdasyam 84a2efb
Fix: remove .transport checks in coordinator subscriptions
ruthwikdasyam 77cb5e9
Comments restructure
ruthwikdasyam 2f9b0c1
fix: LfsPath resolution
ruthwikdasyam fee4c6a
fix: replace python-version-specific safe attributes with try/except …
ruthwikdasyam 73837f8
Merge branch 'dev' into ruthwik_arm_teleop
ruthwikdasyam d1c8d0e
Fix: merge conflicts
ruthwikdasyam 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
Git LFS file not shown
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Quest = MetaQuest buttons right? I think this needs to be generic. What would it look like if we were to add PicoButtons?
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.
buttons stream name is generic, but the message type is QuestButtons since that's the only controller we support right now. Once we add a second device (Pico or VisionPro), the right generic interface will be clearer. abstracting before, without a second device/case usually leads to the wrong API. Keeping as-is for now.