float ELM327::commandedEGR() Description: ------------ * Find commanded Exhaust Gas Recirculation (EGR) in % Inputs: ------- * void Return: ------- * float - Commanded Exhaust Gas Recirculation (EGR) in % */
| 1493 | * float - Commanded Exhaust Gas Recirculation (EGR) in % |
| 1494 | */ |
| 1495 | float ELM327::commandedEGR() |
| 1496 | { |
| 1497 | return processPID(SERVICE_01, COMMANDED_EGR, 1, 1, 100.0 / 255.0); |
| 1498 | } |
| 1499 | |
| 1500 | /* |
| 1501 | float ELM327::egrError() |
nothing calls this directly
no outgoing calls
no test coverage detected