mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
fix ui.rotate_coords, remove pulse_animation
This commit is contained in:
parent
35d53ad7fc
commit
c952500552
@ -76,33 +76,14 @@ def animate_pulse(func, ca, cb, speed=200000, delay=30000):
|
||||
yield loop.Sleep(delay)
|
||||
|
||||
|
||||
class pulse_animation:
|
||||
|
||||
def __init__(self, color_a, color_b, speed=200000, delay=30000):
|
||||
self.color_a = color_a
|
||||
self.color_b = color_b
|
||||
self.speed = speed
|
||||
self.delay = delay
|
||||
|
||||
async def __aiter__(self):
|
||||
return self
|
||||
|
||||
async def __anext__(self):
|
||||
# normalize sin from interval -1:1 to 0:1
|
||||
y = 0.5 + 0.5 * math.sin(utime.ticks_us() / self.speed)
|
||||
c = blend(self.color_a, self.color_b, y)
|
||||
await loop.Sleep(self.delay)
|
||||
return c
|
||||
|
||||
|
||||
def rotate_coords(pos: tuple) -> tuple:
|
||||
r = display.orientation()
|
||||
if r == 0:
|
||||
return pos
|
||||
x, y = pos
|
||||
if r == 90:
|
||||
return (240 - y, x)
|
||||
return (y, 240 - x)
|
||||
if r == 180:
|
||||
return (240 - x, 240 - y)
|
||||
if r == 270:
|
||||
return (y, 240 - x)
|
||||
return (240 - y, x)
|
||||
|
Loading…
Reference in New Issue
Block a user