Skip to content

Commit

Permalink
update configuration for geodude
Browse files Browse the repository at this point in the history
  • Loading branch information
markusgrotz committed May 24, 2024
1 parent 42ef6f0 commit 8632f83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pymoveit2/robots/geodude_left.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def joint_names(prefix: str = "left_") -> List[str]:


def base_link_name(prefix: str = "left_") -> str:
return prefix + "wam1"
return prefix + "wam_base"


def end_effector_name(prefix: str = "left_") -> str:
Expand Down
9 changes: 4 additions & 5 deletions pymoveit2/robots/geodude_right.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
MOVE_GROUP_ARM: str = "right_arm"
MOVE_GROUP_GRIPPER: str = "right_hand"

OPEN_GRIPPER_JOINT_POSITIONS: List[float] = [0.0, 0.0, 0.0, 0.0]
CLOSED_GRIPPER_JOINT_POSITIONS: List[float] = [1.04, 1.04, 1.04, 0.0]
OPEN_GRIPPER_JOINT_POSITIONS: List[float] = [0.02, 0.02, 0.02, 0.0]
CLOSED_GRIPPER_JOINT_POSITIONS: List[float] = [1.5, 1.5, 1.5, 0.0]


def joint_names(prefix: str = "right_") -> List[str]:
Expand All @@ -20,7 +20,7 @@ def joint_names(prefix: str = "right_") -> List[str]:


def base_link_name(prefix: str = "right_") -> str:
return prefix + "wam1"
return prefix + "wam_base"


def end_effector_name(prefix: str = "right_") -> str:
Expand All @@ -32,5 +32,4 @@ def gripper_joint_names(prefix: str = "right_") -> List[str]:
prefix + "j01",
prefix + "j11",
prefix + "j21",
prefix + "j00",
]
prefix + "j00"]

0 comments on commit 8632f83

Please sign in to comment.