The CAM_VMDA_DETECTOR object corresponds to the VMDA detection system object.
The CAM_VMDA_DETECTOR object sends events presented in the table. Procedure is started when the corresponding event appears.
Format of events procedure for the VMDA Detection object:
OnEvent("CAM_VMDA_DETECTOR ","_id_","_event_") |
Event | Description |
"ALARM" | Alarm. |
"ALARM_END" | End of alarm. |
Operator format to describe actions with the VMDA detection is:
DoReact("CAM_VMDA_DETECTOR","_id_","_command_"); |
List of commands and parameters for the CAM_VMDA_DETECTOR object is presented in the following table:
Command – command description | Parameters | Description |
"ARM" – arm detection. | - | - |
"DISARM" – disarm detection. | - | - |
Example of using events and reactions of the VMDA Detection object:
Arm the VMDA Detection 2 while performing macro 1:
OnEvent ("MACRO","1","RUN") { DoReact("CAM_VMDA_DETECTOR","2","ARM"); } |