From 9b7541f71d810e78f2553f80b8570c3daf13bfa7 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Mon, 24 Oct 2022 19:08:39 +0200 Subject: [PATCH] Increase wake brightness --- backend/src/tasks/lights.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/tasks/lights.rs b/backend/src/tasks/lights.rs index 495853a..526ab95 100644 --- a/backend/src/tasks/lights.rs +++ b/backend/src/tasks/lights.rs @@ -148,7 +148,7 @@ async fn wake_task( alarm += chrono::Duration::weeks(1); // slowly turn up brightness of bulb - for brightness in (1..=50).map(|i| (i as f32) * 0.01) { + for brightness in (1..=75).map(|i| (i as f32) * 0.01) { select! { // abort if the client pokes the bulb _ = wait_for_bulb_command(&id, &mut client_messages) => break,