You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are experiencing an intermittent issue with the gripper on the wx200 robotic arm. During the release action, the gripper sometimes extends to its maximum position and then unexpectedly retracts halfway before stopping. This behaviour occurs without any corresponding code logic, and there is no discernible pattern to when it happens. The release and grasp functions defined in the package are independent of the position of the gripper and is only dependent on the effort command which makes it difficult to manipulate left and right gripper positions.
Robot Model
wx200
Operating System
Ubuntu 22.04
ROS Distro
ROS 2 Humble
Steps To Reproduce
Issue the release command to the gripper.
Observe the gripper's movement (intermittent behavior, may not always occur).
Relevant log output
No response
Additional Info
No response
The text was updated successfully, but these errors were encountered:
I ran the gripper_control.py demo file in " interbotix_ros_xsarms/examples/python_demos/gripper_control.py " for testing the release and grasp. The issue occurs randomly. PFA the py code used for testing,
from interbotix_common_modules.common_robot.robot import robot_shutdown, robot_startup
from interbotix_xs_modules.xs_robot.arm import InterbotixManipulatorXS
def main():
bot = InterbotixManipulatorXS(
robot_model='wx200',
group_name='arm',
gripper_name='gripper',
)
robot_startup()
bot.gripper.grasp(2.0)
bot.gripper.release(2.0)
bot.gripper.set_pressure(1.0)
bot.gripper.grasp(2.0)
bot.gripper.release(2.0)
robot_shutdown()
if __name__ == '__main__':
main()
What happened?
We are experiencing an intermittent issue with the gripper on the wx200 robotic arm. During the release action, the gripper sometimes extends to its maximum position and then unexpectedly retracts halfway before stopping. This behaviour occurs without any corresponding code logic, and there is no discernible pattern to when it happens. The release and grasp functions defined in the package are independent of the position of the gripper and is only dependent on the effort command which makes it difficult to manipulate left and right gripper positions.
Robot Model
wx200
Operating System
Ubuntu 22.04
ROS Distro
ROS 2 Humble
Steps To Reproduce
Issue the release command to the gripper.
Observe the gripper's movement (intermittent behavior, may not always occur).
Relevant log output
No response
Additional Info
No response
The text was updated successfully, but these errors were encountered: