namespace RobotNet10.Shared.Sensor;
///
/// RelativeHumidity message (sensor_msgs/RelativeHumidity)
/// Single reading from a relative humidity sensor
///
public struct RelativeHumidity
{
///
/// Header with timestamp and frame ID
///
public Header Header { get; set; }
///
/// Relative humidity reading (0-1)
///
public double RelativeHumidityValue { get; set; }
///
/// Variance of the relative humidity reading
///
public double Variance { get; set; }
///
/// Default constructor
///
public RelativeHumidity()
{
Header = new Header();
RelativeHumidityValue = 0.0;
Variance = 0.0;
}
}