mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-03-09 20:56:05 +00:00
16 lines
394 B
Python
Executable File
16 lines
394 B
Python
Executable File
#!../../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() |