0001-added-new-type-MotorCurrents-to-dynamics-package-of-.patch

C. Emmerich, 07/22/2015 08:24 PM

Download (1.02 KB)

View differences:

proto/sandbox/rst/dynamics/MotorCurrents.proto
1
package rst.dynamics;
2

  
3
option java_outer_classname = "MotorCurrentsType";
4

  
5
/**
6
 * A sequence of motor currents of a robot's multiple joints.
7
 *
8
 * @author Michael Wojtynek <mwojtynek@cor-lab.uni-bielefeld.de>
9
 */
10
message MotorCurrents {
11

  
12
    /**
13
     * motor currents of the robot's drives
14
     */
15
    // @unit(ampere)
16
    repeated float currents = 1 [packed=true];
17

  
18
}
0
-