mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
62 lines
1.7 KiB
Python
Executable File
62 lines
1.7 KiB
Python
Executable File
#!../../vendor/micropython/unix/micropython
|
|
import sys
|
|
sys.path.append('../../src')
|
|
|
|
from trezor import ui, res
|
|
from trezor.ui import button
|
|
from bl_common import bl_header
|
|
|
|
CONFIRM_BUTTON = {
|
|
'bg-color': ui.GREEN,
|
|
'fg-color': ui.LIGHT_GREEN,
|
|
'text-style': ui.BOLD,
|
|
'border-color': ui.GREEN,
|
|
}
|
|
CONFIRM_BUTTON_ACTIVE = {
|
|
'bg-color': ui.GREEN,
|
|
'fg-color': ui.WHITE,
|
|
'text-style': ui.BOLD,
|
|
'border-color': ui.GREEN,
|
|
}
|
|
CANCEL_BUTTON = {
|
|
'bg-color': ui.RED,
|
|
'fg-color': ui.LIGHT_RED,
|
|
'text-style': ui.BOLD,
|
|
'border-color': ui.RED,
|
|
}
|
|
CANCEL_BUTTON_ACTIVE = {
|
|
'bg-color': ui.RED,
|
|
'fg-color': ui.WHITE,
|
|
'text-style': ui.BOLD,
|
|
'border-color': ui.RED,
|
|
}
|
|
|
|
ui.display.clear()
|
|
ui.display.backlight(255)
|
|
|
|
# background frame
|
|
ui.display.bar(0, 10, 240, 240 - 58, ui.LIGHT_RED)
|
|
ui.display.bar(3, 3, 234, 240 - 54, ui.BLACK)
|
|
|
|
# header
|
|
bl_header('Install new firmware')
|
|
|
|
# content
|
|
ui.display.text(10, 60, 'Unsigned firmware!', ui.NORMAL, ui.WHITE, ui.BLACK)
|
|
|
|
# fingerprint box
|
|
ui.display.bar(10, 76, 220, 105, ui.DARK_GREY)
|
|
s = 103
|
|
ui.display.text(15, s, '5764715dbcf8ed88', ui.MONO, ui.GREY, ui.DARK_GREY)
|
|
ui.display.text(15, s + 1 * 23, 'bc0ae1c2f715277f', ui.MONO, ui.GREY, ui.DARK_GREY)
|
|
ui.display.text(15, s + 2 * 23, '22b67f26c15e1f75', ui.MONO, ui.GREY, ui.DARK_GREY)
|
|
ui.display.text(15, s + 3 * 23, '43b2b44913b5c255', ui.MONO, ui.GREY, ui.DARK_GREY)
|
|
|
|
confirm = button.Button((121, 240 - 48, 119, 48), 'Confirm', normal_style=CONFIRM_BUTTON, active_style=CONFIRM_BUTTON_ACTIVE)
|
|
confirm.render()
|
|
cancel = button.Button((0, 240 - 48, 119, 48), 'Cancel', normal_style=CANCEL_BUTTON, active_style=CANCEL_BUTTON_ACTIVE)
|
|
cancel.render()
|
|
|
|
while True:
|
|
ui.display.refresh()
|