From ee4497e49a58c8f83e096f912c67ae5e41893cfa Mon Sep 17 00:00:00 2001 From: Rob Tillaart Date: Sat, 21 Sep 2024 12:20:26 +0200 Subject: [PATCH] 0.3.1 SHT31_SW --- libraries/SHT31_SW/CHANGELOG.md | 4 ++++ libraries/SHT31_SW/SHT31_SW.cpp | 2 +- libraries/SHT31_SW/SHT31_SW.h | 4 ++-- libraries/SHT31_SW/keywords.txt | 3 ++- libraries/SHT31_SW/library.json | 7 ++++++- libraries/SHT31_SW/library.properties | 4 ++-- 6 files changed, 17 insertions(+), 7 deletions(-) diff --git a/libraries/SHT31_SW/CHANGELOG.md b/libraries/SHT31_SW/CHANGELOG.md index 82d0698d..1c656f9c 100644 --- a/libraries/SHT31_SW/CHANGELOG.md +++ b/libraries/SHT31_SW/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.1] - 2024-09-21 +- add dependency, fixes part of #14 +- minor edits + ## [0.3.0] - 2024-05-31 - add buffers to SW I2C, see issue #12, should fix the SW I2C on AVR. - verified with SHT31 on AVR UNO diff --git a/libraries/SHT31_SW/SHT31_SW.cpp b/libraries/SHT31_SW/SHT31_SW.cpp index a6799070..fe21e16f 100644 --- a/libraries/SHT31_SW/SHT31_SW.cpp +++ b/libraries/SHT31_SW/SHT31_SW.cpp @@ -1,7 +1,7 @@ // // FILE: SHT31_SW.cpp // AUTHOR: Rob Tillaart, Gunter Haug -// VERSION: 0.3.0 +// VERSION: 0.3.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. diff --git a/libraries/SHT31_SW/SHT31_SW.h b/libraries/SHT31_SW/SHT31_SW.h index 49e68358..536eb727 100644 --- a/libraries/SHT31_SW/SHT31_SW.h +++ b/libraries/SHT31_SW/SHT31_SW.h @@ -2,7 +2,7 @@ // // FILE: SHT31_SW.h // AUTHOR: Rob Tillaart, Gunter Haug -// VERSION: 0.3.0 +// VERSION: 0.3.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. @@ -12,7 +12,7 @@ // https://github.com/RobTillaart/SHT31 -#define SHT31_SW_LIB_VERSION (F("0.3.0")) +#define SHT31_SW_LIB_VERSION (F("0.3.1")) #include "Arduino.h" diff --git a/libraries/SHT31_SW/keywords.txt b/libraries/SHT31_SW/keywords.txt index 080a3194..c0e2a129 100644 --- a/libraries/SHT31_SW/keywords.txt +++ b/libraries/SHT31_SW/keywords.txt @@ -1,5 +1,6 @@ # Syntax Colouring Map For SHT31_SW temperature and humidity sensor - +# +# same as SHT31 # Data types (KEYWORD1) SHT31_SW KEYWORD1 diff --git a/libraries/SHT31_SW/library.json b/libraries/SHT31_SW/library.json index 77ac0128..6fa8c1ec 100644 --- a/libraries/SHT31_SW/library.json +++ b/libraries/SHT31_SW/library.json @@ -29,9 +29,14 @@ "owner": "Steve Marple", "name": "AsyncDelay", "version": "^1.1.2" + }, + { + "owner": "RobTillaart", + "name": "SHT31", + "version": "^0.3.8" } ], - "version": "0.3.0", + "version": "0.3.1", "license": "MIT", "frameworks": "arduino", "platforms": "*", diff --git a/libraries/SHT31_SW/library.properties b/libraries/SHT31_SW/library.properties index 3435e4b3..ea96b4a5 100644 --- a/libraries/SHT31_SW/library.properties +++ b/libraries/SHT31_SW/library.properties @@ -1,5 +1,5 @@ name=SHT31_SW -version=0.3.0 +version=0.3.1 author=Rob Tillaart , Gunter Haug maintainer=Rob Tillaart sentence=Arduino library for the I2C SHT31 temperature and humidity sensor @@ -8,5 +8,5 @@ category=Sensors url=https://github.com/RobTillaart/SHT31_SW architectures=* includes=SHT31_SW.h -depends=SoftWire,AsyncDelay +depends=AsyncDelay,SoftWire,SHT31