1
0
forked from me/IronOS
Files
IronOS/source/Core/Threads/OperatingModes/utils/ShowWarning.cpp
2022-11-22 18:25:48 +11:00

9 lines
234 B
C++

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