Skip to content

Commit

Permalink
Removing bool return.
Browse files Browse the repository at this point in the history
Fixes #117
  • Loading branch information
finitespace committed Feb 24, 2021
1 parent 7a211f0 commit 58dea3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BME280.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ bool BME280::Initialize()


/****************************************************************/
bool BME280::InitializeFilter()
void BME280::InitializeFilter()
{
// Force an unfiltered measurement to populate the filter buffer.
// This fixes a bug that causes the first read to always be 28.82 °C 81732.34 hPa.
Expand Down Expand Up @@ -110,7 +110,7 @@ bool BME280::ReadChipID()


/****************************************************************/
bool BME280::WriteSettings()
void BME280::WriteSettings()
{
uint8_t ctrlHum, ctrlMeas, config;

Expand Down

0 comments on commit 58dea3e

Please sign in to comment.