Quote from Simon2 on August 2, 2012
jzd
that’s good news
any chance you could provide a full list of sensors the adapter allows you to access
Everything! I mean it. If its connected to the car it is accessible. Its the same as VCDS/Vag Com. You just have to identify which values are which.
This is the ID file I’m working on:
# Used for matching. The file chosen is the file that closest matches all the IDs
# The filename itself should be the same as the ECUID, so should be something like: 06A906018CL.txt
ECUID=3G906018FC
WorkshopID=00000
SoftwareID=00000
# Each measuring block is describe as follows in this example:
# 080101: (Block one, value one, blocks are HEX values, so, block 09 is '09', 10 is '0A', 11 is '0B', etc.)
# "Idle RPM": Long title (used when choosing a display)
# "Revs": Short title (used in the displays)
# "rpm": The unit (capitals are important - as close to si notation as possible
# 0: Minimum value (Defaults for display - not required if Mode 01 OBD2 PID is supplied)
# 7000: Maximum value (Defaults for display - not required if Mode 01 OBD2 PID is supplied)
# 0D: OBD2 equivalent PID (hex). Does not have to be present if you don't know it, but if you do, this will be used by the app to link up various$
#
#
# Block, Long title, Short Title, Units, Min, Max, OBD2 ID (Hex)
# Block 1, Injection Quantity
080101, "Engine Speed", "ES", "rpm", 0, 5000, 0C
080102, "Injection Quantity", "IQ", "mg/stk", 0, 100,
080103, "Injection Duration", "ID", "\u00B0KW", 0, 30,
080104, "Coolant Temperature", "Coolant", "\u00B0C", -10, 135,
# Block 2, Idle Speed
#080201, "Engine Speed", "ES", "rpm", 0, 5000, 0C
080202, "Accelerator Pedal", "AccelPed", "\u0025", 0, 100,
080203, "Idle Status Bits" "Idle Status" "bits", 0, 256,
#080204, "Coolant Temperature", "Coolant", "\u00B0C", -10, 135,
# Block 3, Exhaust Gas Recirculation
#080301, "Engine Speed", "ES", "rpm", 0, 5000, 0C
080302, "EGR Requested", "EGR Req", "mg/stk", 0, 1300,
080303, "EGR Actual" "EGR" "mg/stk", 0, 1300,
080304, "EGR Duty Cycle", "EGR Duty", "\u0025", 0, 100,
# Block 4, PD Injectors
#080401, "Engine Speed", "ES", "rpm", 0, 5000, 0C
080402, "Start Of Injection", "SOI", "\u00B0BTDC", 0, 30,
#080403, "Injection Duration", "ID", "\u00B0KW", 0, 30,
080404, "Torsion Value", "Tor", "\u00B0KW", -10, 10,
Piemmm, how does it deal with duplicate entries? You can see that the engine speed appears a lot. Am I right to only include 1? From what I know with VCDS is that it logs quicker when its reading less blocks at a time. So if I wanted to display the EGR parameters I would be better off uncommenting the ES there and comment out the first block’s ES. Any chance of getting to automatically figure out the best block to read from?
Another problem – my ECU is 03G906018FC but it shows up in adapter status without the 0 and the ID file only worked when I dropped the 0.
|