Skip to content

Commit 691382b

Browse files
committed
fix(docs): correct and add descriptions
1 parent efee7e2 commit 691382b

File tree

9 files changed

+168
-107
lines changed

9 files changed

+168
-107
lines changed

.gitlab/ci/rules.yml

Lines changed: 141 additions & 92 deletions
Large diffs are not rendered by default.

CHANGELOG.md

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

3+
## v1.0.1 - 2025-02-19
4+
5+
### Bugfixes:
6+
7+
* fix(touch): avoid reading the button state when disabled (#162)
8+
* fix(docs): correct and add descriptions
9+
310
## v1.0.0 - 2025-02-17
411

512
### Breaking changes:

docs/envs/use_with_arduino.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@
4949
- Open Arduino IDE
5050
- Navigate to `File` > `Preferences`
5151
- Add to `Additional boards manager URLs`:
52-
```
53-
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
54-
```
52+
53+
```
54+
https://espressif.github.io/arduino-esp32/package_esp32_index.json
55+
```
56+
5557
- Navigate to `Tools` > `Board` > `Boards Manager`
5658
- Search for `esp32` by `Espressif Systems` and install the required version (see [SDK & Dependencies](#sdk--dependencies))
5759

@@ -65,7 +67,7 @@
6567

6668
1. **Select and Configure Board**
6769

68-
- Navigate to `Tools` > `Board` > `ESP32`
70+
- Navigate to `Tools` > `Board` > `esp32`
6971
- Select your board model. If you can't find a matching model, refer to:
7072

7173
- If using a [supported board](../../README.md#supported-boards), see [Configuring Arduino IDE](#configuring-arduino-ide)
@@ -74,7 +76,7 @@
7476
2. **Open Example**
7577

7678
- Navigate to `File` > `Examples` > `ESP32_Display_Panel`
77-
- Select `Board` > [`board_static_config`](../../examples/arduino/board/board_static_config/)
79+
- Select `Arduino` > `board` > [`board_static_config`](../../examples/arduino/board/board_static_config/)
7880

7981
3. **Modify Code**
8082

docs/envs/use_with_arduino_cn.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@
4949
- 打开 Arduino IDE
5050
- 导航到 `File` > `Preferences`
5151
-`Additional boards manager URLs` 中添加:
52-
```
53-
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
54-
```
52+
53+
```
54+
https://espressif.github.io/arduino-esp32/package_esp32_index.json
55+
```
56+
5557
- 导航到 `Tools` > `Board` > `Boards Manager`
5658
- 搜索 `esp32` by `Espressif Systems` 并安装符合要求的版本(参阅 [SDK 及依赖库](#sdk-及依赖库)
5759

@@ -65,7 +67,7 @@
6567

6668
1. **选择和配置开发板**
6769

68-
- 导航到 `Tools` > `Board` > `ESP32`
70+
- 导航到 `Tools` > `Board` > `esp32`
6971
- 选择您的开发板型号。如果未找到匹配的型号,请参考以下信息:
7072

7173
* 如果您正在使用 [支持的开发板](../../README_CN.md#支持的开发板),可以参阅 [配置 Arduino IDE](#配置-arduino-ide)
@@ -74,7 +76,7 @@
7476
2. **打开示例**
7577

7678
- 导航到 `File` > `Examples` > `ESP32_Display_Panel`
77-
- 选择 `Board` > [`board_static_config`](../../examples/arduino/board/board_static_config/)
79+
- 选择 `Arduino` > `board` > [`board_static_config`](../../examples/arduino/board/board_static_config/)
7880

7981
3. **修改代码**
8082

examples/arduino/drivers/lcd/lcd_single_rgb/lcd_single_rgb.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ using namespace esp_panel::drivers;
1313
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1414
/**
1515
* Currently, the library supports the following RGB (without 3-wire SPI) LCDs:
16-
* - ST7262
1716
* - EK9716B
17+
* - ST7262
1818
*/
1919
#define EXAMPLE_LCD_NAME ST7262
2020
#define EXAMPLE_LCD_WIDTH (800)

examples/platformio/lvgl_v8_port/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This example demonstrates how to port `LVGL v8`. And for `RGB/MIPI-DSI` interfac
1313

1414
- [Optional] `ESP32_Display_Panel`:
1515

16-
- This example already has the [esp_panel_drivers_conf.h](./src/esp_panel_drivers_conf.h) configuration file in the project directory. Edit this file as needed
16+
- This example already has the [esp_panel_board_custom_conf.h](./src/esp_panel_board_custom_conf.h) and [esp_panel_drivers_conf.h](./src/esp_panel_drivers_conf.h) configuration files in the project directory. Edit these files as needed
1717
- see [Board Configuration Guide](../../../docs/envs/use_with_arduino.md#configuration-guide) for more information
1818

1919
- [Optional] `esp-lib-utils` :
@@ -65,6 +65,7 @@ This example demonstrates how to port `LVGL v8`. And for `RGB/MIPI-DSI` interfac
6565

6666
- Modify the [BOARD_CUSTOM.json](./boards/BOARD_CUSTOM.json) board file by referring to a supported board file which has the same chip as your board.
6767
- Modify the `[env:BOARD_CUSTOM]` board env in the *platformio.ini* file as needed
68+
- Modify the *esp_panel_board_custom_conf.h* file and set `ESP_PANEL_BOARD_DEFAULT_USE_CUSTOM` to `1`. Then change other configurations as needed in the file
6869

6970
- See [PlatformIO Docs](https://docs.platformio.org/en/latest/projectconf/index.html) for more information
7071

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.0.0"
1+
version: "1.0.1"
22
description: ESP32_Display_Panel is a display driver and GUI porting library designed by Espressif specifically for ESP series SoCs (ESP32, ESP32-S3, ESP32-P4, etc.)
33
url: https://github.com/esp-arduino-libs/ESP32_Display_Panel
44
repository: https://github.com/esp-arduino-libs/ESP32_Display_Panel.git

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP32_Display_Panel
2-
version=1.0.0
2+
version=1.0.1
33
author=espressif
44
maintainer=espressif
55
sentence=ESP32_Display_Panel is a display driver and GUI porting library designed by Espressif specifically for ESP series SoCs (ESP32, ESP32-S3, ESP32-P4, etc.)

src/esp_panel_versions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/* Library Version */
99
#define ESP_PANEL_VERSION_MAJOR 1
1010
#define ESP_PANEL_VERSION_MINOR 0
11-
#define ESP_PANEL_VERSION_PATCH 0
11+
#define ESP_PANEL_VERSION_PATCH 1
1212

1313
/* File `esp_panel_drivers_conf.h` */
1414
#define ESP_PANEL_DRIVERS_CONF_VERSION_MAJOR 1

0 commit comments

Comments
 (0)