Versions Compared

Key

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

...

  1. 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");
        }
    }