-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from suda-morris/feature/ili9881c_driver
feat(lcd): add ili9881c driver (BSP-431)
- Loading branch information
Showing
8 changed files
with
758 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
idf_component_register(SRCS "esp_lcd_ili9881c.c" | ||
INCLUDE_DIRS "include" | ||
REQUIRES "esp_lcd" | ||
PRIV_REQUIRES "esp_driver_gpio") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# ESP LCD ILI9881C | ||
|
||
[![Component Registry](https://components.espressif.com/components/espressif/esp_lcd_ili9881c/badge.svg)](https://components.espressif.com/components/espressif/esp_lcd_ili9881c) | ||
|
||
Implementation of the ILI9881C LCD controller with esp_lcd component. | ||
|
||
| LCD controller | Communication interface | Component name | Link to datasheet | | ||
| :------------: | :---------------------: | :------------: | :---------------: | | ||
| ILI9881C | MIPI DSI | esp_lcd_ili9881c | [Specification](https://www.internetsomething.com/lcd/ILI9881C-3lane-mipi-gramless.pdf) | | ||
|
||
## Add to project | ||
|
||
Packages from this repository are uploaded to [Espressif's component service](https://components.espressif.com/). | ||
You can add them to your project via `idf.py add-dependency`, e.g. | ||
|
||
```text | ||
idf.py add-dependency esp_lcd_ili9881c | ||
``` | ||
|
||
Alternatively, you can create `idf_component.yml`. More is in [Espressif's documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-component-manager.html). | ||
|
Oops, something went wrong.