float ELM327::rpm() Description: ------------ * Queries and parses received message for/returns vehicle RMP data Inputs: ------- * void Return: ------- * float - Vehicle RPM */
| 1153 | * float - Vehicle RPM |
| 1154 | */ |
| 1155 | float ELM327::rpm() |
| 1156 | { |
| 1157 | return processPID(SERVICE_01, ENGINE_RPM, 1, 2, 1.0 / 4.0); |
| 1158 | } |
| 1159 | |
| 1160 | /* |
| 1161 | int32_t ELM327::kph() |
nothing calls this directly
no outgoing calls
no test coverage detected