Go to the documentation of this file.00001
00002 '''Provides a service interface to control the robot's arm
00003 in the context of PbD.
00004 '''
00005
00006
00007
00008
00009
00010 import rospy
00011
00012
00013 from fetch_pbd_interaction import ArmControl
00014
00015
00016
00017
00018
00019 if __name__ == '__main__':
00020
00021
00022 rospy.init_node('fetch_arm_control', anonymous=True)
00023
00024 arm_control = ArmControl()
00025
00026 while(not rospy.is_shutdown()):
00027 arm_control.update()
00028
00029
00030
00031 rospy.sleep(0.1)