mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
19 lines
277 B
C++
19 lines
277 B
C++
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
|
|
namespace tt::hal {
|
|
|
|
class Display;
|
|
|
|
class Keyboard {
|
|
public:
|
|
virtual bool start(lv_display_t* display) = 0;
|
|
virtual bool stop() = 0;
|
|
virtual bool isAttached() const = 0;
|
|
|
|
virtual lv_indev_t* _Nullable getLvglIndev() = 0;
|
|
};
|
|
|
|
}
|