I've done the computations and am displaying "corrected" US standard Speed, RPM, Temp etc, but am having issue with manipulating Text display, to reflect the change. eg 45 MPH displays as 45 km/H and Coolant Temp displays 120 C rather than 120 F ... Can you push me in the right direction please.
Also, would like to spin off changes only for these conversions, and additional PID's additions if you wouldn't mind.
Coolant Temp -- Result = ((int(Response, 16) - 40)*1.8) + 32
Speed -- Result = int(Response[:2], 16)/1.60934
I've done the computations and am displaying "corrected" US standard Speed, RPM, Temp etc, but am having issue with manipulating Text display, to reflect the change. eg 45 MPH displays as 45 km/H and Coolant Temp displays 120 C rather than 120 F ... Can you push me in the right direction please.
Also, would like to spin off changes only for these conversions, and additional PID's additions if you wouldn't mind.
Coolant Temp -- Result = ((int(Response, 16) - 40)*1.8) + 32
Speed -- Result = int(Response[:2], 16)/1.60934