mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-29 14:10:53 +00:00
14 lines
252 B
C++
14 lines
252 B
C++
|
|
#if ARCH_RASPBERRY_PI
|
||
|
|
#include "LinuxInputImpl.h"
|
||
|
|
#include "InputBroker.h"
|
||
|
|
|
||
|
|
LinuxInputImpl *aLinuxInputImpl;
|
||
|
|
|
||
|
|
LinuxInputImpl::LinuxInputImpl() : LinuxInput("LinuxInput") {}
|
||
|
|
|
||
|
|
void LinuxInputImpl::init()
|
||
|
|
{
|
||
|
|
inputBroker->registerSource(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|