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

Revision history [back]

click to hide/show revision 1
initial version
goal = TakePositionActionGoal()

I believe that should actually be:

goal = TakePositionGoal()
goal = TakePositionActionGoal()

I believe that should actually be:

goal = TakePositionGoal()

Refer also to the Writing a Simple Action Client (Python) tutorial:

# Creates a goal to send to the action server.
goal = actionlib_tutorials.msg.FibonacciGoal(order=20)

where they do the same.