#pragma once #include #include #include #include constexpr auto LCD_SPI_HOST = SPI2_HOST; constexpr auto LCD_PIN_CS = GPIO_NUM_10; constexpr auto LCD_PIN_DC = GPIO_NUM_8; constexpr auto LCD_PIN_RESET = GPIO_NUM_9; constexpr auto LCD_PIN_BACKLIGHT = GPIO_NUM_7; constexpr auto LCD_HORIZONTAL_RESOLUTION = 135; constexpr auto LCD_VERTICAL_RESOLUTION = 240; constexpr auto LCD_BUFFER_HEIGHT = LCD_VERTICAL_RESOLUTION / 3; constexpr auto LCD_BUFFER_SIZE = LCD_HORIZONTAL_RESOLUTION * LCD_BUFFER_HEIGHT; std::shared_ptr createDisplay();