Change Sensirion_Core library from v0.7.2 to arduino-core v0.7.3

This commit is contained in:
Theo Arends
2026-06-05 16:42:08 +02:00
parent d4cf5df63f
commit cd38f60218
30 changed files with 10 additions and 2 deletions
+1
View File
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
### Breaking Changed ### Breaking Changed
### Changed ### Changed
- Sensirion_Core library from v0.7.2 to arduino-core v0.7.3
- SCD30 library FrogmoreScd30 to Sensirion arduino-i2c-scd30 v1.1.1 - SCD30 library FrogmoreScd30 to Sensirion arduino-i2c-scd30 v1.1.1
- SCD4x library FrogmoreScd40 to Sensirion arduino-i2c-scd4x v1.1.0 - SCD4x library FrogmoreScd40 to Sensirion arduino-i2c-scd4x v1.1.0
- SPS30 library Sensirion arduino-i2c-sps30 v1.0.1 - SPS30 library Sensirion arduino-i2c-sps30 v1.0.1
+1
View File
@@ -135,6 +135,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
### Changed ### Changed
- ESP32 Platform from 2025.04.30 to 2026.05.50, Framework (Arduino Core) from v3.1.11 to v3.3.8.260506 and IDF from v5.3.4.260127 to v5.5.4.260407 [#24718](https://github.com/arendst/Tasmota/issues/24718) - ESP32 Platform from 2025.04.30 to 2026.05.50, Framework (Arduino Core) from v3.1.11 to v3.3.8.260506 and IDF from v5.3.4.260127 to v5.5.4.260407 [#24718](https://github.com/arendst/Tasmota/issues/24718)
- Sensirion_Core library from v0.7.2 to arduino-core v0.7.3
- SCD30 library FrogmoreScd30 to Sensirion arduino-i2c-scd30 v1.1.1 - SCD30 library FrogmoreScd30 to Sensirion arduino-i2c-scd30 v1.1.1
- SCD4x library FrogmoreScd40 to Sensirion arduino-i2c-scd4x v1.1.0 - SCD4x library FrogmoreScd40 to Sensirion arduino-i2c-scd4x v1.1.0
- SPS30 library Sensirion arduino-i2c-sps30 v1.0.1 - SPS30 library Sensirion arduino-i2c-sps30 v1.0.1
@@ -9,6 +9,12 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
`Unreleased`_ `Unreleased`_
------------- -------------
`0.7.3`_ 2026-02-11
-------------------
- Fix bug in ``SensirionShdlcTxFrame::begin`` that caused communication timeouts.
`0.7.2`_ 2025-11-04 `0.7.2`_ 2025-11-04
------------------- -------------------
@@ -1,5 +1,5 @@
name=Sensirion Core name=Sensirion Core
version=0.7.2 version=0.7.3
author=Sensirion author=Sensirion
maintainer=Sensirion maintainer=Sensirion
sentence=Library containing code base for Sensirion Sensor Libraries. sentence=Library containing code base for Sensirion Sensor Libraries.
@@ -39,7 +39,7 @@
uint16_t SensirionShdlcTxFrame::begin(uint8_t command, uint8_t address, uint16_t SensirionShdlcTxFrame::begin(uint8_t command, uint8_t address,
uint8_t dataLength) { uint8_t dataLength) {
_index = 0; // sets the index to point towards the start of the buffer. _index = 0; // sets the index to point towards the start of the buffer.
_buffer[_index] = 0x7e; _buffer[_index++] = 0x7e;
uint16_t error = addUInt8(address); uint16_t error = addUInt8(address);
error |= addUInt8(command); error |= addUInt8(command);
error |= addUInt8(dataLength); error |= addUInt8(dataLength);