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
Description: Example of usage of UR10 interface without moveit
Author: Igor Lirussi (https://igor-lirussi.github.io)
"""
from ur10_interface import UR10 # this example uses ur10_interface without moveit and doesn't have "set_cartesian_position". # if possible use the interface for Moveit installed in the system
import rospy
rospy.init_node("ur10moving")
rospy.sleep(2.0)
robot = UR10()
rospy.sleep(2.0)
cart=robot.get_cartesian_position()
print(cart)
pos=robot.get_joint_position()
print('real position\n',pos)
print('press enter button to move to position, remember to keep the robot emergency stop red button next to you')