Skip to content

Commit 7ebb167

Browse files
committed
fix(robotiq): tcp offset
1 parent efeb8bc commit 7ebb167

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

python/rcs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class RobotMetaConfig:
127127

128128
GRIPPER_OFFSETS: dict[common.GripperType, common.Pose] = {
129129
common.GripperType.FrankaHand: common.Pose(pose_matrix=common.FrankaHandTCPOffset()),
130-
common.GripperType("Robotiq2F85"): common.Pose(translation=np.array([0.1628, 0.0, 0.0])),
130+
common.GripperType("Robotiq2F85"): common.Pose(translation=np.array([0, 0.0, 0.1628])),
131131
}
132132

133133
SCENE_PATHS: dict[str, str] = {"empty_world": "assets/scenes/empty_world/scene.xml"}

python/rcs/envs/configs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ def config(self) -> SimEnvCreatorConfig:
231231
sim_cfg: SimConfig = SimConfig(async_control=False, realtime=True, frequency=1, max_convergence_steps=500)
232232

233233
control_mode: ControlMode = ControlMode.CARTESIAN_TQuat
234-
# task_cfg = None
235-
task_cfg = PickTaskConfig(robot_name="left")
234+
task_cfg = None
236235
scene: str = SCENE_PATHS["empty_world"]
237236
gripper_cfg = SimGripperConfig(
238237
epsilon_inner=0.005,

0 commit comments

Comments
 (0)