startup delay added

This commit is contained in:
richonguzman 2025-10-12 14:21:51 -03:00
parent d334164b6f
commit 152217e71c
9 changed files with 41 additions and 9 deletions

View file

@ -436,4 +436,11 @@ namespace Utils {
return true;
}
void startupDelay() {
if (Config.startupDelay > 0) {
displayShow("", " STARTUP DELAY ...", "", "", 0);
delay(Config.startupDelay * 60 * 1000);
}
}
}