Merge branch 'development' into prerelease-15.2.0

This commit is contained in:
Theo Arends 2025-12-11 16:22:49 +01:00
commit fcdb106313
2 changed files with 2 additions and 1 deletions

View File

@ -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) - RGBW handling in TasmotaLED and xlgt_01_ws2812_esp32 (#24172)
- ArtNet single light color mapping using `ChannelRemap` (#24058) - ArtNet single light color mapping using `ChannelRemap` (#24058)
- Thermostat temperature unit (#24213) - Thermostat temperature unit (#24213)
- Display rotate regression from v15.1.0.1 (#24214)
## [15.1.0.2] 20251122 ## [15.1.0.2] 20251122
### Added ### Added

View File

@ -51,7 +51,7 @@ public:
bool updateFrame() override; bool updateFrame() override;
bool displayOnff(int8_t on) override; bool displayOnff(int8_t on) override;
bool invertDisplay(bool invert) 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 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; } bool fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color) override { return false; }