Initial commit

This commit is contained in:
2026-07-03 16:31:37 +07:00
commit 899c7c637d
1939 changed files with 641750 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
namespace RobotNet10.Shared.Sensor;
/// <summary>
/// Temperature message (sensor_msgs/Temperature)
/// Single temperature reading
/// </summary>
public struct Temperature
{
/// <summary>
/// Header with timestamp and frame ID
/// </summary>
public Header Header { get; set; }
/// <summary>
/// Temperature reading in Celsius
/// </summary>
public double TemperatureValue { get; set; }
/// <summary>
/// Variance of the temperature reading
/// </summary>
public double Variance { get; set; }
/// <summary>
/// Default constructor
/// </summary>
public Temperature()
{
Header = new Header();
TemperatureValue = 0.0;
Variance = 0.0;
}
}