rework wifi Interface around this new concept and patch up some old uses of notifications to follow new paradigm compile out old UI code because notification refactor broke it.
16 lines
No EOL
287 B
C++
16 lines
No EOL
287 B
C++
#include "BasicUI.hpp"
|
|
#include "HardwareSimulator.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();
|
|
}
|
|
} |