mirror of https://github.com/arendst/Tasmota.git
TasmotaModbus library from v3.4.0 to v3.5.0
TasmotaModbus library from v3.4.0 to v3.5.0 (#16245)
This commit is contained in:
parent
8d3bafe01e
commit
6bc0e8dc7b
|
@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased] - Development
|
## [Unreleased] - Development
|
||||||
|
|
||||||
## [12.0.2.4]
|
## [12.0.2.4] 20220818
|
||||||
### Added
|
### Added
|
||||||
- Command ``SetOption45 1..250`` to change default bistable latching relay pulse length of 40 milliseconds
|
- Command ``SetOption45 1..250`` to change default bistable latching relay pulse length of 40 milliseconds
|
||||||
- Support for Modbus bridge adding commands ``ModbusSend``, ``ModbusBaudrate`` and ``ModbusSerialConfig`` (#16013)
|
- Support for Modbus bridge adding commands ``ModbusSend``, ``ModbusBaudrate`` and ``ModbusSerialConfig`` (#16013)
|
||||||
|
@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
|
||||||
### Changed
|
### Changed
|
||||||
- ESP32 LVGL library from v8.2.0 to v8.3.0 (#16019)
|
- ESP32 LVGL library from v8.2.0 to v8.3.0 (#16019)
|
||||||
- Tasmota ESP32 Arduino core from v2.0.4 to v2.0.4.1 (#16110)
|
- Tasmota ESP32 Arduino core from v2.0.4 to v2.0.4.1 (#16110)
|
||||||
|
- TasmotaModbus library from v3.4.0 to v3.5.0 (#16245)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Restore EnergyToday after using command ``restart 2`` and power cycle (#16118)
|
- Restore EnergyToday after using command ``restart 2`` and power cycle (#16118)
|
||||||
|
|
|
@ -129,6 +129,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
||||||
### Breaking Changed
|
### Breaking Changed
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
- TasmotaModbus library from v3.4.0 to v3.5.0 [#16245](https://github.com/arendst/Tasmota/issues/16245)
|
||||||
- ESP32 Arduino core from v2.0.3 to v2.0.4.1 [#15940](https://github.com/arendst/Tasmota/issues/15940)
|
- ESP32 Arduino core from v2.0.3 to v2.0.4.1 [#15940](https://github.com/arendst/Tasmota/issues/15940)
|
||||||
- ESP32 LVGL library from v8.2.0 to v8.3.0 [#16019](https://github.com/arendst/Tasmota/issues/16019)
|
- ESP32 LVGL library from v8.2.0 to v8.3.0 [#16019](https://github.com/arendst/Tasmota/issues/16019)
|
||||||
- Driver DHT v6 consolidation for both ESP8266 and ESP32 to support SI7021, THS01 and MS01 on ESP32 [#15856](https://github.com/arendst/Tasmota/issues/15856)
|
- Driver DHT v6 consolidation for both ESP8266 and ESP32 to support SI7021, THS01 and MS01 on ESP32 [#15856](https://github.com/arendst/Tasmota/issues/15856)
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
# TasmotaSerial
|
|
||||||
|
|
||||||
Implementation of software serial with hardware serial fallback library for the ESP8266
|
|
||||||
|
|
||||||
Allows for several instances to be active at the same time.
|
|
||||||
|
|
||||||
Please note that due to the fact that the ESP always have other activities ongoing, there will be some inexactness in interrupt timings. This may lead to bit errors when having heavy data traffic.
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "TasmotaModbus",
|
"name": "TasmotaModbus",
|
||||||
"version": "3.4.0",
|
"version": "3.5.0",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"serial", "io", "TasmotaModbus"
|
"serial", "io", "TasmotaModbus"
|
||||||
],
|
],
|
||||||
"description": "Basic modbus wrapper for TasmotaSerial for ESP8266.",
|
"description": "Modbus wrapper for TasmotaSerial.",
|
||||||
"repository":
|
"repository":
|
||||||
{
|
{
|
||||||
"type": "git",
|
"type": "git",
|
|
@ -1,5 +1,5 @@
|
||||||
name=TasmotaModbus
|
name=TasmotaModbus
|
||||||
version=3.4.0
|
version=3.5.0
|
||||||
author=Theo Arends
|
author=Theo Arends
|
||||||
maintainer=Theo Arends <theo@arends.com>
|
maintainer=Theo Arends <theo@arends.com>
|
||||||
sentence=Basic modbus wrapper for TasmotaSerial for ESP8266.
|
sentence=Basic modbus wrapper for TasmotaSerial for ESP8266.
|
Loading…
Reference in New Issue