Update TemperatureAdjust.cpp . Cleanup Soldering Sleep SolderingProfiles Soldering Rework Rough pass GUI Temp Adjust Cleanup old OperatingMode Debug Menu
10 lines
267 B
C++
10 lines
267 B
C++
#include "Buttons.hpp"
|
|
#include "OperatingModeUtilities.h"
|
|
#include "OperatingModes.h"
|
|
bool warnUser(const char *warning, const ButtonState buttons) {
|
|
OLED::clearScreen();
|
|
OLED::printWholeScreen(warning);
|
|
// TODO also timeout
|
|
return buttons != BUTTON_NONE;
|
|
}
|