uint8_t ELM327::manifoldPressure() Description: ------------ * Find intake manifold absolute pressure in kPa Inputs: ------- * void Return: ------- * uint8_t - Intake manifold absolute pressure in kPa */
| 1133 | * uint8_t - Intake manifold absolute pressure in kPa |
| 1134 | */ |
| 1135 | uint8_t ELM327::manifoldPressure() |
| 1136 | { |
| 1137 | return (uint8_t)processPID(SERVICE_01, INTAKE_MANIFOLD_ABS_PRESSURE, 1, 1); |
| 1138 | } |
| 1139 | |
| 1140 | /* |
| 1141 | float ELM327::rpm() |
nothing calls this directly
no outgoing calls
no test coverage detected