Source code for gort.devices.telemetry

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# @Author: José Sánchez-Gallego (gallegoj@uw.edu)
# @Date: 2023-08-14
# @Filename: telemetry.py
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause)

from __future__ import annotations

from typing import TYPE_CHECKING

from gort.devices.core import GortDevice, GortDeviceSet


if TYPE_CHECKING:
    from gort import ActorReply
    from gort.gort import Gort


__all__ = ["Telemetry", "TelemetrySet"]


[docs] class Telemetry(GortDevice): """Telemetry sensors.""" def __init__(self, gort: Gort, name: str, actor: str, **kwargs): super().__init__(gort, name, actor)
[docs] async def status(self): """Retrieves the status of sensors.""" reply: ActorReply = await self.actor.commands.status() return reply.flatten()
[docs] class TelemetrySet(GortDeviceSet[Telemetry]): """A set of telemetry sensors.""" __DEVICE_CLASS__ = Telemetry __DEPLOYMENTS__ = ["lvmtelemetry"]