OMOTE/Platformio/OmoteUI/UIs/BasicRefactored/BasicUI.cpp
2023-10-22 20:35:49 +02:00

21 lines
No EOL
587 B
C++

#include "BasicUI.hpp"
#include "HardwareFactory.hpp"
#include "HomeScreen.hpp"
#include "ScreenManager.hpp"
using namespace UI;
BasicUI::BasicUI() : UIBase() {
HardwareFactory::getAbstract().keys()->RegisterKeyPressHandler(
[](auto aKeyEvent) {
return Screen::Manager::getInstance().distributeKeyEvent(aKeyEvent);
// Could potentially add a check here and display that a key event was
// unused.
});
Screen::Manager::getInstance().pushScreen(
std::make_unique<Screen::HomeScreen>());
HardwareFactory::getAbstract().wifi()->begin();
}