-
Notifications
You must be signed in to change notification settings - Fork 11
/
RobotStates.msg
47 lines (32 loc) · 1.16 KB
/
RobotStates.msg
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
37
38
39
40
41
42
43
44
45
46
47
# Header
std_msgs/Header header
# Measured joint positions using link-side encoder
float64[7] q
# Measured joint positions using motor-side encoder
float64[7] theta
# Measured joint velocities using link-side encoder
float64[7] dq
# Measured joint velocities using motor-side encoder
float64[7] dtheta
# Measured joint torques
float64[7] tau
# Desired joint torques
float64[7] tau_des
# Numerical derivative of measured joint torques
float64[7] tau_dot
# Estimated external joint torques
float64[7] tau_ext
# Measured TCP pose expressed in world frame
geometry_msgs/PoseStamped tcp_pose
# Desired TCP pose expressed in world frame
geometry_msgs/PoseStamped tcp_pose_des
# Measured TCP velocity expressed in world frame
geometry_msgs/AccelStamped tcp_vel
# Measured flange pose expressed in world frame
geometry_msgs/PoseStamped flange_pose
# Force-torque (FT) sensor raw reading in flange frame
geometry_msgs/WrenchStamped ft_sensor_raw
# Estimated external wrench applied on TCP and expressed in TCP frame
geometry_msgs/WrenchStamped ext_wrench_in_tcp
# Estimated external wrench applied on TCP and expressed in world frame
geometry_msgs/WrenchStamped ext_wrench_in_world