Trans temp gauge

For discussion of Phil Tobin's Tuner Studio software (Only about the tuning software itself, not about how to tune or firmware features)

Moderator: LT401Vette

Post Reply
nathaninwa
Super MS/Extra'er
Posts: 2639
Joined: Tue Sep 14, 2004 4:17 pm
Location: Aberdeen, Wa

Trans temp gauge

Post by nathaninwa »

I'm running a Ms3 and microsquirt together over canbus for engine and transmission control. How do I go about fetching the trans temp over canbus to display on the ms3's tuning dashboard? I see I can do something with generic inputs, but not sure what can-adc to use if that's the way to handle it
Volvo 940, 2jzge, MS3Pro, daily
240Z, 2JZ, MS3Pro boost control
jsmcortina
Site Admin
Posts: 39621
Joined: Mon May 03, 2004 1:34 am
Location: Birmingham, UK
Contact:

Re: Trans temp gauge

Post by jsmcortina »

Two steps to the process:
1. have the CAN system fetch the temp data from the trans control.
The realtime data is in block/table 7 and the trans CANid is 7.
The trans ini file shows us the offset of the transtemp data.

Code: Select all

[OutputChannels]
....
   transtemp        = scalar, S16,   10, "°F", 0.1,0
So define CANADC 1-4 to fetch from id 7, table 7, offset 10.
Then use the Generic Sensors system to convert CANADC1 into a "real value". So if using degF that would be a linear scaling 0 to 102.3. The conversion from volts to real temperature is already done inside the trans controller.
(Note that if the data had been 8 bit, that would have been a problem...)

James
I can repair or upgrade Megasquirts in UK. http://www.jamesmurrayengineering.co.uk

My Success story: http://www.msextra.com/forums/viewtopic ... 04&t=34277
MSEXTRA documentation at: http://www.msextra.com/doc/index.html
New users, please read the "Forum Help Page".
Post Reply