diff --git a/src/input/cardKbI2cImpl.cpp b/src/input/cardKbI2cImpl.cpp index b4adc9038..1a101aee7 100644 --- a/src/input/cardKbI2cImpl.cpp +++ b/src/input/cardKbI2cImpl.cpp @@ -19,9 +19,3 @@ void CardKbI2cImpl::init() DEBUG_MSG("registerSource\n"); inputBroker->registerSource(this); } - -void CardKbI2cImpl::handlePressed() -{ - DEBUG_MSG("handlePressed\n"); - cardKbI2cImpl->PressHandler(); -} diff --git a/src/input/cardKbI2cImpl.h b/src/input/cardKbI2cImpl.h index a13998e59..cd6ee8d47 100644 --- a/src/input/cardKbI2cImpl.h +++ b/src/input/cardKbI2cImpl.h @@ -15,7 +15,6 @@ class CardKbI2cImpl : public: CardKbI2cImpl(); void init(); - static void handlePressed(); }; extern CardKbI2cImpl *cardKbI2cImpl; \ No newline at end of file diff --git a/src/input/facesKbI2cImpl.cpp b/src/input/facesKbI2cImpl.cpp index 348bfcf13..c91350763 100644 --- a/src/input/facesKbI2cImpl.cpp +++ b/src/input/facesKbI2cImpl.cpp @@ -18,8 +18,3 @@ void FacesKbI2cImpl::init() inputBroker->registerSource(this); } - -void FacesKbI2cImpl::handlePressed() -{ - facesKbI2cImpl->PressHandler(); -} diff --git a/src/input/facesKbI2cImpl.h b/src/input/facesKbI2cImpl.h index 5510a5c34..edf73bd05 100644 --- a/src/input/facesKbI2cImpl.h +++ b/src/input/facesKbI2cImpl.h @@ -15,7 +15,6 @@ class FacesKbI2cImpl : public: FacesKbI2cImpl(); void init(); - static void handlePressed(); }; extern FacesKbI2cImpl *facesKbI2cImpl; \ No newline at end of file diff --git a/src/input/kbI2cBase.h b/src/input/kbI2cBase.h index c793811a1..086078cea 100644 --- a/src/input/kbI2cBase.h +++ b/src/input/kbI2cBase.h @@ -9,7 +9,6 @@ class KbI2cBase : { public: explicit KbI2cBase(const char *name); - void PressHandler(); protected: virtual int32_t runOnce() override;