2016-10-04 16:49:02 +00:00
|
|
|
#!../../vendor/micropython/unix/micropython
|
|
|
|
import sys
|
|
|
|
sys.path.append('../../src')
|
|
|
|
|
2016-10-05 17:52:28 +00:00
|
|
|
from trezor import ui, res
|
2016-10-04 16:49:02 +00:00
|
|
|
from trezor.ui import button
|
2016-10-05 19:09:45 +00:00
|
|
|
from bl_common import bl_header
|
2016-10-04 16:49:02 +00:00
|
|
|
|
|
|
|
DEFAULT_BUTTON = {
|
|
|
|
'bg-color': ui.DARK_GREY,
|
|
|
|
'fg-color': ui.GREY,
|
|
|
|
'text-style': ui.NORMAL,
|
|
|
|
'border-color': ui.BLACK,
|
|
|
|
}
|
|
|
|
DEFAULT_BUTTON_ACTIVE = {
|
|
|
|
'bg-color': ui.GREY,
|
|
|
|
'fg-color': ui.WHITE,
|
|
|
|
'text-style': ui.BOLD,
|
|
|
|
'border-color': ui.GREY,
|
|
|
|
}
|
|
|
|
|
2016-10-05 18:17:32 +00:00
|
|
|
ui.display.clear()
|
2016-10-04 16:49:02 +00:00
|
|
|
ui.display.backlight(255)
|
|
|
|
|
2016-10-05 13:44:23 +00:00
|
|
|
# background frame
|
|
|
|
ui.display.bar(0, 10, 240, 240 - 50, ui.LIGHT_RED)
|
|
|
|
ui.display.bar(3, 3, 234, 240 - 54, ui.BLACK)
|
|
|
|
|
2016-10-04 16:49:02 +00:00
|
|
|
# header
|
2016-10-05 19:09:45 +00:00
|
|
|
bl_header('Install failed')
|
2016-10-04 16:49:02 +00:00
|
|
|
|
|
|
|
# content
|
|
|
|
ui.display.text(10, 53, 'Some error happend', ui.NORMAL, ui.WHITE, ui.BLACK)
|
|
|
|
ui.display.text(10, 79, 'Sorry, try again maybe?', ui.NORMAL, ui.WHITE, ui.BLACK)
|
|
|
|
|
|
|
|
reboot = button.Button((0, 240 - 48, 240, 48), 'Reboot', normal_style=DEFAULT_BUTTON, active_style=DEFAULT_BUTTON_ACTIVE)
|
|
|
|
reboot.render()
|
|
|
|
|
|
|
|
while True:
|
2016-10-06 15:41:53 +00:00
|
|
|
ui.display.refresh()
|