Go to the documentation of this file.00001
00002
00003 import roslib
00004 roslib.load_manifest('pr2_simple_interface')
00005 roslib.load_manifest('sound_play')
00006
00007
00008
00009 from pr2_simple_interface import *
00010 from sound_play.msg import SoundRequest
00011 from sound_play.libsoundplay import SoundClient
00012 start()
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 gripper = Gripper()
00041 arm = RobotArm()
00042 head = Head()
00043 torso = Torso()
00044 sound = SoundClient()
00045
00046 rospy.sleep(1.)
00047
00048 head.look_at(1.0, 0.0, 1.0)
00049 head.wait_for()
00050
00051 while True:
00052 head.random_look_at_face()
00053 head.wait_for()
00054 rospy.sleep(3.)
00055
00056