pxmlw6n2f/Gazebo_Distributed_TCP/gazebo/msgs/magnetometer.proto

20 lines
522 B
Protocol Buffer
Raw Normal View History

2019-03-28 10:57:49 +08:00
syntax = "proto2";
package gazebo.msgs;
/// \ingroup gazebo_msgs
/// \interface Magnetometer
/// \brief Data from a magnetic field strength sensor
import "time.proto";
import "vector3d.proto";
/// \brief Message that encapsulates sensor data from a magnetometer.
message Magnetometer
{
/// \brief Global time at which the magnetic field strength was sampled
required Time time = 1;
/// \brief Magnetic field strength (in Tesla) along body-frame axis
required Vector3d field_tesla = 2;
}