#!/usr/bin/env python
#coding=utf-8

import rospy
from std_msgs.msg import String
i=0
def talker():
    global i
    pub = rospy.Publisher('nav_goal',String, queue_size=10)
    rospy.init_node('talker',anonymous=True)
    #rate = rospy.Rate(10) # 10hz
    #rospy.signal_shutdown("closed!")
    while not rospy.is_shutdown():
        rospy.loginfo("pub")
        pub.publish(String(data="charging_port"))
        i=i+1
        #rate.sleep()
 
if __name__ == '__main__':
    try:
        talker()
    except rospy.ROSInterruptException:
        pass

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2021-07-25
  • 2021-12-02
  • 2022-12-23
猜你喜欢
  • 2021-06-06
  • 2021-11-09
  • 2021-08-21
  • 2021-08-22
  • 2021-10-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案