robocup_knowledge
rwc2022/challenge_receptionist.py
Go to the documentation of this file.
1 from robocup_knowledge import knowledge_loader
2 common = knowledge_loader.load_knowledge("common")
3 
4 operator_name = "charlie"
5 
6 operator_drink = "ice tea"
7 
8 starting_point = "initial_pose_receptionist"
9 
10 waypoint_door = {'id': 'entry_door', 'radius': 0.5}
11 
12 waypoint_livingroom = {'id': 'living_room', 'radius': 0.5}
13 
14 sitting_room = 'living_room' # Where people will be guided to sit and the robot will find a seat
15 
16 seats = ['sofa']