#include "PwmBacklight.h" #include "devices/Display.h" #include "devices/SdCard.h" #include #include using namespace tt::hal; static bool initBoot() { return driver::pwmbacklight::init(GPIO_NUM_27); } static DeviceVector createDevices() { return { createDisplay(), createSdCard() }; } extern const Configuration hardwareConfiguration = { .initBoot = initBoot, .createDevices = createDevices };