Increased hallway light timeout back to two minutes
All checks were successful
Build and deploy / Build application (push) Successful in 3m59s
Build and deploy / Build container (push) Successful in 1m18s
Build and deploy / Deploy container (push) Successful in 34s

This commit is contained in:
Dreaded_X 2024-12-10 22:23:07 +01:00
parent bf6d80ded9
commit 24815edd34
Signed by: Dreaded_X
GPG Key ID: 5A0CBFE3C3377FAA

View File

@ -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