File InputManager.cpp
File List > e-paper-board > src > InputManager.cpp
Go to the documentation of this file.
#include "InputManager.hpp"
#include "Board_TTGO_Tdisplay.hpp"
InputManager::InputManager() {
btnLeft.begin(BUTTON_LEFT);
btnMiddle.begin(BUTTON_MIDDLE);
btnRight.begin(BUTTON_RIGHT);
}
void InputManager::loop() {
btnLeft.loop();
btnMiddle.loop();
btnRight.loop();
}