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
398 B
C#
22 lines
398 B
C#
using OBD.NET.DataTypes;
|
|
|
|
namespace OBD.NET.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
|
|
}
|
|
}
|