add 1 and 2 minute screen blanking options (#958)

for battery-powered devices
This commit is contained in:
Thijs Triemstra 2023-05-07 14:56:13 +02:00 committed by GitHub
parent 282799c8cb
commit d21a9616e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,11 +11,13 @@ import locale
from io import StringIO
SCREEN_BLANKING_OPTIONS = [
300, # 5 Minutes
900, # 15 Minutes
1800, # 30 Minutes
3600, # 1 Hour
7200, # 2 Hours
60, # 1 Minute
120, # 2 Minutes
300, # 5 Minutes
900, # 15 Minutes
1800, # 30 Minutes
3600, # 1 Hour
7200, # 2 Hours
14400, # 4 Hours
]