mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-23 03:00:56 +00:00
13 lines
264 B
C
13 lines
264 B
C
|
|
#include "TCA8418KeyboardBase.h"
|
||
|
|
|
||
|
|
class TLoraPagerKeyboard : public TCA8418KeyboardBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
TLoraPagerKeyboard();
|
||
|
|
void setBacklight(bool on) override{};
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void pressed(uint8_t key) override{};
|
||
|
|
void released(void) override{};
|
||
|
|
};
|