rospy中设置一个节点监听多个topic

在rospy中,可以通过初始化一个节点并开启多线程来实现订阅多个话题。每个`rospy.Subscriber`调用都会创建一个子线程,无需额外的线程管理。发布消息到多个话题的方法类似。
摘要由CSDN通过智能技术生成

当我们想要在一个节点中同时订阅多个话题时,我们可以如下做法。

#!/usr/bin/env python
import rospy
from std_msgs.msg import String

def callback_1(data):
    rospy.loginfo(rospy.get_caller_id() + "I heard %s", data.data)

def callback_2(data):
    rospy.loginfo(rospy.get_caller_id() + "I heard %s", data.data)
    
def listener():

    # In ROS, nodes are uniquely named. If two nodes with the same
    # name are launched, the previous one is kicked off. The
    # anonymous=True flag means that rospy will choose a unique
    # name for our 'listener' node so that multiple listeners can
    # run simultaneously.
    rospy.init_node('listener', anonymous=True)

    rospy.Subscriber("chatter_1", String, callback_1)
    rospy.Subscriber("chatter_2", String, callback_2)

    # spin() simply keeps python from exiting until this node is stopped
    rospy.spin()

if __name__ == '__main__':
    listener()<
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值