Browse Source

Fix out volt

Per Mårtensson 3 years ago
parent
commit
33116eb797
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main.cpp

+ 1 - 1
src/main.cpp

@@ -315,7 +315,7 @@ void UpdateSerialOutput() {
   txString += ",";
   txString += (String)((((float)adcValue_UB / 1023 * 5) / 10000) * 110000);
   txString += ",";
-  txString += (String)(Lookup_Lambda(adcValue_UA) * AirFuelRatioOctane));
+  txString += (String)(Lookup_Lambda(adcValue_UA) * AirFuelRatioOctane);
   txString += ",";
   txString += (String)checksum;