mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
22 lines
412 B
C#
22 lines
412 B
C#
using OBD.NET.Common.DataTypes;
|
|
|
|
namespace OBD.NET.Common.OBDData
|
|
{
|
|
public class IntakeManifoldAbsolutePressure : AbstractOBDData
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Kilopascal Pressure => new Kilopascal(A, 0, 255);
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public IntakeManifoldAbsolutePressure()
|
|
: base(0x0B, 1)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|