-
Notifications
You must be signed in to change notification settings - Fork 103
Add Kinova JACO + MICO definitions to robot #32
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
AndrejOrsula
merged 6 commits into
AndrejOrsula:master
from
personalrobotics:egordon/add_jaco
Aug 23, 2023
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fb0b98a
Added Kinova JACO + MICO robot definition
egordon f6e4f36
Match moveit groups to https://github.com/Kinovarobotics/kinova-ros/t…
egordon 24465de
Merge pull request #8 from AndrejOrsula/master
egordon ccf68e3
Merge branch 'master' into egordon/add_jaco
egordon 632d8b4
Include gripper type and assistive/service designation in kinova prefix
egordon 27dc818
Added pre-commit hooks
egordon 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| from typing import List | ||
|
|
||
| MOVE_GROUP_ARM: str = "arm" | ||
| MOVE_GROUP_GRIPPER: str = "gripper" | ||
|
|
||
| JACO_PREFIX: str = "j2" | ||
| MICO_PREFIX: str = "m1" | ||
|
|
||
| def get_prefix(version_prefix: str = JACO_PREFIX, arm_dof: int = 6, hand_dof: int = 2) -> str: | ||
| return version_prefix + "n" + str(arm_dof) + "s" + str(hand_dof) + "00_" | ||
|
|
||
| def joint_names(prefix: str = get_prefix()) -> List[str]: | ||
| res = [] | ||
| arm_dof = int(prefix[3]) | ||
| for i in range(arm_dof): | ||
| res.append(prefix + "joint_" + str(i+1)) | ||
| return res | ||
|
|
||
| def base_link_name(prefix: str = get_prefix()) -> str: | ||
| return prefix + "link_base" | ||
|
|
||
|
|
||
| def end_effector_name(prefix: str = get_prefix()) -> str: | ||
| return prefix + "end_effector" | ||
|
|
||
|
|
||
| def gripper_joint_names(prefix: str = get_prefix()) -> List[str]: | ||
| res = [] | ||
| hand_dof = int(prefix[5]) | ||
| for i in range(hand_dof): | ||
| res.append(prefix + "joint_finger_" + str(i+1)) | ||
| return res | ||
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.