Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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