From aaca902d18e00101188cbd293c073e6852be1850 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sat, 22 Apr 2023 09:04:01 -0400 Subject: [PATCH] added MQ then the raw temperature sensor reading in payload_OK_Only --- cubesatsim/cubesatsim.ino | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cubesatsim/cubesatsim.ino b/cubesatsim/cubesatsim.ino index 5885908a..e38a7cbd 100644 --- a/cubesatsim/cubesatsim.ino +++ b/cubesatsim/cubesatsim.ino @@ -3069,7 +3069,9 @@ void payload_OK_only() Serial.print(" "); Serial.print(Sensor2,4); Serial.print(" "); - Serial.println(Sensor3,2); + Serial.print(Sensor3,2); + Serial.print(" MQ "); + Serial.println(SensorValue,0); if (mpuPresent) { float rotation = sqrt(mpu6050.getGyroX()*mpu6050.getGyroX() + mpu6050.getGyroY()*mpu6050.getGyroY() + mpu6050.getGyroZ()*mpu6050.getGyroZ()); @@ -3209,7 +3211,9 @@ void payload_OK_only() Serial1.print(" "); Serial1.print(Sensor2,4); Serial1.print(" "); - Serial1.println(Sensor3,2); + Serial1.print(Sensor3,2); + Serial1.print(" MQ "); + Serial1.println(SensorValue,0); if (mpuPresent) { float rotation = sqrt(mpu6050.getGyroX()*mpu6050.getGyroX() + mpu6050.getGyroY()*mpu6050.getGyroY() + mpu6050.getGyroZ()*mpu6050.getGyroZ());