A couple of updates the the PID database

Thanks "map" from ft86club forum!
This commit is contained in:
Timur Iskhodzhanov 2020-09-15 22:22:28 -07:00
parent 350425c6a8
commit af4f19b387
1 changed files with 11 additions and 1 deletions

View File

@ -86,7 +86,7 @@ Update frequency: 100 times per second.
Channel name | Equation | Notes
------------ | -------- | -----
Accelerator pedal position? | `bytesToIntLe(raw, 0, 2)` | Follows `A` from `0x140` closely with ~9860 for 0% and ~11625 for 42%. Needs more testing.
Throttle position? | `bytesToIntLe(raw, 2, 2)` | Follows the accelerator pedal position with some extra smoothness. Independent at idle revs, and you can see it changing in response to modulating the clutch in stop and go traffic. Scale is unknown.
Engine load? | `bytesToIntLe(raw, 2, 2)` | Follows the data from OBD PIDs 0x4 and 0x43 pretty well.
Engine RPM | `E + (F & 0x3f) * 256`
??? | `F & 0x80` | 1 when accelerator pedal is released, 0 otherwise
??? | `F & 0x40` | Always 0?
@ -106,6 +106,16 @@ Cruise control ON | `(F & 16) / 16` | Means the mode is "On", but not necessaril
Cruise control set | `(F & 32) / 32` | Not tested much.
Cruise control speed | `H` | In the same unit as the current speed display units? Not tested much.
## PID 0x361
Update frequency: 20 times per second.
Channel name | Equation | Notes
------------ | -------- | -----
Gear | A & 0x7 | Not tested
## Would be nice to find PIDs for ...
TODO: would be great to find how to read the ambient temperature, and maybe the
intake temperature.