mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 03:39:56 +00:00
21 lines
332 B
C++
21 lines
332 B
C++
#include "facesKbI2cImpl.h"
|
|
#include "InputBroker.h"
|
|
|
|
FacesKbI2cImpl *facesKbI2cImpl;
|
|
|
|
FacesKbI2cImpl::FacesKbI2cImpl() :
|
|
KbI2cBase("facesKB")
|
|
{
|
|
}
|
|
|
|
void FacesKbI2cImpl::init()
|
|
{
|
|
if (faceskb_found != FACESKB_ADDR)
|
|
{
|
|
// Input device is not detected.
|
|
return;
|
|
}
|
|
|
|
inputBroker->registerSource(this);
|
|
}
|