chore: add 3-minute sleep option (#1948)

This commit is contained in:
WuTofu
2026-05-18 00:17:24 +03:00
committed by GitHub
parent 510ee10153
commit 061c7688a4
25 changed files with 27 additions and 1 deletions
+2
View File
@@ -305,6 +305,8 @@ unsigned long CrossPointSettings::getSleepTimeoutMs() const {
switch (sleepTimeout) {
case SLEEP_1_MIN:
return 1UL * 60 * 1000;
case SLEEP_3_MIN:
return 3UL * 60 * 1000;
case SLEEP_5_MIN:
return 5UL * 60 * 1000;
case SLEEP_10_MIN: