mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-11 12:27:28 +00:00
* Initial Chatter 2.0 fix for baseUI * trunk fix --------- Co-authored-by: Jason P <applewiz@mac.com>
29 lines
631 B
C++
29 lines
631 B
C++
#pragma once
|
|
|
|
#include "InputBroker.h"
|
|
#include "concurrency/OSThread.h"
|
|
|
|
class SerialKeyboard : public Observable<const InputEvent *>, public concurrency::OSThread
|
|
{
|
|
public:
|
|
explicit SerialKeyboard(const char *name);
|
|
|
|
uint8_t getShift() const { return shift; }
|
|
|
|
protected:
|
|
virtual int32_t runOnce() override;
|
|
void erase();
|
|
|
|
private:
|
|
const char *_originName;
|
|
bool firstTime = 1;
|
|
int prevKeys = 0;
|
|
int keys = 0;
|
|
int shift = 0;
|
|
int keyPressed = 13;
|
|
int lastKeyPressed = 13;
|
|
int quickPress = 0;
|
|
unsigned long lastPressTime = 0;
|
|
};
|
|
|
|
extern SerialKeyboard *globalSerialKeyboard; |