From d492906b288c3ad4ca22e957911ea240db239f0a Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 30 Sep 2020 08:30:41 +0200 Subject: [PATCH] Changed to clang format Added whitespace --- Adafruit_BME280.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Adafruit_BME280.cpp b/Adafruit_BME280.cpp index 1332007..f040743 100644 --- a/Adafruit_BME280.cpp +++ b/Adafruit_BME280.cpp @@ -361,7 +361,7 @@ bool Adafruit_BME280::takeForcedMeasurement(void) { // the values from the last measurement or the timeout occurred after 2 sec. while (read8(BME280_REGISTER_STATUS) & 0x08) { // In case of a timeout, stop the while loop - if((millis() - timeout_start) > 2000) { + if ((millis() - timeout_start) > 2000) { return_value = false; break; }