1
0
forked from me/IronOS
Files
2023-07-28 19:58:46 +10:00

9 lines
241 B
C++

#include "Buttons.hpp"
#include "OperatingModeUtilities.h"
void warnUser(const char *warning, const TickType_t timeout) {
OLED::clearScreen();
OLED::printWholeScreen(warning);
OLED::refresh();
waitForButtonPressOrTimeout(timeout);
}