Skip to content

Commit

Permalink
update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RobTillaart committed May 10, 2023
1 parent bf8063c commit 643b77b
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.1.1] - 2023-05-10
- update readme.md.

----

## [0.1.0] - 2023-03-23
- initial version, derives from SHT31 0.3.8

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ Returns false if reading fails or in case of a CRC failure.

## Future

#### Must

- keep in sync with (leading) SHT31 library
- remove script for atomic if not needed any more.

#### Should

#### Could

#### Wont

2 changes: 1 addition & 1 deletion SHT31_SW.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//
// FILE: SHT31_SW.cpp
// AUTHOR: Rob Tillaart
// VERSION: 0.1.0
// VERSION: 0.1.1
// DATE: 2019-02-08 (base SHT31 lib)
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
// to be used with the SoftWire library instead of (hardware) Wire.
Expand Down
4 changes: 2 additions & 2 deletions SHT31_SW.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//
// FILE: SHT31_SW.h
// AUTHOR: Rob Tillaart, Gunter Haug
// VERSION: 0.1.0
// VERSION: 0.1.1
// DATE: 2019-02-08 (base SHT31 lib)
// PURPOSE: Arduino library for the SHT31 temperature and humidity sensor
// to be used with the SoftWire library instead of (hardware) Wire.
Expand All @@ -17,7 +17,7 @@
#include "SHT31.h"


#define SHT31_SW_LIB_VERSION (F("0.1.0"))
#define SHT31_SW_LIB_VERSION (F("0.1.1"))


class SHT31_SW : public SHT31
Expand Down
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SHT31_SW",
"keywords": "SoftWire,I2C,SHT30,SHT35,SHT85",
"keywords": "SoftWire,I2C,SHT30,SHT31,SHT35,SHT85",
"description": "Arduino library for the I2C SHT31 temperature and humidity sensor.",
"authors":
[
Expand All @@ -18,7 +18,7 @@
"type": "git",
"url": "https://github.com/RobTillaart/SHT31_SW"
},
"version": "0.1.0",
"version": "0.1.1",
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=SHT31_SW
version=0.1.0
version=0.1.1
author=Rob Tillaart <rob.tillaart@gmail.com>, Gunter Haug
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
sentence=Arduino library for the I2C SHT31 temperature and humidity sensor
paragraph=SoftWire,I2C,SHT30,SHT35,SHT85
paragraph=SoftWire,I2C,SHT30,SHT31,SHT35,SHT85
category=Sensors
url=https://github.com/RobTillaart/SHT31_SW
architectures=*
Expand Down
4 changes: 3 additions & 1 deletion test/unit_test_001.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,6 @@ unittest(test_async)

unittest_main()

// --------

// -- END OF FILE --

0 comments on commit 643b77b

Please sign in to comment.