1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 19:38:09 +00:00

ui/scroll: tweak swipe animation

This commit is contained in:
Jan Pochyla 2018-02-05 14:55:03 +01:00
parent 5a5842111b
commit ac0be4b061

View File

@ -34,12 +34,13 @@ async def animate_swipe():
time_delay = const(40000)
draw_delay = const(200000)
ui.display.text_center(130, 220, 'Swipe', ui.BOLD, ui.GREY, ui.BG)
sleep = loop.sleep(time_delay)
icon = res.load(ui.ICON_SWIPE)
for t in ui.pulse(draw_delay):
fg = ui.blend(ui.GREY, ui.DARK_GREY, t)
ui.display.icon(70, 205, icon, fg, ui.BG)
ui.display.text_center(130, 220, 'Swipe', ui.BOLD, fg, ui.BG)
yield sleep