Documentation for Axxon PSIM 1.0.0-1.0.1.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The SetTimer method is used to start the timer.
The syntax for accessing the method is:

function SetTimer (id : int, milliseconds : int)

Method arguments:

  1. id is a required argument. It specifies the timer ID. Allowed values are int or string type.
  2. milliseconds is a required argument. It specifies the period with which the timer will trigger if it is not stopped by the KillTimer method. It is specified in milliseconds. Allowed values are int type.

Example. 2 seconds after the macro 1 is executed, start recording on camera 1.

if(Event.SourceType=="LOCAL_TIMER" && Event.Action=="TRIGGERED" && Event.SourceId==333) //it is possible to use Event.SourceId == "333", i.e. string ID 
{
 var actuallyKilled = KillTimer(333); 
 if(actuallyKilled == 1)
 {
   DoReactStr("CAM","1","REC",""); 
 }
}
 
if(Event.SourceType=="MACRO"&& Event.SourceId == "1" && Event.Action == "RUN")
{
 SetTimer(333,2000); //333 - id, 2000 msec = 2 sec - period
}
  • No labels