OMOTE/Platformio/OmoteUI/UIs/UIBase.cpp
MatthewColvin 52cb2e7ce2 Add background color setter in UIElement
Use main to spawn refacoredBasic UI
Start using new screen manager and
screen concepts
2023-09-16 16:44:15 -05:00

11 lines
No EOL
208 B
C++

#include "UIBase.hpp"
using namespace UI;
UIBase::UIBase(std::shared_ptr<HardwareAbstract> aHardware)
: mHardware(aHardware) {}
void UIBase::loopHandler() {
lv_timer_handler();
lv_task_handler();
}