Please help with displaying boost
Posted: Wed Jun 05, 2019 12:55 pm
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);
}
}
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);
}
}