mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-27 09:58:27 +00:00
16 lines
394 B
Python
16 lines
394 B
Python
|
#!../../vendor/micropython/unix/micropython
|
||
|
import sys
|
||
|
sys.path.append('../../src')
|
||
|
|
||
|
from trezor import ui, res
|
||
|
|
||
|
ui.display.backlight(255)
|
||
|
|
||
|
image = res.load('./res/sl_logo.toif')
|
||
|
ui.display.image(60, 20, image)
|
||
|
|
||
|
ui.display.text_center(120, 174, "SatoshiLabs firmware", 1, ui.WHITE, ui.BLACK)
|
||
|
ui.display.text_center(120, 197, "v0.1.1", 1, ui.GREY, ui.BLACK)
|
||
|
|
||
|
while True:
|
||
|
ui.display.refresh()
|