robocup_knowledge
robotics_testlabs/r5cop_demo.py
Go to the documentation of this file.
1 starting_point = "initial_pose"
2 
3 # required keys: entity_id (str), room_id (str), navigation_area (str), segment_areas (list)
4 inspection_places = [
5  {"entity_id": "dinner_table",
6  "room_id": "livingroom",
7  "navigate_area": "near",
8  "segment_areas": ["on_top_of"]},
9 
10  {"entity_id": "cabinet",
11  "room_id": "kitchen",
12  "navigate_area": "near",
13  "segment_areas": ["on_top_of"]},
14 ]
15 
16 known_types = [
17  "coke",
18  "fanta",
19  "mentos",
20  "bifrutas",
21  "beer",
22  "coffee_pads",
23  "deodorant",
24  "ice_tea",
25  "sprite",
26  "tea",
27  "water",
28  "xylit24_spearmint",
29  "xylit24_white"]
30