mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 09:59:01 +00:00

* Adding support for Chatter keypad * Remove user button mapping since full keypad is now useable * Adding TAB key and RIGHT to allow selecting a destination * Fix shift bug (there's only three levels, not four) * reformat file * Fix bug with fast repeated keypresses --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
25 lines
537 B
C++
25 lines
537 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);
|
|
|
|
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;
|
|
}; |