代码拉取完成,页面将自动刷新
import time
try:
from gripper.robotiq_2f_gripper_ctrl import RobotiqCGripper
except ImportError:
print('Real robotiq gripper control is not available. '
'Ensure pymodbus is installed:\n'
' pip3 install --user --upgrade pymodbus\n')
RobotiqCGripper = None
def main():
# rospy.init_node("robotiq_2f_gripper_ctrl_test")
gripper = RobotiqCGripper('192.168.1.11')
gripper.wait_for_connection()
# if gripper.is_reset():
gripper.reset()
gripper.activate()
print('Start Sleeping!')
time.sleep(2)
print('Close!')
gripper.close(block=True)
print('Start Sleeping!')
# for i in range(6):
# time.sleep(10)
# gripper.get_cur_status()
time.sleep(60)
print('Open!')
gripper.open(block=True)
# while not rospy.is_shutdown():
# print gripper.open(block=False)
# rospy.sleep(0.11)
# gripper.stop()
# print gripper.close(block=False)
# rospy.sleep(0.1)
# gripper.stop()
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。