mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
29 lines
637 B
C++
29 lines
637 B
C++
#pragma once
|
|
|
|
#include <esp_lcd_types.h>
|
|
#include <lvgl.h>
|
|
#include <Tactility/hal/Display.h>
|
|
|
|
class UnPhoneDisplay : public tt::hal::Display {
|
|
|
|
private:
|
|
|
|
lv_display_t* displayHandle = nullptr;
|
|
uint8_t* buffer = nullptr;
|
|
|
|
public:
|
|
|
|
std::string getName() const final { return "HX8357"; }
|
|
std::string getDescription() const final { return "SPI display"; }
|
|
|
|
bool start() override;
|
|
|
|
bool stop() override;
|
|
|
|
std::shared_ptr<tt::hal::Touch> _Nullable createTouch() override;
|
|
|
|
lv_display_t* _Nullable getLvglDisplay() const override { return displayHandle; }
|
|
};
|
|
|
|
std::shared_ptr<tt::hal::Display> createDisplay();
|