UNPKG

aes70

Version:

A controller library for the AES70 protocol.

14 lines (12 loc) 485 B
import { RemoteDevice } from '../remote_device.js'; import { OcaActuator } from './OcaActuator.js'; /** * Actuator with no control parameters of its own, used as a simple node to * represent summations in block signal flows. Signal path connections are * controlled by methods inherited from **OcaWorker**. * @extends OcaActuator * @class OcaSummingPoint */ export declare class OcaSummingPoint extends OcaActuator { constructor(objectNumber: number, device: RemoteDevice); }