Thank You I done that. How can I change indoor temp shows in F?
The battery pid you are using is a US conversion, not the original, which shows temps in C, as follows:
000_Battery Module 01 Temperature,Batt Temp01,0x220101,Signed(Q),-40,80,C,7E4
and this is in the .csv file
003_Kona&Niro_EV_BMS.csv
In the .csv file
005_Kona&Niro_EV_Extra_gauges.csv
is this pid for average battery temp:
004_CALC Average Battery Module Temperature,Batt AvgT,0x220101,(val{000_Battery Module 01 Temperature}+val{000_Battery Module 02 Temperature}+val{000_Battery Module 03 Temperature}+val{000_Battery Module 04 Temperature})/4.0,-40,80,C,7E4
Torque Pro has no nice easy way to convert, you need to load the original files, as above.
Otherwise you will need to load your pid file into a plain text editor, and create/add a new pid which converts from F to C, something like:
000_Batt_Temp 01_F2C,Batt Tmp1_C,,(VAL{000_Battery Module 01 Temperature}-32)/9*5,-40,80,C,
then save and reload.
Or you may get lucky when you load your existing pid file into a plain text editor, to find that you can just edit the pid showing F, back to C by deleting the conversion formula details..