Best Python code snippet using robotframework-androidlibrary_python
step0.py
Source:step0.py  
...69      >>> def swipe_up(board):70      ...     calls.append('swipe_up')71      >>> def swipe_down(board):72      ...     calls.append('swipe_down')73      >>> def swipe_right(board):74      ...     calls.append('swipe_right')75      >>> def swipe_left(board):76      ...     calls.append('swipe_left')77      >>> def make_board(N):78      ...     calls.append('make_board')79      >>> def swap(board):80      ...     calls.append('swap')81      >>> def print(msg):82      ...     calls.append('print')83      >>> def quit():84      ...     calls.append('quit')85      >>> def end_move(board):86      ...     return 187      >>> def place_random(board):...swipe.py
Source:swipe.py  
1from micropython import const2from trezor import io, loop, ui3if False:4    from typing import Generator5SWIPE_UP = const(0x01)6SWIPE_DOWN = const(0x02)7SWIPE_LEFT = const(0x04)8SWIPE_RIGHT = const(0x08)9SWIPE_VERTICAL = const(SWIPE_UP | SWIPE_DOWN)10SWIPE_HORIZONTAL = const(SWIPE_LEFT | SWIPE_RIGHT)11SWIPE_ALL = const(SWIPE_VERTICAL | SWIPE_HORIZONTAL)12_SWIPE_DISTANCE = const(120)13_SWIPE_TRESHOLD = const(30)14class Swipe(ui.Component):15    def __init__(self, directions: int = SWIPE_ALL, area: ui.Area = None) -> None:16        super().__init__()17        if area is None:18            area = (0, 0, ui.WIDTH, ui.HEIGHT)19        self.area = area20        self.directions = directions21        self.started = False22        self.start_x = 023        self.start_y = 024        self.light_origin = ui.BACKLIGHT_NORMAL25        self.light_target = ui.BACKLIGHT_NONE26    def on_touch_start(self, x: int, y: int) -> None:27        if ui.in_area(self.area, x, y):28            self.start_x = x29            self.start_y = y30            self.light_origin = ui.BACKLIGHT_NORMAL31            self.started = True32    def on_touch_move(self, x: int, y: int) -> None:33        if not self.started:34            return  # not started in our area35        dirs = self.directions36        pdx = x - self.start_x37        pdy = y - self.start_y38        pdxa = abs(pdx)39        pdya = abs(pdy)40        if pdxa > pdya and dirs & SWIPE_HORIZONTAL:41            # horizontal direction42            if (pdx > 0 and dirs & SWIPE_RIGHT) or (pdx < 0 and dirs & SWIPE_LEFT):43                ui.display.backlight(44                    ui.lerpi(45                        self.light_origin,46                        self.light_target,47                        min(pdxa / _SWIPE_DISTANCE, 1),48                    )49                )50        elif pdxa < pdya and dirs & SWIPE_VERTICAL:51            # vertical direction52            if (pdy > 0 and dirs & SWIPE_DOWN) or (pdy < 0 and dirs & SWIPE_UP):53                ui.display.backlight(54                    ui.lerpi(55                        self.light_origin,56                        self.light_target,57                        min(pdya / _SWIPE_DISTANCE, 1),58                    )59                )60    def on_touch_end(self, x: int, y: int) -> None:61        if not self.started:62            return  # not started in our area63        dirs = self.directions64        pdx = x - self.start_x65        pdy = y - self.start_y66        pdxa = abs(pdx)67        pdya = abs(pdy)68        if pdxa > pdya and dirs & SWIPE_HORIZONTAL:69            # horizontal direction70            ratio = min(pdxa / _SWIPE_DISTANCE, 1)71            if ratio * 100 >= _SWIPE_TRESHOLD:72                if pdx > 0 and dirs & SWIPE_RIGHT:73                    self.on_swipe(SWIPE_RIGHT)74                    return75                elif pdx < 0 and dirs & SWIPE_LEFT:76                    self.on_swipe(SWIPE_LEFT)77                    return78        elif pdxa < pdya and dirs & SWIPE_VERTICAL:79            # vertical direction80            ratio = min(pdya / _SWIPE_DISTANCE, 1)81            if ratio * 100 >= _SWIPE_TRESHOLD:82                if pdy > 0 and dirs & SWIPE_DOWN:83                    self.on_swipe(SWIPE_DOWN)84                    return85                elif pdy < 0 and dirs & SWIPE_UP:86                    self.on_swipe(SWIPE_UP)87                    return88        # no swipe detected, reset the state89        ui.display.backlight(self.light_origin)90        self.started = False91    def on_swipe(self, swipe: int) -> None:92        raise ui.Result(swipe)93    def __await__(self) -> Generator:94        return self.__iter__()  # type: ignore95    def __iter__(self) -> loop.Task:  # type: ignore96        try:97            touch = loop.wait(io.TOUCH)98            while True:99                event, x, y = yield touch100                self.dispatch(event, x, y)101        except ui.Result as result:...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
