1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 05:58:09 +00:00
trezor-firmware/src/main.py

18 lines
406 B
Python
Raw Normal View History

2016-04-28 21:48:27 +00:00
import trezor.main
# Load all applications
from apps import homescreen
from apps import playground
# from apps import wallet
# Initialize all applications
homescreen.boot()
playground.boot()
# wallet.boot()
# Load default homescreen
from apps.homescreen.layout_homescreen import layout_homescreen
# Run main even loop and specify, which screen is default
trezor.main.run(main_layout=layout_homescreen)