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);
}
}
Please help with displaying boost
-
- Posts: 4
- Joined: Tue May 21, 2019 2:00 pm
Re: Please help with displaying boost
All good guys, I worked it out.
-
- Posts: 2
- Joined: Fri Apr 12, 2019 11:43 pm
Re: Please help with displaying boost
Can you offer some insigh as to how you worked this out? Or example code? I'm struggling with something similiar