From 24815edd34320a57a084377213787f1204e77a44 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Tue, 10 Dec 2024 22:23:07 +0100 Subject: [PATCH] Increased hallway light timeout back to two minutes --- config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.lua b/config.lua index a1726dd..708df19 100644 --- a/config.lua +++ b/config.lua @@ -233,7 +233,7 @@ local hallway_light_automation = { self.group.set_on(true) elseif not self.state.forced then - self.timeout:start(debug and 10 or 60, function() + self.timeout:start(debug and 10 or 2 * 60, function() if not self.state.trash_open then self.group.set_on(false) end