uint16_t ELM327::distTravelWithMIL() Description: ------------ * Find distance traveled with malfunction indicator lamp (MIL) on in km Inputs: ------- * void Return: ------- * uint16_t - Distance traveled with malfunction indicator lamp (MIL) on in km */
| 1433 | * uint16_t - Distance traveled with malfunction indicator lamp (MIL) on in km |
| 1434 | */ |
| 1435 | uint16_t ELM327::distTravelWithMIL() |
| 1436 | { |
| 1437 | return (uint16_t)processPID(SERVICE_01, DISTANCE_TRAVELED_WITH_MIL_ON, 1, 2); |
| 1438 | } |
| 1439 | |
| 1440 | /* |
| 1441 | float ELM327::fuelRailPressure() |
nothing calls this directly
no outgoing calls
no test coverage detected