Skip to content

Releases: sparkfun/SparkFun_SCD30_Arduino_Library

Version 1.0.20

07 Oct 10:37
Compare
Choose a tag to compare

This release:

  • Adds the method useStaleData
    • useStaleData(true) will cause getCO2, getTemperature and getHumidity to output the previous (stale) reading instead of zero.
    • Backward compatibility is maintained. By default, zeros are output instead of stale data.

Version 1.0.19

22 Aug 08:46
7e911f7
Compare
Choose a tag to compare

This release:

  • Fixes a mistake in getTemperatureOffset

Compile support for ESP8266

05 Jul 17:22
Compare
Choose a tag to compare
v1.0.18

Update library.properties

Add isConnected(). Add test for valid measurement before returning value.

28 Jan 21:54
Compare
Choose a tag to compare

setTemperatureOffset only accepts positive values

18 Nov 16:14
Compare
Choose a tag to compare
v1.0.16

Update library.properties

Fix for negative getTemperatureOffset() values

16 Nov 22:45
Compare
Choose a tag to compare
v1.0.15

Update library.properties

Add getMeasurementInterval() helper function

01 Sep 18:38
Compare
Choose a tag to compare
v1.0.14

Update library.properties

Version 1.0.13

02 Jun 09:51
Compare
Choose a tag to compare

This release:

  • Adds the 3ms delay, specified in the Sensirion interface description, before reading the sensor data - thank you @yamamaya #24

Do not enable Auto calibration at begin()

26 Feb 16:21
Compare
Choose a tag to compare

Sets auto-calibrate default to false at .begin() stage. Auto-calibrate takes 7 days with constant power. We should avoid starting this unless the user specifically intends it. Example 4 updated to show how to enable cal.

Version 1.0.11

01 Feb 17:08
42f08eb
Compare
Choose a tag to compare

This release:

  • incorporates some of the suggestions and corrections from paulvha's version of the library
    • .begin can now be called without starting measurements
    • conversion from int32_t to float no longer uses memcpy
  • .begin checks the firmware version and only returns true if the CRC check is valid
  • adds .enableDebugging
  • adds a new example to demonstrate the new getSetting functions