* LilyGo T-Deck keyboard support * reverse logic * docs and readability * cleanup * optimize driver buffer * cleanup
18 lines
256 B
C
18 lines
256 B
C
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void keyboard_wait_for_response();
|
|
|
|
typedef void* Keyboard;
|
|
|
|
Keyboard keyboard_alloc(_Nullable lv_disp_t* display);
|
|
void keyboard_free(Keyboard keyboard);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |