ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
auto goal_handle = my_action_client_->async_send_goal(request, send_goal_options);
auto result = my_action_client_->async_get_result(goal_handle.get());
if (result.get().code == rclcpp_action::ResultCode::SUCCEEDED)
{
return true;
}