Main Page
Namespaces
Namespace List
Namespace Members
All
Variables
Typedefs
Classes
Class List
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
i
m
n
o
p
r
s
t
u
v
~
Functions
a
d
e
g
i
n
o
s
t
u
v
~
Variables
b
c
d
e
f
g
i
m
n
o
p
r
s
t
v
Files
File List
File Members
All
Functions
Variables
Typedefs
Macros
scripts
wtf.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
import
rospy
4
from
robot_pose_ekf.srv
import
GetStatus, GetStatusRequest
5
6
if
__name__ ==
'__main__'
:
7
rospy.init_node(
'spawner'
, anonymous=
True
)
8
print
(
'looking for node robot_pose_ekf...'
)
9
rospy.wait_for_service(
'robot_pose_ekf/get_status'
)
10
11
s = rospy.ServiceProxy(
'robot_pose_ekf/get_status'
, GetStatus)
12
resp = s.call(GetStatusRequest())
13
print
(resp.status)
robot_pose_ekf
Author(s): Wim Meeussen
autogenerated on Wed Mar 2 2022 00:50:47