# RCS Robotiq2F85 Extension This extension provides support for Robotiq 2F-85 Gripper in RCS. ## Installation ```shell pip install -ve extensions/rcs_robotiq2f85 ``` Get the serial number of the gripper with this command: ```shell udevadm info -a -n /dev/ttyUSB0 | grep serial ``` Provide the necessary permission: ```shell chmod 777 /dev/ttyUSB0 ``` ## Usage ```python from rcs_robotiq2f85 import RobotiQGripper gripper = RobotiQGripper('') gripper.reset() gripper.shut() print(gripper.get_normalized_width()) ```