- Added `tt::hal::Device` and functions (de)register devices and search for them. - Refactored apps: `Power` and `Display` settings apps now use the device API to find devices. - Implemented the new API for all existing drivers for all devices, including the simulator. - Updated HAL Configuration to return `std::shared_ptr` instead of raw pointers. - Added test project for headless tests and implemented tests for the new code.
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <esp_lcd_types.h>
|
|
#include <lvgl.h>
|
|
#include <Tactility/hal/Display.h>
|
|
|
|
extern lv_disp_t* displayHandle;
|
|
|
|
class TdeckDisplay : public tt::hal::Display {
|
|
|
|
private:
|
|
|
|
esp_lcd_panel_io_handle_t ioHandle = nullptr;
|
|
esp_lcd_panel_handle_t panelHandle = nullptr;
|
|
lv_display_t* displayHandle = nullptr;
|
|
bool poweredOn = false;
|
|
|
|
public:
|
|
|
|
std::string getName() const final { return "ST7780"; }
|
|
std::string getDescription() const final { return "SPI display"; }
|
|
|
|
bool start() override;
|
|
|
|
bool stop() override;
|
|
|
|
void setPowerOn(bool turnOn) override;
|
|
bool isPoweredOn() const override { return poweredOn; };
|
|
bool supportsPowerControl() const override { return true; }
|
|
|
|
std::shared_ptr<tt::hal::Touch> _Nullable createTouch() override;
|
|
|
|
void setBacklightDuty(uint8_t backlightDuty) override;
|
|
bool supportsBacklightDuty() const override { return true; }
|
|
|
|
void setGammaCurve(uint8_t index) override;
|
|
uint8_t getGammaCurveCount() const override { return 4; };
|
|
|
|
lv_display_t* _Nullable getLvglDisplay() const override { return displayHandle; }
|
|
|
|
private:
|
|
|
|
static bool startBacklight();
|
|
};
|
|
|
|
std::shared_ptr<tt::hal::Display> createDisplay();
|