firmware/src/input/kbMatrixImpl.cpp

16 lines
287 B
C++
Raw Normal View History

2023-08-07 17:34:42 +00:00
#include "kbMatrixImpl.h"
#include "InputBroker.h"
KbMatrixImpl *kbMatrixImpl;
KbMatrixImpl::KbMatrixImpl() : KbMatrixBase("matrixKB") {}
void KbMatrixImpl::init()
{
if (!INPUTBROKER_MATRIX_TYPE) {
disable();
return;
}
inputBroker->registerSource(this);
}