mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
18 lines
337 B
Plaintext
18 lines
337 B
Plaintext
menu "Example Configuration"
|
|
|
|
choice LCD_TYPE
|
|
prompt "LCD module type"
|
|
default LCD_TYPE_AUTO
|
|
help
|
|
The type of LCD on the evaluation board.
|
|
|
|
config LCD_TYPE_AUTO
|
|
bool "Auto detect"
|
|
config LCD_TYPE_ST7789V
|
|
bool "ST7789V (WROVER Kit v2 or v3)"
|
|
config LCD_TYPE_ILI9341
|
|
bool "ILI9341 (WROVER Kit v1 or DevKitJ v1)"
|
|
endchoice
|
|
|
|
endmenu
|