mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-13 01:08:30 +00:00
re-factored SerialConnection to ISerialConnection interface and removed stuff which is not compatible with NetStandard
22 lines
389 B
C#
22 lines
389 B
C#
using OBD.NET.DataTypes;
|
|
|
|
namespace OBD.NET.OBDData
|
|
{
|
|
public class AbsoluteThrottlePositionB : AbstractOBDData
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Percent Position => new Percent(A / 2.55, 0, 100);
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public AbsoluteThrottlePositionB()
|
|
: base(0x47, 1)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|