forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlcmt_jaco_status.lcm
28 lines (23 loc) · 956 Bytes
/
lcmt_jaco_status.lcm
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
package drake;
// The current status of a Kinova Jaco arm. All angular
// positions/velocities are expressed in radians and radians/second.
struct lcmt_jaco_status
{
// The timestamp in microseconds (this is typically the wall clock
// time of the sender https://en.wikipedia.org/wiki/Unix_time )
int64_t utime;
int32_t num_joints;
double joint_position[num_joints];
double joint_velocity[num_joints];
double joint_torque[num_joints]; // (sometimes called "Angular
// Force" in Kinova's
// documentation.
double joint_current[num_joints];
int32_t num_fingers;
double finger_position[num_fingers];
double finger_velocity[num_fingers];
double finger_torque[num_fingers]; // (sometimes called "Angular
// Force" in Kinova's
// documentation.
double finger_current[num_fingers];
}