Skip to content

OcaIdentificationSensor#

This document describes the controller implementation of OcaIdentificationSensor. This class is documented in the AES70 standard as:

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.


Overview#

Class Declaration#

namespace aes70::controller
{
  class OcaIdentificationSensor : public OcaSensor
  {
  public:
    OcaIdentificationSensor(std::shared_ptr<connection> connection,
            uin32_t object_number);
    OcaIdentificationSensor(const OcaIdentificationSensor &o);

    // Control Methods

    // Observing Properties

    // Property Changed Subscriptions
  };
}

Methods#