mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
9 lines
234 B
C++
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);
|
|
}
|