Source code for viam.components.gantry.gantry

import abc
from typing import Any, Dict, Final, List, Optional

from viam.resource.types import RESOURCE_NAMESPACE_RDK, RESOURCE_TYPE_COMPONENT, Subtype

from ..component_base import ComponentBase


[docs]class Gantry(ComponentBase): """ Gantry represents a physical Gantry and can be used for controlling gantries of N axes. This acts as an abstract base class for any drivers representing specific gantry implementations. This cannot be used on its own. If the ``__init__()`` function is overridden, it must call the ``super().__init__()`` function. :: from viam.components.gantry import Gantry """ SUBTYPE: Final = Subtype( # pyright: ignore [reportIncompatibleVariableOverride] RESOURCE_NAMESPACE_RDK, RESOURCE_TYPE_COMPONENT, "gantry" )
[docs] @abc.abstractmethod async def get_position(self, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs) -> List[float]: """ Get the position in millimeters. :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") # Get the current positions of the axes of the gantry in millimeters. positions = await my_gantry.get_position() Returns: List[float]: The position of the axes. """ ...
[docs] @abc.abstractmethod async def move_to_position( self, positions: List[float], speeds: List[float], *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs, ): """ Move the gantry to a new position at the requested speeds. :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") # Create a list of positions for the axes of the gantry to move to. Assume in # this example that the gantry is multi-axis, with 3 axes. examplePositions = [1, 2, 3] exampleSpeeds = [3, 9, 12] # Move the axes of the gantry to the positions specified. await my_gantry.move_to_position( positions=examplePositions, speeds=exampleSpeeds) Args: positions (List[float]): List of positions for the axes to move to, in millimeters. """ ...
[docs] @abc.abstractmethod async def home(self, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs) -> bool: """ Home the gantry to find it's starting and ending positions :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") await my_gantry.home() Returns: bool : whether the gantry has run the homing sequence successfully """
[docs] @abc.abstractmethod async def get_lengths(self, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs) -> List[float]: """ Get the lengths of the axes of the gantry in millimeters. :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") # Get the lengths of the axes of the gantry in millimeters. lengths_mm = await my_gantry.get_lengths() Returns: List[float]: The lengths of the axes. """ ...
[docs] @abc.abstractmethod async def stop(self, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs): """ Stop all motion of the gantry. It is assumed that the gantry stops immediately. :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") # Stop all motion of the gantry. It is assumed that the gantry stops # immediately. await my_gantry.stop() """ ...
[docs] @abc.abstractmethod async def is_moving(self) -> bool: """ Get if the gantry is currently moving. :: my_gantry = Gantry.from_robot(robot=robot, name="my_gantry") # Stop all motion of the gantry. It is assumed that the # gantry stops immediately. await my_gantry.stop() # Print if the gantry is currently moving. print(my_gantry.is_moving()) Returns: bool: Whether the gantry is moving. """ ...