Update predefined kits

This commit is contained in:
C47D 2021-01-06 11:14:00 -06:00
parent 526be77574
commit 75e26f8c86

View file

@ -1,13 +1,13 @@
# lvgl esp32 drivers # lvgl esp32 drivers
# Supported display controllers
**NOTE:** You need to set the display horizontal and vertical size, color depth and **NOTE:** You need to set the display horizontal and vertical size, color depth and
swap of RGB565 color on the LVGL configuration menuconfig (it's not handled automatically). swap of RGB565 color on the LVGL configuration menuconfig (it's not handled automatically).
You can use the rotate member of the `lv_disp_drv_t` type to rotate the screen.
| Display Controller | Type | Interface | Color depth (LV_COLOR_DEPTH) | Swap the 2 bytes of RGB565 color (LV_COLOR_16_SWAP) | # Supported display controllers
|---------------------------------------------|------------|------------------------|------------------------------|-----------------------------------------------------|
| Display Controller | Type | Interface | Color depth (LV_COLOR_DEPTH) | Swap RGB565 color (LV_COLOR_16_SWAP) |
|---------------------------------------------|------------|------------------------|------------------------------|----------------------------------------|
| ILI9341 | TFT | SPI | 16: RGB565 | Yes | | ILI9341 | TFT | SPI | 16: RGB565 | Yes |
| ILI9486 | TFT | SPI | 16: RGB565 | Yes | | ILI9486 | TFT | SPI | 16: RGB565 | Yes |
| ILI9488 | TFT | SPI | 16: RGB565 | No | | ILI9488 | TFT | SPI | 16: RGB565 | No |
@ -36,20 +36,22 @@ adding support to it! [Contribute controller support](CONTRIBUTE_CONTROLLER_SUPP
# Support for predefined development kits # Support for predefined development kits
You can also use the predefined kits, which selects the correct display and input device controllers on the kit, You can also use the predefined kits, which selects the correct display controllers on the kit,
it also sets the pin numbers for the interfaces. and sets the gpio numbers for the interface.
| Kit name | Display controller | Hor. Res. | Ver. Res. | Indev controller | | Kit name | Display controller | Interface | Hor. Res. | Ver. Res. |
|---------------------------|-----------------------|-----------|-----------|-------------------| |---------------------------|-----------------------|-----------|-----------|-----------|
| ESP Wrover Kit v4.1 | | ESP Wrover Kit v4.1 | ILI9341 | SPI | 240 | 320 |
| M5Stack | | M5Stack | ILI9341 | SPI | 240 | 320 |
| M5Stick | | M5Stick | SH1107 | SPI | - | - |
| M5StickC | | M5StickC | ST7735S | SPI | 80 | 160 |
| Adafruit 3.5 Featherwing | | Adafruit 3.5 Featherwing | HX8357 | SPI | 480 | 320 |
| RPi MPI3501 | | RPi MPI3501 | ILI9486 | SPI | - | - |
| Wemos Lolin OLED | | Wemos Lolin OLED | SSD1306 | SPI | 64 | 128 |
| ER-TFT035-6 | | ER-TFT035-6 | ILI9488 | SPI | 480 | 320 |
| AIRcable ATAGv3 | | AIRcable ATAGv3 | IL3820 | SPI | 128 | 296 |
| TTGO T-Display | ST7789 | SPI | 135 | 240 |
| TTGO Camera Plus | ST7789 | SPI | 240 | 240 |
**NOTE:** See [Supported display controllers](#Supported-display-controllers) for more information on display configuration. **NOTE:** See [Supported display controllers](#Supported-display-controllers) for more information on display configuration.
**NOTE:** See [Supported indev controllers](#Supported-indev-controllers) for more information about indev configuration. **NOTE:** See [Supported indev controllers](#Supported-indev-controllers) for more information about indev configuration.