kingfisher.py
Go to the documentation of this file.
00001 #!/usr/bin/python
00002 
00003 import roslib; roslib.load_manifest('kingfisher_node')
00004 import rospy
00005 
00006 from kingfisher_node.twist_subscriber import TwistSubscriber
00007 
00008 class Kingfisher(object):
00009     def __init__(self):
00010         rospy.init_node('chameleon_twist')
00011         TwistSubscriber()
00012 
00013     def spin(self):
00014         rospy.spin()
00015 
00016 if __name__ == "__main__":
00017   Kingfisher().spin()


kingfisher_node
Author(s): Mike Purvis
autogenerated on Sat Dec 28 2013 17:08:10