mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
re-factored SerialConnection to ISerialConnection interface and removed stuff which is not compatible with NetStandard
22 lines
400 B
C#
22 lines
400 B
C#
using OBD.NET.DataTypes;
|
|
|
|
namespace OBD.NET.OBDData
|
|
{
|
|
public class DistanceTraveledWithMILOn : AbstractOBDData
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Kilometre Distance => new Kilometre((256 * A) + B, 0, 65535);
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public DistanceTraveledWithMILOn()
|
|
: base(0x21, 2)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|