Go to documentation repository
...
Turn on the light and arm camera 2 after pressing the key 15 on the AXIS T8312 keyboard.
| Code Block |
|---|
OnEvent ("TELEMETRY_EXT","1","KEY_PRESSED")
{
if (strequal(param0, "15")){
DoReact("TELEMETRY_EXT","1","RELE_ON","rele<15>");
DoReact("CAM","2","ARM");
}
} |