Versions Compared

Key

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

GATE Videogate

Format of events procedure for the Videogate object:

Code Block
OnEvent("GATE ","id","event")

Operator format for actions with the Videogate:

Code Block
DoReact("GATE","id","command"[,"parameters"]);

Example. Send corresponding messages to all system cores when the input speed on the gate 1 is reduced.

Code Block
OnEvent("GATE ","1"," GATE_LOW_FPS ")
{
    NotifyEventGlobal ("GATE ","1"," GATE_LOW_FPS ");
}