ROS common_msgs-----actionlib_msgs简介及使用

    actionlib_msgs消息用于与action client和action server以主题消息形式进行通信,主要包括如下三种消息:


1 actionlib_msgs/GoalID Message

1)File:

actionlib_msgs/GoalID.msg

2)Raw message definition:

# The stamp should store the time at which this goal was requested.
# It is used by an action server when it tries to preempt all
# goals that were requested before a certain time
time stamp

# The id provides a way to associate feedback and
# result message with specific goal requests. The id
# specified must be unique.
string id


2 actionlib_msgs/GoalStatus

1)File:

actionlib_msgs/GoalStatus.msg

2)Raw message definition

GoalID goal_id
uint8 status
uint8 PENDING         = 0   # The goal has yet to be processed by the action server
uint8 ACTIVE          = 1   # The goal is currently being processed by the action server
uint8 PREEMPTED       = 2   # The goal received a cancel request after it started executing
                            #   and has since completed its execution (Terminal State)
uint8 SUCCEEDED       = 3   # The goal was achieved successfully by the action server (Terminal State)
uint8 ABORTED         = 4   # The goal was aborted during execution by the action server due
                            #    to some failure (Terminal State)
uint8 REJECTED        = 5   # The goal was rejected by the action server without being processed,
                            #    because the goal was unattainable or invalid (Terminal State)
uint8 PREEMPTING      = 6   # The goal received a cancel request after it started executing
                            #    and has not yet completed execution
uint8 RECALLING       = 7   # The goal received a cancel request before it started executing,
                            #    but the action server has not yet confirmed that the goal is canceled
uint8 RECALLED        = 8   # The goal received a cancel request before it started executing
                            #    and was successfully cancelled (Terminal State)
uint8 LOST            = 9   # An action client can determine that a goal is LOST. This should not be
                            #    sent over the wire by an action server

#Allow for the user to associate a string with GoalStatus for debugging
string text


3 actionlib_msgs/GoalStatusArray

1)File:

actionlib_msgs/GoalStatusArray.msg


2)Raw message definition

# Stores the statuses for goals that are currently being tracked
# by an action server
Header header
GoalStatus[] status_list


4 应用actionlib_msgs/GoalID

例如,我们想让使用navigation stack导航的机器人停止导航,可以使用如下方式取消所有goal(及发送fullly empty goal),

命令方式:

rostopic pub /move_base/cancel actionlib_msgs/GoalID -- {}

代码方式:

ros::Publisher  cancel_pub =  nh_.advertise<actionlib_msgs::GoalID>("move_base/cancel",1);

actionlib_msgs::GoalID empty_goal;
cancel_pub.publish(empty_goal);



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值