bootloader mockups

This commit is contained in:
Pavol Rusnak 2016-10-03 15:27:29 +02:00
parent 3fe688e9b4
commit 8eff4fcddf
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#!../../vendor/micropython/unix/micropython
import sys
sys.path.append('../../src')
from trezor import ui
ui.display.backlight(255)
ui.display.bar(0, 192, 240, 48, ui.ORANGE)
ui.display.text_center(120, 192 + 32, "Installing Update", 1, ui.WHITE, ui.ORANGE)
p = 0
while True:
ui.display.loader(p, ui.BLUE, ui.BLACK)
ui.display.text_center(120, 192 // 2 + 14 // 2, "%d%%" % (p // 10), 2, ui.WHITE, ui.BLACK)
ui.display.refresh()
p = (p + 1) % 1000