Lets Say I have a ODB2 Shield connected to my car and everything setup, All i need to do now is display the RPM value in real time, For testing purposes would this be the best way of doing so ?
void loop()
{
if (obd.ReadSensor(PID_RPM, rpm_value)) {
myGLCD.printNumI(rpm_value, 10, 20);
}
Yup. But only update the value if value changed. Also clear the zone, for example if you write "10" then "5" you need to append a " " space to clear the old number