How to decrease the speed of my robot?
Hello there,
I am not able to decrease the speed of my real robot. If I am decreasing the speed from RVIZ by setting Velecoty Scaling and Accel Scaling then it is working fine. If I am giving the robot a trajectory from python code then it very fast does anyone have an idea of how can I be able to solve this issue?
I have tried few things:
By using set_max_velocity_scaling_factor and set_max_acceleration_scaling_factor function as maintained in following post.
move_group = moveit_commander.MoveGroupCommander(group_name) move_group.set_max_velocity_scaling_factor(0.01) move_group.set_max_acceleration_scaling_factor(0.01)
I have updated
default_velocity_scaling_factor
anddefault_acceleration_scaling_factor
to 0.01 in joint_limits.yaml file.