API Information

This guide is intended for those that have scripting (LSL) knowledge that would like to create their own systems to work with the Emergency Signal System. The API allows users to control both signal sets and garage doors that have been listed in the Controllers configuration file.


Enabling The API

In order for the system to accept API calls, you must first enable the API via the Controllers  _config notecard.

  • API ACCESS = TRUE

API Call Requirements

You must provide the following parameters in your API calls:

  1. Controller Channel
  2. Command
  3. Signal Set ID / Garage Door ID
  4. Garage Door ID (if applicable)

Activating a Signal

llRegionSay(controller_channel, "ACTIVATE@" + signal_ID);

Deactivating a Signal

llRegionSay(controller_channel, "DEACTIVATE@" + signal_ID);

Controlling Garage Doors

// [Gentek] - IntelliDoor Garage:
llRegionSay(controller_channel, "OPEN@" + garage_door_ID + ",0"); // OPEN DOOR
llRegionSay(controller_channel, "CLOSE@" + garage_door_ID + ",0"); // CLOSE DOOR

// HD Overhead Door / HD Folding Door:
llRegionSay(controller_channel, "OPEN@" + garage_door_ID + "," + (string)garage_door_channel); // OPEN DOOR
llRegionSay(controller_channel, "CLOSE@" + garage_door_ID + "," + (string)garage_door_channel); // CLOSE DOOR