aes70
Version:
A controller library for the AES70 protocol.
22 lines (20 loc) • 617 B
JavaScript
import { make_control_class } from '../make_control_class.js';
import { OcaActuator } from './OcaActuator.js';
/**
* A set of one or more non-network signal inputs. 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 OcaSignalInput
*/
export const OcaSignalInput = make_control_class(
'OcaSignalInput',
4,
'\u0001\u0001\u0001\u0012',
3,
OcaActuator,
[],
[],
[]
);