Source code for APS_BlueSky_tools.synApps_ophyd.busy


"""
Ophyd support for the EPICS busy record


Public Structures

.. autosummary::
   
    ~busyRecord

"""


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


__all__ = """
    busyRecord
    """.split()


[docs]class busyRecord(Device): state = Component(EpicsSignal, "") output_link = Component(EpicsSignal, ".OUT") forward_link = Component(EpicsSignal, ".FLNK")