From b276479b29df41e3f2f120341983ca0eced9f5eb Mon Sep 17 00:00:00 2001 From: Christian Baars Date: Thu, 11 Dec 2025 16:13:56 +0100 Subject: [PATCH 1/2] fix displayrotate for i2c (#24214) Co-authored-by: Christian Baars --- lib/lib_display/UDisplay/include/uDisplay_I2C_panel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lib_display/UDisplay/include/uDisplay_I2C_panel.h b/lib/lib_display/UDisplay/include/uDisplay_I2C_panel.h index 4c5d94655..2903cd69f 100644 --- a/lib/lib_display/UDisplay/include/uDisplay_I2C_panel.h +++ b/lib/lib_display/UDisplay/include/uDisplay_I2C_panel.h @@ -51,7 +51,7 @@ public: bool updateFrame() override; bool displayOnff(int8_t on) override; bool invertDisplay(bool invert) override; - bool setRotation(uint8_t rotation) override { return true; } + bool setRotation(uint8_t rotation) override { return false; } bool drawPixel(int16_t x, int16_t y, uint16_t color) override { return false; } bool fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) override { return false; } From a0b99815c9693038e8a1a0fe92d5f1c3c58bbd40 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 11 Dec 2025 16:22:27 +0100 Subject: [PATCH 2/2] update change log --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfcd6decd..b4150ea81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file. - RGBW handling in TasmotaLED and xlgt_01_ws2812_esp32 (#24172) - ArtNet single light color mapping using `ChannelRemap` (#24058) - Thermostat temperature unit (#24213) +- Display rotate regression from v15.1.0.1 (#24214) ### Removed