1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/src1/main.py

23 lines
298 B
Python
Raw Normal View History

2018-10-02 16:08:05 +00:00
import usb
usb.bus.open()
import trezorio as io
from trezorui import Display
d = Display()
d.clear()
d.backlight(255)
i = 0
while True:
d.print('Loop %d\n' % i)
i += 1
r = [0, 0]
if io.poll([io.TOUCH], r, 1000000):
print('TOUCH', r)
else:
print('NOTOUCH')