mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 08:48:30 +00:00
28 lines
542 B
C#
28 lines
542 B
C#
using OBD.NET.Common.DataTypes;
|
|
|
|
namespace OBD.NET.Common.OBDData
|
|
{
|
|
public class DistanceTraveledSinceCodesCleared : AbstractOBDData
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Kilometre Distance => new Kilometre((256 * A) + B, 0, 65535);
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public DistanceTraveledSinceCodesCleared()
|
|
: base(0x31, 2)
|
|
{ }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
public override string ToString() => Distance.ToString();
|
|
|
|
#endregion
|
|
}
|
|
}
|