float ELM327::relativeThrottle() Description: ------------ * Find relative throttle position in % Inputs: ------- * void Return: ------- * float - Relative throttle position in % */
| 1833 | * float - Relative throttle position in % |
| 1834 | */ |
| 1835 | float ELM327::relativeThrottle() |
| 1836 | { |
| 1837 | return processPID(SERVICE_01, RELATIVE_THROTTLE_POSITION, 1, 1, 100.0 / 255.0); |
| 1838 | } |
| 1839 | |
| 1840 | /* |
| 1841 | float ELM327::ambientAirTemp() |
nothing calls this directly
no outgoing calls
no test coverage detected