mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-16 07:42:37 +00:00
* Refactor display handling add Raspbian TFT display * Add missed change * Add static casts * Add missed TFT refactor for RAK14014 * Add missed GPIO configuration * Adds Native keyboard input option * Get the ifdefs right * CannedMessage send via queue, not run immediately. * Fixup systemd service file * Add display blanking for Raspberry Pi * Add a couple missed key definitions --------- Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
21 lines
614 B
C++
21 lines
614 B
C++
#ifdef ARCH_RASPBERRY_PI
|
|
#pragma once
|
|
#include "LinuxInput.h"
|
|
#include "main.h"
|
|
|
|
/**
|
|
* @brief The idea behind this class to have static methods for the event handlers.
|
|
* Check attachInterrupt() at RotaryEncoderInteruptBase.cpp
|
|
* Technically you can have as many rotary encoders hardver attached
|
|
* to your device as you wish, but you always need to have separate event
|
|
* handlers, thus you need to have a RotaryEncoderInterrupt implementation.
|
|
*/
|
|
|
|
class LinuxInputImpl : public LinuxInput
|
|
{
|
|
public:
|
|
LinuxInputImpl();
|
|
void init();
|
|
};
|
|
extern LinuxInputImpl *aLinuxInputImpl;
|
|
#endif |