2016-09-21 12:21:18 +00:00
|
|
|
from trezor import ui, loop, res
|
2016-05-17 16:37:26 +00:00
|
|
|
from trezor.ui.swipe import Swipe
|
2016-04-30 13:57:08 +00:00
|
|
|
|
2016-04-28 21:43:34 +00:00
|
|
|
|
2016-08-05 10:34:47 +00:00
|
|
|
async def swipe_to_rotate():
|
2016-05-17 16:37:26 +00:00
|
|
|
while True:
|
2016-08-05 10:34:47 +00:00
|
|
|
degrees = await Swipe(absolute=True)
|
2016-05-17 16:37:26 +00:00
|
|
|
ui.display.orientation(degrees)
|
|
|
|
|
|
|
|
|
2016-08-05 10:34:47 +00:00
|
|
|
async def animate_logo():
|
2016-09-21 12:21:18 +00:00
|
|
|
icon = res.load('apps/homescreen/res/trezor.toig')
|
2016-08-08 12:53:42 +00:00
|
|
|
async for fg in ui.pulse_animation(ui.WHITE, ui.GREY, speed=400000):
|
|
|
|
ui.display.icon(0, 0, icon, fg, ui.BLACK)
|
2016-05-25 12:27:22 +00:00
|
|
|
|
|
|
|
|
2016-09-21 12:21:18 +00:00
|
|
|
async def layout_homescreen():
|
|
|
|
wait = loop.Wait([swipe_to_rotate(), animate_logo()])
|
|
|
|
try:
|
|
|
|
await wait
|
|
|
|
finally:
|
|
|
|
wait.exit()
|