Add CardKB, FACES and RAK14004 support to inputbroker/cannedmessages

This commit is contained in:
Thomas Göttgens
2022-03-28 16:55:58 +02:00
parent a48cc202a7
commit f119e294af
11 changed files with 193 additions and 1 deletions

19
src/input/kbI2cBase.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include "SinglePortModule.h" // TODO: what header file to include?
#include "InputBroker.h"
class KbI2cBase :
public Observable<const InputEvent *>,
private concurrency::OSThread
{
public:
explicit KbI2cBase(const char *name);
void PressHandler();
protected:
virtual int32_t runOnce() override;
private:
const char *_originName;
};