Files
IronOS/source/UI/UI.cpp
2023-06-29 20:26:00 +10:00

8 lines
253 B
C++

#include "UI.h"
#include "OLED.hpp"
void ui_render_screen(screenLayout_t *screen, ScreenContext_t *context) {
// Walk the struct associated to the screen, calling render for each element of the screen
// Then start OLED refresh
OLED::refresh();
}