diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c99802e3..2367bc9a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,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) ## [15.1.0.2] 20251122 ### Added 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; }