Amount Remaining

Signal code: internalcombustionengine-amountremaining The quantity of fuel remaining in the vehicle’s tank
unit
string
The unit of measurement for the fuel amount (e.g., liters, gallons)
value
number
The quantity value of remaining fuel
Example
{
  "unit": "liters",
  "value": 45.5
}

Fuel Level

Signal code: internalcombustionengine-fuellevel The current amount of fuel in the vehicle’s tank, expressed as a percentage (0 - 100)
unit
string
The unit for fuel level (always percent)
value
number
The fuel level as a percentage between 0 and 100
Example
{
  "unit": "percent",
  "value": 75
}

Oil Life

Signal code: internalcombustionengine-oillife The engine oil’s remaining life span based on the current quality of the oil, expressed as a percentage. 100 indicates the oil was changed recently and 0 indicates the oil should be changed immediately. It is not a representation of how much oil is left in the vehicle.
unit
string
The unit for oil life (always percent)
value
number
The oil life remaining as a percentage between 0 and 100
Example
{
  "unit": "percent",
  "value": 85
}

Range

Signal code: internalcombustionengine-range The estimated driving distance possible with the current amount of fuel
unit
string
The unit for range measurement (e.g., kilometers, miles)
value
number
The estimated driving distance value
Example
{
  "unit": "kilometers",
  "value": 450
}