mirror of https://github.com/arendst/Tasmota.git
TasmotaModbus library from v3.5.0 to v3.6.0
TasmotaModbus library from v3.5.0 to v3.6.0 (#16351)
This commit is contained in:
parent
906d725534
commit
c0cb49d2c8
|
@ -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 | - | - / - | - | - | - | - |
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "TasmotaModbus",
|
||||
"version": "3.5.0",
|
||||
"version": "3.6.0",
|
||||
"keywords": [
|
||||
"serial", "io", "TasmotaModbus"
|
||||
],
|
|
@ -1,5 +1,5 @@
|
|||
name=TasmotaModbus
|
||||
version=3.5.0
|
||||
version=3.6.0
|
||||
author=Theo Arends
|
||||
maintainer=Theo Arends <theo@arends.com>
|
||||
sentence=Basic modbus wrapper for TasmotaSerial for ESP8266.
|
Loading…
Reference in New Issue