-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapi.json
36 lines (36 loc) · 864 Bytes
/
api.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[
{
"name": "/turtle1/teleport_absolute",
"service_type": "turtlesim/TeleportAbsolute",
"args": {
"x": "float in [0, 10]",
"y": "float in [0, 10]",
"theta": "float in [-3.14, 3.14]"
}
},
{
"name": "/turtle1/teleport_relative",
"service_type": "turtlesim/TeleportRelative",
"args": {
"linear": "float",
"angular": "float"
}
},
{
"name": "/spawn",
"service_type": "turtlesim/Spawn",
"args": {
"x": "float in [0, 10]",
"y": "float in [0, 10]",
"theta": "float in [-3.14, 3.14]",
"name": "string"
}
},
{
"name": "/kill",
"service_type": "turtlesim/Kill",
"args": {
"name": "string"
}
}
]