mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-23 21:45:07 +00:00
19 lines
355 B
C++
19 lines
355 B
C++
#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);
|
|
|
|
protected:
|
|
virtual int32_t runOnce() override;
|
|
|
|
private:
|
|
const char *_originName;
|
|
};
|