uint8_t ELM327::commandedSecAirStatus() Description: ------------ * Find commanded secondary air status Inputs: ------- * void Return: ------- * uint8_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_12) */
| 1293 | * uint8_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_12) |
| 1294 | */ |
| 1295 | uint8_t ELM327::commandedSecAirStatus() |
| 1296 | { |
| 1297 | return (uint8_t)processPID(SERVICE_01, COMMANDED_SECONDARY_AIR_STATUS, 1, 1); |
| 1298 | } |
| 1299 | |
| 1300 | /* |
| 1301 | uint8_t ELM327::oxygenSensorsPresent_2banks() |
nothing calls this directly
no outgoing calls
no test coverage detected