float ELM327::mph() Description: ------------ * Queries and parses received message for/returns vehicle speed data (mph) Inputs: ------- * void Return: ------- * float - Vehicle speed in mph */
| 1193 | * float - Vehicle speed in mph |
| 1194 | */ |
| 1195 | float ELM327::mph() |
| 1196 | { |
| 1197 | return kph() * KPH_MPH_CONVERT; |
| 1198 | } |
| 1199 | |
| 1200 | /* |
| 1201 | float ELM327::timingAdvance() |
nothing calls this directly
no outgoing calls
no test coverage detected