dummy_node.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 
00003 """ A dummy ROS node """
00004 
00005 import rospy
00006 
00007 
00008 if __name__ == '__main__':
00009     try:
00010         rospy.init_node('dummy_node')
00011         rospy.loginfo('Dummy node started. [' + rospy.get_name() + ']')
00012         rospy.spin()
00013     except rospy.ROSInterruptException:
00014         pass


rocon_python_comms
Author(s): Daniel Stonier
autogenerated on Fri May 2 2014 10:35:42