aes70
Version:
A controller library for the AES70 protocol.
15 lines (13 loc) • 583 B
TypeScript
import { RemoteDevice } from '../remote_device.js';
import { OcaActuator } from './OcaActuator.js';
/**
* A set of one or more non-network signal outputs. Number of channels shall be
* 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);
}