1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/assets/ui-mockup/boot_info.py

22 lines
587 B
Python
Raw Normal View History

2016-10-04 16:49:02 +00:00
#!../../vendor/micropython/unix/micropython
import sys
sys.path.append('../../src')
from trezor import ui, res
from trezor.ui import button
ui.display.clear()
2016-10-04 16:49:02 +00:00
ui.display.backlight(255)
image = res.load('./res/sl_logo.toif')
2016-10-06 09:47:12 +00:00
ui.display.image(60, 10, image)
2016-10-04 16:49:02 +00:00
ui.display.text_center(120, 160, "SatoshiLabs", 1, ui.WHITE, ui.BLACK)
2016-10-05 17:36:30 +00:00
ui.display.text_center(120, 183, "v0.1.1", 1, ui.GREY, ui.BLACK)
2016-10-04 16:49:02 +00:00
2017-04-09 00:38:24 +00:00
reboot = button.Button((0, 240 - 48, 240, 48), 'Reboot', normal_style=button.DEFAULT_BUTTON, active_style=button.DEFAULT_BUTTON_ACTIVE)
2016-10-04 16:49:02 +00:00
reboot.render()
while True:
2016-10-06 15:41:53 +00:00
ui.display.refresh()