UNPKG

aes70

Version:

A controller library for the AES70 protocol.

13 lines (11 loc) 385 B
import { RemoteDevice } from '../remote_device'; import { OcaActuator } from './OcaActuator'; /** * Actuator with no control parameters, used as a simple node to represent * summations in block signal flows. * @extends OcaActuator * @class OcaSummingPoint */ export declare class OcaSummingPoint extends OcaActuator { constructor(objectNumber: number, device: RemoteDevice); }