#include "TpagerDisplay.h" #include "TpagerDisplayConstants.h" #include #include #include #define TAG "tdeck_display" std::shared_ptr createDisplay() { /*auto configuration = std::make_unique( TDECK_LCD_SPI_HOST, TDECK_LCD_PIN_CS, TDECK_LCD_PIN_DC, 480, 222, nullptr, true, //swapXY true, //mirrorX true, //mirrorY true //invertColor );*/ auto configuration = std::make_unique( TDECK_LCD_SPI_HOST, TDECK_LCD_PIN_CS, TDECK_LCD_PIN_DC, 480, // w 222, // h nullptr, true, //swapXY true, //mirrorX true, //mirrorY true //invertColor ); configuration->backlightDutyFunction = driver::pwmbacklight::setBacklightDuty; return std::make_shared(std::move(configuration)); }