From 344fdf94f778e51ae7b4ff05bb7b05f3d5b5b758 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:19:59 +0200 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 2 +- RELEASENOTES.md | 1 + tasmota/tasmota_xdrv_driver/xdrv_87_esp32_sonoff_tm1621.ino | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c897b183..c68129c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ All notable changes to this project will be documented in this file. - ESP32 TM1621 number overflow from "9999" to "12E3" (#21131) ### Fixed -- Berry `bytes.resize()` for large sizes +- Berry `bytes.resize()` for large sizes (#21716) ### Removed diff --git a/RELEASENOTES.md b/RELEASENOTES.md index a76fb90bd..b6380efb2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -167,6 +167,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm - Scripter TCP server [#21660](https://github.com/arendst/Tasmota/issues/21660) - ESP32 allow use of UART0 with enabled USB_CDC_CONSOLE [#21496](https://github.com/arendst/Tasmota/issues/21496) - Berry `input()` returns empty string and does not crash [#21565](https://github.com/arendst/Tasmota/issues/21565) +- Berry `bytes.resize()` for large sizes [#21716](https://github.com/arendst/Tasmota/issues/21716) - Matter interverted attributes 0xFFF9 and 0xFFFB [#21636](https://github.com/arendst/Tasmota/issues/21636) - Matter CASE Sigma1 resumption mode for faster reconnection [#21644](https://github.com/arendst/Tasmota/issues/21644) - Matter TLV.U8 unsigned encoding [#21672](https://github.com/arendst/Tasmota/issues/21672) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_87_esp32_sonoff_tm1621.ino b/tasmota/tasmota_xdrv_driver/xdrv_87_esp32_sonoff_tm1621.ino index ae31b78ff..fb326cbe6 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_87_esp32_sonoff_tm1621.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_87_esp32_sonoff_tm1621.ino @@ -9,7 +9,7 @@ #ifdef ESP32 #ifdef USE_DISPLAY_TM1621_SONOFF /*********************************************************************************************\ - * Sonoff POWR3xxD and THR3xxD LCD support + * Sonoff POWR3xxD, POWCT and THR3xxD LCD support * * {"NAME":"Sonoff POWR316D","GPIO":[32,0,0,0,0,576,0,0,0,224,9280,0,3104,0,320,0,0,0,0,0,0,9184,9248,9216,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1} * {"NAME":"Sonoff POWR320D","GPIO":[32,0,9313,0,9312,576,0,0,0,0,9280,0,3104,0,320,0,0,0,0,0,0,9184,9248,9216,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1} @@ -265,7 +265,7 @@ void TM1621SendRows(void) { for (uint32_t i = 0; i < 4; i++) { needle[0] = row[i]; int index = GetCommandCode(command, sizeof(command), (const char*)needle, tm1621_kchar); - if (-1 == index) { index = 11; } + if (-1 == index) { index = 12; } // Off uint32_t bidx = (0 == j) ? i : 7 -i; buffer[bidx] = tm1621_digit_row[j][index]; }