From 0f2b3b189880dc6ff9474c0abb6874b39611196d Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 25 Oct 2024 17:27:39 +0200 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 2 ++ RELEASENOTES.md | 2 ++ tasmota/include/tasmota_types.h | 2 +- tools/decode-status.py | 5 +++-- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0337f1a19..e93f5843b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ All notable changes to this project will be documented in this file. - Support for Shelly DALI Dimmer Gen3 (See tips and template in file xdrv_75_dali.ino) - HASPmota `haspmota.get_pages()` to get the sorted list of pages (#22358) - Support for US AQI and EPA AQI in PMS5003x sensors (#22294) +- HLK-LD2410 Engineering mode (#21880) +- Support for HLK-LD2410S 24GHz smart wave motion sensor (#22253) ### Breaking Changed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5562fe537..d50581802 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -122,7 +122,9 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - DALI command `DaliTarget` to set light control broadcast, group number or gear number - DALI inverted signal configuration using GPIO DALI RX_i/TX_i - Support for Shelly DALI Dimmer Gen3 (See tips and template in file xdrv_75_dali.ino) +- Support for HLK-LD2410S 24GHz smart wave motion sensor [#22253](https://github.com/arendst/Tasmota/issues/22253) - Support for US AQI and EPA AQI in PMS5003x sensors [#22294](https://github.com/arendst/Tasmota/issues/22294) +- HLK-LD2410 Engineering mode [#21880](https://github.com/arendst/Tasmota/issues/21880) - Mitsubishi Electric HVAC Operation time for MiElHVAC [#22334](https://github.com/arendst/Tasmota/issues/22334) - Mitsubishi Electric HVAC Outdoor Temperature for MiElHVAC [#22345](https://github.com/arendst/Tasmota/issues/22345) - Mitsubishi Electric HVAC Compressor Frequency for MiElHVAC [#22347](https://github.com/arendst/Tasmota/issues/22347) diff --git a/tasmota/include/tasmota_types.h b/tasmota/include/tasmota_types.h index 3ad75c19a..a7a6dabc1 100644 --- a/tasmota/include/tasmota_types.h +++ b/tasmota/include/tasmota_types.h @@ -194,7 +194,7 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu uint32_t neopool_outputsensitive : 1; // bit 11 (v13.2.0.1) - SetOption157 - (NeoPool) Output sensitive data (1) uint32_t mqtt_disable_modbus : 1; // bit 12 (v13.3.0.5) - SetOption158 - (MQTT) Disable publish ModbusReceived MQTT messages (1), you must use event trigger rules instead uint32_t counter_both_edges : 1; // bit 13 (v13.3.0.5) - SetOption159 - (Counter) Enable counting on both rising and falling edge (1) - uint32_t ld2410_use_pin : 1; // bit 14 (development) - SetOption160 - (LD2410) Disable generate moving event by sensor report - use LD2410 out pin for events (1) + uint32_t ld2410_use_pin : 1; // bit 14 (v14.3.0.2) - SetOption160 - (LD2410) Disable generate moving event by sensor report - use LD2410 out pin for events (1) uint32_t spare15 : 1; // bit 15 uint32_t spare16 : 1; // bit 16 uint32_t spare17 : 1; // bit 17 diff --git a/tools/decode-status.py b/tools/decode-status.py index 5c99b1a9b..87d71125b 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -215,7 +215,8 @@ a_setoption = [[ "(NeoPool) Output sensitive data (1)", "(MQTT) Disable publish ModbusReceived MQTT messages (1), you must use event trigger rules instead", "(Counter) Enable counting on both rising and falling edge (1)", - "","", + "(LD2410) Disable generate moving event by sensor report - use LD2410 out pin for events (1)", + "", "","","","", "","","","", "","","","", @@ -339,7 +340,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v14.2.0.4 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v14.3.0.2 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))