CrowPanel 2.8"-ESP32 HMI 320x240 Display SPI TFT LCD Touch Screen

I’m just getting familiar with these ESP displays. I uploaded the CYD Bruce firmware to my CrowPanel. The upload was successful, but the touchscreen didn’t work. How can I assign which pins it corresponds to? Is it possible to add firmware for the CrowPanel 2.8" ESP32 HMI 320x240 Display SPI TFT LCD Touch Screen?

i have this Definition in the User_Setup.h file of the TFT_eSPI library:

#define ILI9341_DRIVER // Generic driver for common displays

#define TFT_WIDTH 240
#define TFT_HEIGHT 320

#define TFT_BL 27 // LED back-light control pin

#define TFT_MISO 12
#define TFT_MOSI 13 // In some display driver board, it might be written as “SDA” and so on.
#define TFT_SCLK 14
#define TFT_CS 15 // Chip select control pin
#define TFT_DC 2 // Data Command control pin
#define TFT_RST -1 // Reset pin (could connect to Arduino RESET pin)
#define TFT_BL 27 // LED back-light

#define TOUCH_CS 33 // Chip select pin (T_CS) of touch screen

thanks for not answering. I figured myself.