From af4f19b3876bbba1cd798252e856b45aaa053ee0 Mon Sep 17 00:00:00 2001 From: Timur Iskhodzhanov Date: Tue, 15 Sep 2020 22:22:28 -0700 Subject: [PATCH] A couple of updates the the PID database Thanks "map" from ft86club forum! --- can_db/ft86.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/can_db/ft86.md b/can_db/ft86.md index c8e6a82..c90b0f9 100644 --- a/can_db/ft86.md +++ b/can_db/ft86.md @@ -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.