This commit is contained in:
lunaticbum 2026-03-30 16:00:51 +09:00
parent 4ea9734088
commit c5a5c41d4a

View File

@ -79,6 +79,7 @@ object AutoTradingManager {
var webSocketConnect by mutableStateOf(false) var webSocketConnect by mutableStateOf(false)
var testFlag = false var testFlag = false
fun startBackgroundScheduler() { fun startBackgroundScheduler() {
scope.launch { scope.launch {
while (isActive) { while (isActive) {
@ -86,6 +87,8 @@ object AutoTradingManager {
if (now.isAfter(H08M30) && now.isBefore(H18) && !shouldShowFullWindow) { if (now.isAfter(H08M30) && now.isBefore(H18) && !shouldShowFullWindow) {
shouldShowFullWindow = true shouldShowFullWindow = true
SystemSleepPreventer.wakeDisplay() SystemSleepPreventer.wakeDisplay()
} else if (now.isAfter(LocalTime.of(23, 50)) && now.isBefore(LocalTime.of(8, 0))) {
SystemSleepPreventer.sleepDisplay()
} }
delay(60_000 * 3) // 1분마다 체크 delay(60_000 * 3) // 1분마다 체크
} }