From 38f1ebc063f4e1688bb4bd46b9d7c4c0aa8e2f7a Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Mon, 28 Mar 2016 10:03:49 +1100 Subject: [PATCH] Add IAT correction % output to TS --- comms.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comms.ino b/comms.ino index aa37a1ff..34a65f22 100644 --- a/comms.ino +++ b/comms.ino @@ -63,7 +63,7 @@ void command() case 'Q': // send code version Serial.print(signature); - //Serial.write("Speeduino_0_2"); + //Serial.write("speeduino"); break; case 'V': // send VE table and constants in binary @@ -208,7 +208,7 @@ void sendValues(int length) response[8] = currentStatus.battery10; //battery voltage response[9] = currentStatus.O2; //O2 response[10] = currentStatus.egoCorrection; //Exhaust gas correction (%) - response[11] = 0x00; //Air Correction (%) + response[11] = currentStatus.iatCorrection; //Air temperature Correction (%) response[12] = currentStatus.wueCorrection; //Warmup enrichment (%) response[13] = lowByte(currentStatus.RPM); //rpm HB response[14] = highByte(currentStatus.RPM); //rpm LB