Skip to content

Commit 42f08eb

Browse files
authored
Merge pull request #21 from sparkfun/paulvha_updates
Flash helper updates
2 parents fee22e4 + 6d98e8d commit 42f08eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SparkFun_SCD30_Arduino_Library.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ bool SCD30::begin(TwoWire &wirePort, bool autoCalibrate, bool measBegin)
6464

6565
if (_printDebug == true)
6666
{
67-
_debugPort->print("SCD30 begin: got firmware version 0x");
67+
_debugPort->print(F("SCD30 begin: got firmware version 0x"));
6868
_debugPort->println(fwVer, HEX);
6969
}
7070

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

0 commit comments

Comments
 (0)