Skip to content

Commit

Permalink
Merge pull request #21 from sparkfun/paulvha_updates
Browse files Browse the repository at this point in the history
Flash helper updates
  • Loading branch information
PaulZC authored Feb 1, 2021
2 parents fee22e4 + 6d98e8d commit 42f08eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SparkFun_SCD30_Arduino_Library.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bool SCD30::begin(TwoWire &wirePort, bool autoCalibrate, bool measBegin)

if (_printDebug == true)
{
_debugPort->print("SCD30 begin: got firmware version 0x");
_debugPort->print(F("SCD30 begin: got firmware version 0x"));
_debugPort->println(fwVer, HEX);
}

Expand Down Expand Up @@ -332,7 +332,7 @@ bool SCD30::readMeasurement()
if (error)
{
if (_printDebug == true)
_debugPort->println("readMeasurement: encountered error reading SCD30 data.");
_debugPort->println(F("readMeasurement: encountered error reading SCD30 data."));
return false;
}
//Now copy the uint32s into their associated floats
Expand Down

0 comments on commit 42f08eb

Please sign in to comment.