mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-12 01:28:10 +00:00
9 lines
188 B
Python
9 lines
188 B
Python
from micropython import const
|
|
|
|
# backlight brightness
|
|
BACKLIGHT_NORMAL = const(150)
|
|
BACKLIGHT_LOW = const(45)
|
|
BACKLIGHT_DIM = const(5)
|
|
BACKLIGHT_NONE = const(0)
|
|
BACKLIGHT_MAX = const(255)
|