MCPcopy Create free account
hub / github.com/PowerBroker2/ELMduino / queryPID

Method queryPID

src/ELMduino.cpp:630–636  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

628 * void
629*/
630void 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[])

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected