Skip to content

Commit 49fd94b

Browse files
martinrogerLzw655
authored andcommitted
fix(board): fixing error on inverted colors (may still need bitshifting in LVGL) @martinroger (#238)
Closes #238
1 parent 4c23160 commit 49fd94b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ChangeLog
22

3-
## v1.0.4 - 2025-07-13
3+
## v1.0.4 - 2025-09-19
44

55
### Enhancements:
66

@@ -10,6 +10,7 @@
1010
### Bugfixes:
1111

1212
* fix(repo): update dependent esp-lib-utils version for Arduino
13+
* fix(board): fixing error on inverted colors (may still need bitshifting in LVGL) @martinroger (#238)
1314

1415
## v1.0.3 - 2025-07-07
1516

src/board/supported/waveshare/BOARD_WAVESHARE_ESP32_S3_TOUCH_LCD_1_85.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
#define ESP_PANEL_BOARD_LCD_COLOR_BITS (ESP_PANEL_LCD_COLOR_BITS_RGB565)
101101
// ESP_PANEL_LCD_COLOR_BITS_RGB565/RGB666/RGB888
102102
#define ESP_PANEL_BOARD_LCD_COLOR_BGR_ORDER (0) // 0: RGB, 1: BGR
103-
#define ESP_PANEL_BOARD_LCD_COLOR_INEVRT_BIT (0) // 0/1
103+
#define ESP_PANEL_BOARD_LCD_COLOR_INEVRT_BIT (1) // 0/1
104104

105105
/**
106106
* @brief LCD transformation configuration

0 commit comments

Comments
 (0)