Skip to content

fix(docs): fix broken links in 'Panel Test Example' README #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## v0.1.2 - 2024-05-17

### Bugfixes:

* fix(docs): fix broken links in 'Panel Test Example' README by @lboue (#27)

## v0.1.1 - 2024-05-16

### Enhancements:
Expand Down
2 changes: 2 additions & 0 deletions ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
2 changes: 2 additions & 0 deletions examples/LVGL/v8/Porting/ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
2 changes: 2 additions & 0 deletions examples/LVGL/v8/Rotation/ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
2 changes: 2 additions & 0 deletions examples/Panel/PanelTest/ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
6 changes: 3 additions & 3 deletions examples/Panel/PanelTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ The example demonstrates how to develop built-in or custom development boards us
Follow the steps below to configure:

1. [Configure drivers](../../../README.md#configuring-drivers) if needed.
2. If using a supported development board, follow the [steps](../../../../README.md#using-supported-development-boards) to configure it.
3. If using a custom board, follow the [steps](../../../../README.md#using-custom-development-boards) to configure it.
4. Navigate to the `Tools` menu in the Arduino IDE to choose a ESP board and configure its parameters, please refter to [Configuring Supported Development Boards](../../../../README.md#configuring-supported-development-boards)
2. If using a supported development board, follow the [steps](../../../README.md#using-supported-development-boards) to configure it.
3. If using a custom board, follow the [steps](../../../README.md#using-custom-development-boards) to configure it.
4. Navigate to the `Tools` menu in the Arduino IDE to choose a ESP board and configure its parameters, please refter to [Configuring Supported Development Boards](../../../README.md#configuring-supported-development-boards)
5. Verify and upload the example to your ESP board.

## Serial Output
Expand Down
2 changes: 2 additions & 0 deletions examples/SquareLine/v8/Porting/ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
2 changes: 2 additions & 0 deletions examples/SquareLine/v8/WiFiClock/ESP_Panel_Board_Custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
/**
* If set to 1, the bus will skip to initialize the corresponding host. Users need to initialize the host in advance.
* It is useful if other devices use the same host. Please ensure that the host is initialized only once.
*
* Set to 1 if only the RGB interface is used without the 3-wire SPI interface,
*/
#define ESP_PANEL_LCD_BUS_SKIP_INIT_HOST (0) // 0/1
/**
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=ESP32_Display_Panel
version=0.1.1
version=0.1.2
author=espressif
maintainer=espressif
sentence=ESP32_Display_Panel is an Arduino library designed for ESP SoCs to drive display panels and facilitate rapid GUI development.
Expand Down
Loading