Skip to content

Commit 189d10b

Browse files
committed
feat: add i2c_bus support for sensor AHT20 and At581X
1 parent 19e72db commit 189d10b

File tree

29 files changed

+215
-197
lines changed

29 files changed

+215
-197
lines changed

components/display/lcd/esp_lcd_axs15231b/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "1.0.1"
22
description: ESP LCD & Touch AXS15231B
3-
url: https://github.com/espressif/esp-bsp/tree/master/components/lcd/esp_lcd_axs15231b
3+
url: https://github.com/espressif/esp-iot-solution/tree/master/components/display/lcd/esp_lcd_axs15231b
44
issues: https://github.com/espressif/esp-iot-solution/issues
55
repository: https://github.com/espressif/esp-iot-solution.git
66
dependencies:

components/display/tools/esp_lv_decoder/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## v0.1.2~1 (2025-08-13)
4+
5+
* Support all target.
6+
37
## v0.1.2 (2024-10-18)
48

59
* Added support for parsing split PNG images from the filesystem.

components/display/tools/esp_lv_decoder/idf_component.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
version: "0.1.2"
2-
targets:
3-
- esp32
4-
- esp32s2
5-
- esp32s3
6-
- esp32p4
7-
- esp32c2
8-
- esp32c3
9-
- esp32c5
10-
- esp32c6
1+
version: "0.1.2~1"
112
description: Decoding images in LVGL for multiple formats (PNG, SPNG, JPG, SJPG, QOI, SQOI) using optimized libraries for fast and efficient rendering.
123
url: https://github.com/espressif/esp-iot-solution/tree/master/components/display/tools/esp_lv_decoder
134
issues: https://github.com/espressif/esp-iot-solution/issues

components/display/tools/esp_lv_decoder/test_apps/main/test_esp_lv_decoder.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ TEST_CASE("Validate decoder functionality in LVGL", "[decoder][File qoi]")
264264
}
265265

266266
// Some resources are lazy allocated in the LCD driver, the threadhold is left for that case
267-
#define TEST_MEMORY_LEAK_THRESHOLD (500)
267+
#define TEST_MEMORY_LEAK_THRESHOLD (600)
268268

269269
static size_t before_free_8bit;
270270
static size_t before_free_32bit;

components/display/tools/esp_lv_fs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## v1.0.0~1 (2025-08-13)
4+
5+
* Support all target.
6+
37
## v1.0.0 Initial Version (2024-11-7)
48

59
* Add v9 support.

components/display/tools/esp_lv_fs/idf_component.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
version: "1.0.0"
2-
targets:
3-
- esp32
4-
- esp32c2
5-
- esp32c3
6-
- esp32c6
7-
- esp32h2
8-
- esp32s2
9-
- esp32s3
10-
- esp32p4
1+
version: "1.0.0~1"
112
description: File system for LVGL, supports reading files directly from flash.
123
url: https://github.com/espressif/esp-iot-solution/tree/master/components/display/tools/esp_lv_fs
134
issues: https://github.com/espressif/esp-iot-solution/issues

components/display/tools/esp_lv_fs/test_apps/main/test_esp_lv_fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ TEST_CASE("Validate filesystem functionality in LVGL", "[filesystem][file read]"
155155
}
156156

157157
// Some resources are lazy allocated in the LCD driver, the threadhold is left for that case
158-
#define TEST_MEMORY_LEAK_THRESHOLD (500)
158+
#define TEST_MEMORY_LEAK_THRESHOLD (600)
159159

160160
static size_t before_free_8bit;
161161
static size_t before_free_32bit;

components/display/tools/esp_mmap_assets/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## v1.3.1~2 (2025-08-13)
4+
5+
* Support all target.
6+
37
## v1.3.1~1 (2025-05-30)
48

59
* Add IMPORT_INC_PATH support.

components/display/tools/esp_mmap_assets/idf_component.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
version: 1.3.1~1
2-
targets:
3-
- esp32
4-
- esp32c2
5-
- esp32c3
6-
- esp32c6
7-
- esp32h2
8-
- esp32s2
9-
- esp32s3
10-
- esp32p4
1+
version: 1.3.1~2
112
dependencies:
123
cmake_utilities:
134
version: 0.*

components/sensors/humiture/aht20/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

3+
## v2.0.0 (2025-08-08)
4+
5+
* add i2c bus support
6+
37
## v1.0.1 (2025-07-23)
48

59
* Update the version of dependent cmake_utilities to *

0 commit comments

Comments
 (0)