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
366 B
C#
22 lines
366 B
C#
using OBD.NET.DataTypes;
|
|
|
|
namespace OBD.NET.OBDData
|
|
{
|
|
public class FuelPressure : AbstractOBDData
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Kilopascal Pressure => new Kilopascal(3 * A, 0, 765);
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public FuelPressure()
|
|
: base(0x0A, 1)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|