From c0cb49d2c85eda16702f59adafa1f14cfcc6d534 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sat, 27 Aug 2022 11:31:29 +0200 Subject: [PATCH] TasmotaModbus library from v3.5.0 to v3.6.0 TasmotaModbus library from v3.5.0 to v3.6.0 (#16351) --- BUILDS.md | 1 + CHANGELOG.md | 2 ++ RELEASENOTES.md | 4 +++- .../examples/modbustest/modbustest.ino | 0 .../{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/keywords.txt | 0 .../{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/library.json | 2 +- .../library.properties | 2 +- .../src/TasmotaModbus.cpp | 0 .../src/TasmotaModbus.h | 0 9 files changed, 8 insertions(+), 3 deletions(-) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/examples/modbustest/modbustest.ino (100%) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/keywords.txt (100%) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/library.json (93%) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/library.properties (93%) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/src/TasmotaModbus.cpp (100%) rename lib/lib_basic/{TasmotaModbus-3.5.0 => TasmotaModbus-3.6.0}/src/TasmotaModbus.h (100%) diff --git a/BUILDS.md b/BUILDS.md index 09c7fde0c..0850b2a2f 100644 --- a/BUILDS.md +++ b/BUILDS.md @@ -115,6 +115,7 @@ Note: `minimal` variant is not listed as it shouldn't be used outside of the [up | USE_TSL2591 | - | - / - | - | - | - | - | | USE_MGS | - | - / x | - | x | - | - | | USE_SGP30 | - | - / x | - | x | - | - | +| USE_SGP40 | - | - / x | - | x | - | - | | USE_SI1145 | - | - / - | - | - | - | - | | USE_LM75AD | - | - / x | - | x | - | - | | USE_APDS9960 | - | - / - | - | - | - | - | diff --git a/CHANGELOG.md b/CHANGELOG.md index f02dccbdb..904a830d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,10 @@ All notable changes to this project will be documented in this file. ## [12.1.1.1] ### Added +- Add support for SGP40 gas and air quality sensor (#16341) ### Changed +- TasmotaModbus library from v3.5.0 to v3.6.0 (#16351) - Button debouncing V3 by adopting switch debounce code (#16339) ### Fixed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5a4332d7d..986415ce2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -109,7 +109,8 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo ## Changelog v12.1.1.1 ### Added -- Command ``StatusRetain`` (#11109) +- Command ``StatusRetain`` [#11109](https://github.com/arendst/Tasmota/issues/11109) +- Add support for SGP40 gas and air quality sensor [#16341](https://github.com/arendst/Tasmota/issues/16341) - Zigbee device plugin mechanism with commands ``ZbLoad``, ``ZbUnload`` and ``ZbLoadDump`` [#16252](https://github.com/arendst/Tasmota/issues/16252) - ESP32-S3 support for internal temperature sensor @@ -117,6 +118,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo ### Changed - ESP32 NimBLE library from v1.3.6 to v1.4.0 +- TasmotaModbus library from v3.5.0 to v3.6.0 [#16351](https://github.com/arendst/Tasmota/issues/16351) - Button debouncing V3 by adopting switch debounce code [#16339](https://github.com/arendst/Tasmota/issues/16339) ### Fixed diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/examples/modbustest/modbustest.ino b/lib/lib_basic/TasmotaModbus-3.6.0/examples/modbustest/modbustest.ino similarity index 100% rename from lib/lib_basic/TasmotaModbus-3.5.0/examples/modbustest/modbustest.ino rename to lib/lib_basic/TasmotaModbus-3.6.0/examples/modbustest/modbustest.ino diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/keywords.txt b/lib/lib_basic/TasmotaModbus-3.6.0/keywords.txt similarity index 100% rename from lib/lib_basic/TasmotaModbus-3.5.0/keywords.txt rename to lib/lib_basic/TasmotaModbus-3.6.0/keywords.txt diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/library.json b/lib/lib_basic/TasmotaModbus-3.6.0/library.json similarity index 93% rename from lib/lib_basic/TasmotaModbus-3.5.0/library.json rename to lib/lib_basic/TasmotaModbus-3.6.0/library.json index 717fcb75f..a8d88e550 100644 --- a/lib/lib_basic/TasmotaModbus-3.5.0/library.json +++ b/lib/lib_basic/TasmotaModbus-3.6.0/library.json @@ -1,6 +1,6 @@ { "name": "TasmotaModbus", - "version": "3.5.0", + "version": "3.6.0", "keywords": [ "serial", "io", "TasmotaModbus" ], diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/library.properties b/lib/lib_basic/TasmotaModbus-3.6.0/library.properties similarity index 93% rename from lib/lib_basic/TasmotaModbus-3.5.0/library.properties rename to lib/lib_basic/TasmotaModbus-3.6.0/library.properties index f6e583e03..feab66c7d 100644 --- a/lib/lib_basic/TasmotaModbus-3.5.0/library.properties +++ b/lib/lib_basic/TasmotaModbus-3.6.0/library.properties @@ -1,5 +1,5 @@ name=TasmotaModbus -version=3.5.0 +version=3.6.0 author=Theo Arends maintainer=Theo Arends sentence=Basic modbus wrapper for TasmotaSerial for ESP8266. diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/src/TasmotaModbus.cpp b/lib/lib_basic/TasmotaModbus-3.6.0/src/TasmotaModbus.cpp similarity index 100% rename from lib/lib_basic/TasmotaModbus-3.5.0/src/TasmotaModbus.cpp rename to lib/lib_basic/TasmotaModbus-3.6.0/src/TasmotaModbus.cpp diff --git a/lib/lib_basic/TasmotaModbus-3.5.0/src/TasmotaModbus.h b/lib/lib_basic/TasmotaModbus-3.6.0/src/TasmotaModbus.h similarity index 100% rename from lib/lib_basic/TasmotaModbus-3.5.0/src/TasmotaModbus.h rename to lib/lib_basic/TasmotaModbus-3.6.0/src/TasmotaModbus.h