From 0e9e15cab0cbb137743c65798bb93fb85f3830b6 Mon Sep 17 00:00:00 2001 From: Tyler Glenn Date: Tue, 23 Feb 2021 22:15:41 -0700 Subject: [PATCH] Removing bool return Fixes #117 --- src/BME280.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BME280.h b/src/BME280.h index a0c3df0..247a1e5 100644 --- a/src/BME280.h +++ b/src/BME280.h @@ -213,7 +213,7 @@ class BME280 /////////////////////////////////////////////////////////////// /// Force a unfiltered measurement to populate the filter /// buffer. - bool InitializeFilter(); + void InitializeFilter(); /*****************************************************************/ @@ -296,7 +296,7 @@ class BME280 ///////////////////////////////////////////////////////////////// /// Write the settings to the chip. - bool WriteSettings(); + void WriteSettings(); /////////////////////////////////////////////////////////////////