Source code for apstools.synApps.busy

"""
Ophyd support for the EPICS busy record


Public Structures

.. autosummary::

    ~BusyRecord

"""

# -----------------------------------------------------------------------------
# :author:    Pete R. Jemian
# :email:     jemian@anl.gov
# :copyright: (c) 2017-2022, UChicago Argonne, LLC
#
# Distributed under the terms of the Creative Commons Attribution 4.0 International Public License.
#
# The full license is in the file LICENSE.txt, distributed with this software.
# -----------------------------------------------------------------------------

from ophyd.device import Device, Component
from ophyd import EpicsSignal


[docs]class BusyRecord(Device): """ EPICS synApps busy record .. index:: Ophyd Device; synApps BusyRecord """ state = Component(EpicsSignal, "", kind="hinted") output_link = Component(EpicsSignal, ".OUT", kind="config") forward_link = Component(EpicsSignal, ".FLNK", kind="config")