mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-15 06:17:47 +00:00
17 lines
280 B
C++
17 lines
280 B
C++
|
|
#include "peMatrixImpl.h"
|
||
|
|
#include "InputBroker.h"
|
||
|
|
|
||
|
|
PeMatrixImpl *peMatrixImpl;
|
||
|
|
|
||
|
|
PeMatrixImpl::PeMatrixImpl() : PeMatrixBase("matrixPE") {}
|
||
|
|
|
||
|
|
void PeMatrixImpl::init()
|
||
|
|
{
|
||
|
|
if (kb_model != 0x12) {
|
||
|
|
disable();
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
inputBroker->registerSource(this);
|
||
|
|
}
|