Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The TELEMETRY object sends events presented in the table. The procedure is started when the corresponding event occurs.

Format of the events procedure for the PTZ device object:

Code Block
OnEvent("TELEMETRY","_id_","_event_")

Description of the events from the the TELEMETRY object.

Event

Description

Comment

LOCKED

Locked

Event is received after the LOCK command (see the table below)

UNLOCKED

Unlocked

Event is received after the UNLOCK command (see the table below)

Operator format to describe actions with the PTZ devices is:

Code Block
DoReact("TELEMETRY","_id_","_command_" [,"_parameters_"]);

List of commands and parameters for the the TELEMETRY object is presented in the following table:

...

State of the TELEMETRY object

Description of the object state

LOCKEDlocked

Control of telemetry is locked with some priority. It is forbidden to control telemetry with a priority lower than the specified when locking (see the table above)

UNLOCKEDunlocked

It is allowed to control telemetry with any priority

 Examples of using reactions of the TELEMETRY object:

Set autofocus when video camera is armed.

Code Block
OnEvent("CAM","1","ARM")
{
    DoReact("TELEMETRY","1", "AUTOFOCUS_ON");
}

Rotate video camera to the position specified in the first preset with the relay enabled.

Code Block
OnEvent("GRELE","1","ON")
{
    telemetry_id= GetObjectParam("CAM","1","parent_id");
    DoReact("TELEMETRY","telemetry_id","SETUP","GO_preset<1>");
}

Record the patrol route for Camera 1 corresponding to the PTZ device 1.1. The route consists of two points, such that to go from point 1 to point 2, you need to rotate the camera to the left at speed of 6 for 2 seconds. Patrolling must be performed at speed of 10. The time at each point of the route is 25 seconds. It is supposed that when the program is started, the camera is set to the position corresponding to the first point of the route.

...