uint8_t ELM327::oxygenSensorsPresent_4banks() Description: ------------ * Find which oxygen sensors are present (Similar to PID 13, but [A0..A7] == [B1S1, B1S2, B2S1, B2S2, B3S1, B3S2, B4S1, B4S2]) Inputs: ------- * void Return: ------- * uint8_t - Bit encoded */
| 1353 | * uint8_t - Bit encoded |
| 1354 | */ |
| 1355 | uint8_t ELM327::oxygenSensorsPresent_4banks() |
| 1356 | { |
| 1357 | return (uint8_t)processPID(SERVICE_01, OXYGEN_SENSORS_PRESENT_4_BANKS, 1, 1); |
| 1358 | } |
| 1359 | |
| 1360 | /* |
| 1361 | bool ELM327::auxInputStatus() |
nothing calls this directly
no outgoing calls
no test coverage detected