Update changelogs

This commit is contained in:
Theo Arends 2024-07-02 10:19:59 +02:00
parent b6c488a883
commit 344fdf94f7
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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)

View File

@ -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];
}