UNPKG

aes70

Version:

A controller library for the AES70 protocol.

15 lines (13 loc) 571 B
import { RemoteDevice } from '../remote_device'; import { OcaActuator } from './OcaActuator'; /** * A set of one or more non-network signal outputs. Number of channels is set at * construction time. This class has no native properties or methods - they are * all inherited from **OcaWorker** and above. It is defined as a separate class * as an aid to enumeration and signal flow definition. * @extends OcaActuator * @class OcaSignalOutput */ export declare class OcaSignalOutput extends OcaActuator { constructor(objectNumber: number, device: RemoteDevice); }