ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

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.