From f47d7c22e90b397420bf6f2a124aa7822da3042b Mon Sep 17 00:00:00 2001 From: Kris Winer Date: Sat, 30 Jan 2016 12:14:06 -0800 Subject: [PATCH] Update EM7180_MPU9250_MS5637.ino --- EM7180_MPU9250_MS5637.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EM7180_MPU9250_MS5637.ino b/EM7180_MPU9250_MS5637.ino index b8e7c02..a25ad14 100644 --- a/EM7180_MPU9250_MS5637.ino +++ b/EM7180_MPU9250_MS5637.ino @@ -816,7 +816,7 @@ void loop() if(eventStatus & 0x40) { // new baro data available // Serial.println("new Baro data!"); rawPressure = readSENtralBaroData(); - pressure = (float)rawPressure*0.01f +1013.25f; // pressure in mBar + pressure = (float)rawPressure*0.01f + 1013.25f; // pressure in mBar // get MS5637 temperature rawTemperature = readSENtralTempData();