OMOTE/Platformio/src/simMain.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

17 lines
No EOL
310 B
C++

#include "BasicUI.hpp"
#include "HardwareSimulator.hpp"
#include "OmoteUI.hpp"
#include "omoteconfig.h"
#include <memory>
int main() {
auto hwSim = std::make_shared<HardwareSimulator>();
hwSim->init();
auto ui = UI::BasicUI(hwSim);
// ui->layout_UI();
while (true) {
ui.loopHandler();
}
}