uint8_t ELM327::absBaroPressure() Description: ------------ * Find absolute barometric pressure in kPa Inputs: ------- * void Return: ------- * uint8_t - Absolute barometric pressure in kPa */
| 1633 | * uint8_t - Absolute barometric pressure in kPa |
| 1634 | */ |
| 1635 | uint8_t ELM327::absBaroPressure() |
| 1636 | { |
| 1637 | return (uint8_t)processPID(SERVICE_01, ABS_BAROMETRIC_PRESSURE, 1, 1); |
| 1638 | } |
| 1639 | |
| 1640 | /* |
| 1641 | float ELM327::catTempB1S1() |
nothing calls this directly
no outgoing calls
no test coverage detected