mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-11 07:01:25 +00:00
16 lines
287 B
C++
16 lines
287 B
C++
|
#include "kbMatrixImpl.h"
|
||
|
#include "InputBroker.h"
|
||
|
|
||
|
KbMatrixImpl *kbMatrixImpl;
|
||
|
|
||
|
KbMatrixImpl::KbMatrixImpl() : KbMatrixBase("matrixKB") {}
|
||
|
|
||
|
void KbMatrixImpl::init()
|
||
|
{
|
||
|
if (!INPUTBROKER_MATRIX_TYPE) {
|
||
|
disable();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
inputBroker->registerSource(this);
|
||
|
}
|