ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Replace
goal_pose.x = input("Set your x goal: ")
goal_pose.y = input("Set your y goal: ")
with
goal_pose.x = float(input("Set your x goal: "))
goal_pose.y = float(input("Set your y goal: "))
This should resolve the issue.