acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

Setup204_ESP32_TouchDown.h (621B)

      1 // User Setup for the ESP32 TouchDown V1.0 and V1.1
      2 // ILI9488 using 4-wire SPI and using an FT6206 touch controller
      3 
      4 #define USER_SETUP_ID 204
      5 
      6 #define ILI9488_DRIVER
      7 
      8 #define TFT_BL   32
      9 #define TFT_BACKLIGHT_ON HIGH
     10 
     11 #define TFT_MISO 19
     12 #define TFT_MOSI 23
     13 #define TFT_SCLK 18
     14 #define TFT_CS   15
     15 #define TFT_DC    2
     16 #define TFT_RST   4
     17 
     18 #define TOUCH_CS 21
     19 
     20 #define LOAD_GLCD
     21 #define LOAD_FONT2
     22 #define LOAD_FONT4
     23 #define LOAD_FONT6
     24 #define LOAD_FONT7
     25 #define LOAD_FONT8
     26 #define LOAD_GFXFF
     27 
     28 #define SMOOTH_FONT
     29 
     30 #define SPI_FREQUENCY  27000000
     31 #define SPI_READ_FREQUENCY  20000000
     32 #define SPI_TOUCH_FREQUENCY  2500000