docs(lcd): fix the wrong hyperlink in readme

Closes https://github.com/espressif/esp-idf/issues/16389
This commit is contained in:
Chen Jichang
2025-07-07 12:02:08 +08:00
parent 08b75523cb
commit 57cbcf388e
3 changed files with 3 additions and 2 deletions

View File

@@ -31,6 +31,7 @@ api-reference/peripherals/adc_oneshot /api-reference/peripherals/adc/adc_one
api-reference/peripherals/adc_continuous api-reference/peripherals/adc/adc_continuous
api-reference/peripherals/adc_calibration api-reference/peripherals/adc/adc_calibration
api-reference/peripherals/adc api-reference/peripherals/adc/index
api-reference/peripherals/lcd api-reference/peripherals/lcd/index
get-started/idf-monitor api-guides/tools/idf-monitor

View File

@@ -3,7 +3,7 @@
# I2C OLED example
[esp_lcd](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/lcd.html) supports I2C interfaced OLED LCD, whose color depth is usually 1bpp.
[esp_lcd](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/lcd/i2c_lcd.html) supports I2C interfaced OLED LCD, whose color depth is usually 1bpp.
This example shows how to make use of the SSD1306 panel driver from `esp_lcd` component to facilitate the porting of LVGL library. In the end, example will display a scrolling text on the OLED screen. For more information about porting the LVGL library, you can also refer to another [lvgl porting example](../i80_controller/README.md).

View File

@@ -3,7 +3,7 @@
# SPI LCD and Touch Panel Example
[esp_lcd](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/lcd.html) provides several panel drivers out-of box, e.g. ST7789, SSD1306, NT35510. However, there're a lot of other panels on the market, it's beyond `esp_lcd` component's responsibility to include them all.
[esp_lcd](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/peripherals/lcd/spi_lcd.html) provides several panel drivers out-of box, e.g. ST7789, SSD1306, NT35510. However, there're a lot of other panels on the market, it's beyond `esp_lcd` component's responsibility to include them all.
`esp_lcd` allows user to add their own panel drivers in the project scope (i.e. panel driver can live outside of esp-idf), so that the upper layer code like LVGL porting code can be reused without any modifications, as long as user-implemented panel driver follows the interface defined in the `esp_lcd` component.