Fix faulty mapping on TPS

This commit is contained in:
Josh Stewart 2015-06-09 23:38:41 +10:00
parent eae0faa904
commit ade1b4d4b1
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ void loop()
currentStatus.TPSlast_time = currentStatus.TPS_time;
int tpsTemp = analogRead(pinTPS);
currentStatus.tpsADC = fastMap1023toX(tpsTemp, 0, 1023, 0, 255); //Get the current raw TPS ADC value and map it into a byte
currentStatus.TPS = fastMap1023toX(tpsTemp, configPage1.tpsMin, configPage1.tpsMax, 0, 100); //Take the raw TPS ADC value and convert it into a TPS% based on the calibrated values
currentStatus.TPS = map(tpsTemp, configPage1.tpsMin, configPage1.tpsMax, 0, 100); //Take the raw TPS ADC value and convert it into a TPS% based on the calibrated values
currentStatus.TPS_time = currentLoopTime;
}