1
0
mirror of https://github.com/DarthAffe/OBD.NET.git synced 2025-12-13 01:08:30 +00:00

22 lines
372 B
C#

using OBD.NET.Common.DataTypes;
namespace OBD.NET.Common.OBDData
{
public class CommandedEGR : AbstractOBDData
{
#region Properties & Fields
public Percent EGR => new Percent(A / 2.55, 0, 100);
#endregion
#region Constructors
public CommandedEGR()
: base(0x2C, 1)
{ }
#endregion
}
}