MCPcopy Create free account
hub / github.com/PowerBroker2/ELMduino / fuelSystemStatus

Method fuelSystemStatus

src/ELMduino.cpp:975–978  ·  view source on GitHub ↗

uint16_t ELM327::fuelSystemStatus() Description: ------------ * Freeze DTC - see https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03 for more info Inputs: ------- * void Return: ------- * uint16_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03) */

Source from the content-addressed store, hash-verified

973 * uint16_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03)
974*/
975uint16_t ELM327::fuelSystemStatus()
976{
977 return (uint16_t)processPID(SERVICE_01, FUEL_SYSTEM_STATUS, 1, 2);
978}
979
980/*
981 float ELM327::engineLoad()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected