pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/joint_cmd.proto

21 lines
413 B
Protocol Buffer
Raw Permalink Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface JointCmd
/// \brief Message for joint command, used by physics::JointControlWidget
import "pid.proto";
message JointCmd
{
required string name = 1;
optional int32 axis = 2 [default=0];
optional double force = 3;
optional PID position = 4;
optional PID velocity = 5;
optional bool reset = 6;
}