Browse Source

Add pitch and roll to cg list

pull/124/head
Mohamed Fazil 6 months ago
parent
commit
603bd972fc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      stretch_core/nodes/joint_trajectory_server.py

+ 1
- 1
stretch_core/nodes/joint_trajectory_server.py View File

@ -44,7 +44,7 @@ class JointTrajectoryAction:
self.lift_cg = LiftCommandGroup(node=self.node)
self.mobile_base_cg = MobileBaseCommandGroup(node=self.node)
self.command_groups = [self.arm_cg, self.lift_cg, self.mobile_base_cg, self.head_pan_cg,
self.head_tilt_cg, self.wrist_yaw_cg, self.gripper_cg]
self.head_tilt_cg, self.wrist_yaw_cg, self.gripper_cg, self.wrist_pitch_cg, self.wrist_roll_cg]
self.command_groups = [cg for cg in self.command_groups if cg is not None]

Loading…
Cancel
Save