Page 1 of 1

Please help with displaying boost

Posted: Wed Jun 05, 2019 12:55 pm
by myxr6turbo
Hi guys, really new at this. I want to display vacuum/boost which I take it is PID_INTAKE_MAP? If I print this to LCD I get 32. How do I convert this to PSI? At full boost 14.8 PSI

Here is my code:

else if (buttonPushCounter == 1){ // Boost PSI
lcd.clear();
lcd.setCursor(0, 1);
lcd.draw(turbo, 48, 48);
lcd.setCursor(60, 2);
lcd.setFontSize(FONT_SIZE_XLARGE);
lcd.printInt(value,3);
delay(50);
}
}

Re: Please help with displaying boost

Posted: Wed Jun 12, 2019 10:17 am
by myxr6turbo
All good guys, I worked it out.

Re: Please help with displaying boost

Posted: Thu Jul 25, 2019 12:01 pm
by adavies1106
Can you offer some insigh as to how you worked this out? Or example code? I'm struggling with something similiar