Car instrument readings while driving

Was this article helpful?

Comments

Why your scanner shows fewer parameters than the next car: how supported PIDs work

Somebody else sees boost pressure and oil temperature; you see RPM and speed. That is not an app limitation — the car itself declares which parameters it will hand over, and the list differs from vehicle to vehicle.

AI-generated 4 min read

One of the most common disappointments after buying an adapter goes like this: “the video showed twenty parameters and I get eight”. The cause is almost never the app and rarely the adapter. The cause is that the vehicle decides which parameters are available.

How it works

Every parameter in OBD-II has a number — a PID, Parameter ID. Engine RPM is 0C, vehicle speed is 0D, coolant temperature is 05.

Before requesting anything, a diagnostic application asks the control module a housekeeping question: “which PIDs do you support at all?” The module replies with a bitmask — one bit per number. A one means “I will supply this”, a zero means “I do not have it”.

The application then shows only what came back as a one. Asking for the rest is pointless: the answer would be a refusal.

So the parameter list is a property of the car, not of the software. Two vehicles of the same year and make but different engines will expose different sets.

What is present almost always

The minimum supported by nearly every car built after 2004:

PIDParameter
04Calculated engine load
05Coolant temperature
06, 07Short-term and long-term fuel trim
0BIntake manifold absolute pressure
0CEngine RPM
0DVehicle speed
0FIntake air temperature
11Throttle position

That set covers most everyday tasks: cold-start diagnostics, hunting a vacuum leak, watching warm-up behaviour. Reading fuel trims from this minimum is covered in its own guide.

What is not on every car

  • Boost pressure — turbocharged engines only, and not all of them.
  • Oil temperature — roughly half of vehicles.
  • Fuel rail pressure — more common on diesels and direct injection.
  • Accelerator pedal position — cars with drive-by-wire throttles.
  • Catalyst temperature — occasionally.
  • Mass airflow — depends on whether a meter is fitted or the value is derived from pressure.

The logic is simple: no sensor, no parameter. If an engine does not measure oil pressure electronically, no scanner will display it, whatever it cost.

Manufacturer parameters: why the workshop sees more

The follow-up question is usually “the shop sees twenty values on their tool, why can’t I?”

Because standard Mode 01 is the mandatory minimum every manufacturer must expose to everybody. Alongside it sits a manufacturer set, accessed through different requests and documented internally by the brand. That set can hold several hundred values: injector adaptations, clutch wear, regeneration counters, brake circuit pressures.

Mode 22 and proprietary protocols provide access. They are not described by the standard PID list and require brand-specific knowledge. What lives in there is covered in the Mode 22 guide.

When it really is the adapter

Three situations where fewer parameters are not the car’s doing:

  1. A counterfeit ELM327. Cheap clones support a trimmed command set and cannot assemble multi-frame responses. The signs are in the counterfeit guide.
  2. The adapter does not handle the required protocol. On CAN-FD vehicles an older chip misses part of the data. Compatibility is covered in the adapter buying guide.
  3. Unstable power at the connector. The exchange breaks, responses are lost, and the set varies between sessions.

A simple test: if the parameter list changes between connections, it is the adapter or the contact. If it is stable and always identical, it is the vehicle, and that is normal.

Why polling rate matters

One more nuance that gets confused with “too few parameters”. The bus delivers data serially, and the more parameters you put on screen at once, the less often each one updates.

Practical rule: to catch fast events — a misfire, a boost dropout — keep three or four parameters on screen, not twenty. Otherwise the moment falls between polls. Which minimum set to log is covered in the best OBD PIDs for a daily driver.

In short

  • The control module defines the parameter list, not the software.
  • No sensor means no parameter, and a different scanner will not fix it.
  • The mandatory minimum covers most everyday diagnostics.
  • Manufacturer values live outside the standard list and need different requests.
  • A list that varies between connections means the adapter; a stable one means the car.

Download the app — it reads your vehicle’s supported parameter list automatically through an ELM327 adapter over Bluetooth SPP on Android.

Comments

Loading…