Adafruit display (#3179)

* Use uint8_t instead of char in icon_bits

* Add Adafruit PiTFT support
This commit is contained in:
Jonathan Bennett
2024-02-08 16:29:15 -06:00
committed by GitHub
parent 996e72a816
commit 3b0169ba7a
6 changed files with 25 additions and 5 deletions

View File

@@ -35,8 +35,8 @@ enum configNames {
keyboardDevice,
logoutputlevel
};
enum { no_screen, st7789, st7735, st7735s };
enum { no_touchscreen, xpt2046 };
enum { no_screen, st7789, st7735, st7735s, ili9341 };
enum { no_touchscreen, xpt2046, stmpe610 };
enum { level_error, level_warn, level_info, level_debug };
extern std::map<configNames, int> settingsMap;