Control Libraries 6.3.4
Loading...
Searching...
No Matches
joint_state.proto
1syntax = "proto3";
2
3package state_representation.proto;
4
5import "state_representation/state.proto";
6
7message JointState {
8 State state = 1;
9 repeated string joint_names = 2;
10 repeated double positions = 3;
11 repeated double velocities = 4;
12 repeated double accelerations = 5;
13 repeated double torques = 6;
14}
15
16message JointPositions {
17 State state = 1;
18 repeated string joint_names = 2;
19 repeated double positions = 3;
20}
21
22message JointVelocities {
23 State state = 1;
24 repeated string joint_names = 2;
25 repeated double velocities = 3;
26}
27
28message JointAccelerations {
29 State state = 1;
30 repeated string joint_names = 2;
31 repeated double accelerations = 3;
32}
33
34message JointTorques {
35 State state = 1;
36 repeated string joint_names = 2;
37 repeated double torques = 3;
38}