ZuinigeRijder
Well-known member
- Joined
- Dec 31, 2015
- Messages
- 138
ZuinigeRijder said:I do not know much about CAN. Maybe it helps if we talk more about the contents of the spreadsheet of CAN decoding:
https://docs.google.com/spreadsheets/d/1YYlZ-IcTQlz-LzaYkHO-7a4SFM8QYs2BGNXiSU5_EwI/edit#gid=0
According to the comments in tab "OBD PIDS", the different CAN's are found at (first one is the one you select in Torque Pro):
Code:CAN ID Pair ECU 74E 771 779 SJB 794 79C OBC 7A0 7A8 BCM 7A5 7AD SMK 7BB 7C5 7CD LDC 7C6 7CE CLU 7D1 7D9 7D2 7DA 7D4 7DC EPS 7D5 7DD 7D6 7DE TPMS 7E2 7EA VMCU 7E4 7EC BMC
In the VMCU data tab, it shows already detected data, e.g.
Code:2101 10 0E 61 1 F0 0 0 0 21 Unknown Unknown Unknown Unknown "Unknown Accel Pedal related" Accel Pedal Depth (%x2) Vehicle speed (km/h) 22 0
So in Torque Pro we could show the Vehicle speed, using header 7E2 for selecting the VMCU, issue mode 2101 and select the vehicle speed column?
Actually, I did not yet try.
I played around with alOBD terminal and captured 2101 responses from 7E2.
Code:
5 > atz
atzELM327 v1.5
6 > atsp6
atsp6OK
7 > atsh7e2
atsh7e2OK
8 > 2101
210100E 0: 61 01 F0 00 00 00 1: FF 05 0C 03 00 00 [u]00[/u] 2: 00 00 00 00 00 00 00
Above was standing still, so the speed was 0 km/h (last byte on 1: response)
Code:
9 > 2101
210100E 0: 61 01 F0 00 00 00 1: F4 0D 00 07 52 39 [u]38[/u] 2: 00 00 00 00 00 00 00
10 > 2101
210100E 0: 61 01 F0 00 00 00 1: AF 0C 5E 06 18 2E [u]24[/u] 2: 00 00 00 00 00 00 00
11 > 2101
210100E 0: 61 01 F0 00 00 00 1: DA 0C 72 06 76 2F [u]2D[/u] 2: 00 00 00 00 00 00 00
12 > 2101
210100E 0: 61 01 F0 00 00 00 1: 66 0F B4 07 04 46 [u]42[/u] 2: 00 00 00 00 00 00 00
13 > 2101
210100E 0: 61 01 F0 00 00 00 1: C4 0E 67 07 5A 40 [u]4B[/u] 2: 00 00 00 00 00 00 00
14 > 2101
210100E 0: 61 01 F0 00 00 00 1: BC 0C 63 06 62 2E [u]2D[/u] 2: 00 00 00 00 00 00 00
Speed indicators above are 56, 36, 45, 66, 75, 45 km/h.
I think these are the real km/h and not what is displayed on the display, because these are a few km/h less than shown on the display.
Unfortunately I could not get it to work with Torque Pro, the following code only showed 0, 1, or 255:
Code:
003_VMCU Speed,Speed,2101,K,0,255,km/h,7E2
What is missing for Torque Pro?