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
In order for API commands to successfully be processed by other users, the controller ACCESS must be set to either: GROUP or ANYONE - OR - list authorized users individually.
API Call Requirements
You must provide the following parameters in your API calls:
- Controller Channel
- Command
- Signal Set ID / Garage Door ID
- 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