Set cartesian limits with moveit!
Hello! I'm working with moveit in ros melodic and a Hyundai robot. When I generated the robot files I found a file labeled cartesian_limits.yaml as show below:
cartesian_limits:
max_trans_vel: 18
max_trans_acc: 20
max_trans_dec: -30
max_rot_vel: 15.7
Is it possible to set cartesian limits with moveit?
I want the robot to not move outside a defined box. Something like:
x_min_limit = -0.4
x_max_limit = 1.5
My Hyundai robot has this function and I want to implement it in the simulation to avoid wierd paths.
Is it possible to set this kind of function in cartesian_limits.yaml file?