From 71d90fcea42e8805af2064a93d57e055a3a69b47 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 22 Apr 2023 09:13:45 -0400 Subject: [PATCH] typo SensorValue --- cubesatsim/cubesatsim.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index e38a7cbd..3c0ef728 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3071,7 +3071,7 @@ void payload_OK_only() Serial.print(" "); Serial.print(Sensor3,2); Serial.print(" MQ "); - Serial.println(SensorValue,0); + Serial.println(sensorValue,0); if (mpuPresent) { float rotation = sqrt(mpu6050.getGyroX()*mpu6050.getGyroX() + mpu6050.getGyroY()*mpu6050.getGyroY() + mpu6050.getGyroZ()*mpu6050.getGyroZ()); @@ -3213,7 +3213,7 @@ void payload_OK_only() Serial1.print(" "); Serial1.print(Sensor3,2); Serial1.print(" MQ "); - Serial1.println(SensorValue,0); + Serial1.println(sensorValue,0); if (mpuPresent) { float rotation = sqrt(mpu6050.getGyroX()*mpu6050.getGyroX() + mpu6050.getGyroY()*mpu6050.getGyroY() + mpu6050.getGyroZ()*mpu6050.getGyroZ());