Quote: Originally Posted by
joychung 
Hi malcom2073,
I just try your program and it's good! Few question if you don't mind:
1- the MAF pid is 0110 on wikipedia and it's 0111 in your skin.xml. which one is true?
2- the Temp in your program is in F or in Celcius?
3- How can I convert MPG to KMPL (Kilometer Per Liter)?
I'm in Canada so the KM/H and Celcius is familiar with me than MPH and F.
When I exit the program I receive the message "Method not found: 'System.GCNotificationStatus System.GC.WaitForFullGCComplete()'.".
Thanks,
1) Wiki is right, I am wrong

2) Temp comes out as C, in the xml I have function="1.8 * temp + 32" to convert to F. Change that to function-"temp" to have it in C. Same goes for the MPH function
3) I'm not entirely sure to be honest :-/. Perhaps someone else can give input on this.
efun: At the top of the xml file:
<gauges count="5" xpos="0" ypos="0" width="800" height="600" bgcolor="200:200:200" comport="COM1" baud="9600">
bgcolor is a r:b:g value. So 255:255:255 is pure white, and 0:0:0 is pure black.
As for the gauges, I'm not sure what you mean by gauge software, I wrote this entire thing myself.
Edit:
And the "Method not found: 'System.GCNotificationStatus System.GC.WaitForFullGCComplete()'." message is because you are not running .NET 3.5. I'll have to fix that.