void ELM327::queryPID(const uint8_t& service, const uint16_t& pid, const uint8_t& num_responses) Description: ------------ * Create a PID query command string and send the command Inputs: ------- * uint8_t service - The diagnostic service ID. 01 is "Show current data" * uint16_t pid - The Parameter ID (PID) from the service * uint8_t num_responses - Numbe
| 628 | * void |
| 629 | */ |
| 630 | void ELM327::queryPID(const uint8_t& service, |
| 631 | const uint16_t& pid, |
| 632 | const uint8_t& num_responses) |
| 633 | { |
| 634 | formatQueryArray(service, pid, num_responses); |
| 635 | sendCommand(query); |
| 636 | } |
| 637 | |
| 638 | /* |
| 639 | void ELM327::queryPID(char queryStr[]) |
nothing calls this directly
no outgoing calls
no test coverage detected