debug.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 import roslib; roslib.load_manifest('pddl_msgs')
3 import rospy
4 from pddl_msgs.msg import *
5 
6 def talker():
7  pub = rospy.Publisher('chatter', PDDLhoge)
8  rospy.init_node('talker')
9  while not rospy.is_shutdown():
10  str = ["hello world %s"%rospy.get_time(), "aaa", "bbb"]
11  rospy.loginfo(str)
12  pub.publish(a = str)
13  rospy.sleep(1.0)
14 
15 if __name__ == '__main__':
16  try:
17  talker()
18  except rospy.ROSInterruptException: pass
19 
msg
debug.talker
def talker()
Definition: debug.py:6


pddl_planner
Author(s): Ryohei Ueda (ueda@jsk.t.u-tokyo.ac.jp)
autogenerated on Fri Dec 8 2023 03:35:32