mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-13 10:08:08 +00:00
11 lines
235 B
Python
11 lines
235 B
Python
"""
|
|
The components/common module contains code that is used by both components/tt
|
|
and components/t1.
|
|
"""
|
|
from micropython import const
|
|
|
|
SWIPE_UP = const(0x01)
|
|
SWIPE_DOWN = const(0x02)
|
|
SWIPE_LEFT = const(0x04)
|
|
SWIPE_RIGHT = const(0x08)
|