Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

ros python publisher

#!/usr/bin/env python
# license removed for brevity
import rospy
from std_msgs.msg import String

def talker():
    pub = rospy.Publisher('chatter', String, queue_size=10)
    rospy.init_node('talker', anonymous=True)
    rate = rospy.Rate(10) # 10hz
    while not rospy.is_shutdown():
        hello_str = "hello world %s" % rospy.get_time()
        rospy.loginfo(hello_str)
        pub.publish(hello_str)
        rate.sleep()

if __name__ == '__main__':
    try:
        talker()
    except rospy.ROSInterruptException:
        pass
Comment

PREVIOUS NEXT
Code Example
Python ::  
::  
:: open a filename starting with in python 
Python ::  
Python ::  
:: how to cnovert a decimal to fraction python 
Python ::  
Python ::  
::  
Python :: download youtube video in python 
::  
::  
::  
::  
::  
::  
Python ::  
Python ::  
::  
::  
::  
::  
Python ::  
::  
Python ::  
:: importing tkinter in python 
:: combining 2 dataframes pandas 
::  
::  
:: function to convert minutes to hours and minutes python 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =