Skip to content
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

Add drivers configuration file #24

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
31 changes: 31 additions & 0 deletions lv_esp32_drivers_conf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#ifndef LV_ESP32_DRIVERS_CONF_H
#define LV_ESP32_DRIVERS_CONF_H

/* Enable display drivers */
#define LV_DISPLAY_EVE 0
#define LV_DISPLAY_FT81X 0
#define LV_DISPLAY_GC9A01 0
#define LV_DISPLAY_HX8357 0
#define LV_DISPLAY_IL3820 0
#define LV_DISPLAY_ILI9341 0
#define LV_DISPLAY_ILI9481 0
#define LV_DISPLAY_ILI9486 0
#define LV_DISPLAY_ILI9488 0
#define LV_DISPLAY_JD79653A 0
#define LV_DISPLAY_RA8875 0
#define LV_DISPLAY_SH1107 0
#define LV_DISPLAY_SSD1306 0
#define LV_DISPLAY_ST7735S 0
#define LV_DISPLAY_ST7789 0
#define LV_DISPLAY_ST7796S 0
#define LV_DISPLAY_UC8151D 0

/* Enable indev drivers */
#define LV_INDEV_FT81X 0
#define LV_INDEV_ADCRAW 0
#define LV_INDEV_FT6X36 0
#define LV_INDEV_RA8875 0
#define LV_INDEV_STMPE610 0
#define LV_INDEV_XPT2046 0

#endif /* LV_ESP32_DRIVERS_CONF_H */