aes70
Version:
A controller library for the AES70 protocol.
22 lines (19 loc) • 755 B
TypeScript
import { Event } from '../event.js';
import { RemoteDevice } from '../remote_device.js';
import { OcaSensor } from './OcaSensor.js';
/**
* Sensor for device identification mechanism. This sensor shall detect the
* actuation of some kind of control -- a pushbutton, for instance -- that the
* user depresses to signal a device identification event to the controller.
* @extends OcaSensor
* @class OcaIdentificationSensor
*/
export declare class OcaIdentificationSensor extends OcaSensor {
/**
* Event that shall be raised whenever the Device identification control is
* activated. No event data.
* @member OcaIdentificationSensor#OnIdentify {Event}
*/
OnIdentify: Event;
constructor(objectNumber: number, device: RemoteDevice);
}