OpenDevice Events Guide

Size: px
Start display at page:

Download "OpenDevice Events Guide"

Transcription

1 OpenDevice Events Guide 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

2 Table of Contents Open Device Events... 3 Granted Access Events... 8 Denied Events Emergency Events Area Control Events System Events Elevator Events Asset Events Fire Events Intercom Events Video Events Transmitter Events Biometric Events Muster Events Generic Events Point Of Sale Events Status Messages Index United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

3 Open Device Events Open Device Events Revision History Date Author Notes 10/10/2007 R. Cortese Added missing Category 0 events up through the 6.0.xxx release 03/27/2003 M. Serafin Added a section with some examples. 03/25/2003 M. Serafin Added additional events that have been added for the xx releases (these are located in the Denied, System, Intercom, Video, and Generic event types). 12/10/2002 M. Serafin Added note indicating that a copy of the LNLMESSAGE structure was created for backwards compatibility. The following events have been added: L_SYSTEM_MAX_BIO_TEMPLATES_REA CHED, L_SYSTEM_ACKNOWLEDGMENT_ACTI ON_EXECUTED, L_SYSTEM_ACKNOWLEDGMENT_ACTI ON_FAILED Overview The Lenel Communication Server receives messages from various Device Translators that are then passed on to programs like Alarm Monitoring and also saves the messages to the database. The majority of these messages represent events that have occurred on a hardware device. Since the various hardware devices return these events differently, there needs to be a common method so that the Lenel Communication Server doesn t need to care which hardware device sent the message. The Device Translator for the hardware would be the one responsible for translating the device specific event message into the generic event message that the Lenel Communication server and other applications understand. This section of the document goes into a little more detail explaining each individual event. Each event will be based on two IDs. The first ID is the and the second ID is the which is unique for the. These events are stored in the database based on the and. Besides the number for the event, an event will also be given a name and also a description. The description will explain things like how and when this event can be generated. The current list of available s are listed below: s: 0 Access Granted 1 Access Denied 2 Emergency 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

4 3 Area Control 4 System 5 Asset 6 Host Message (Lenel Communication Sever internal use) 7 Fire 8 Fire (not currently being used) 9 Fire (not currently being used) 10 Intercom 11 Video 12 Transmitter Reserved 18 Biometric 19 Trouble 20 Digitize 21 Burglary 22 Temperature 23 Gas 24 Relay Sounder 25 Medical 26 Water 27 C Open/Close 29 Mustering 30 Generic 31 Point of Sale Also associated with each event is a unique ID which is currently only being used on a very limited basis and is not used when passing back events from the hardware. Some events will have information about an Event Pair, this includes the Pair Type (Initiating or Restoring) and ID of the event it is paired with. These are used for events that actually occur in pair with another event. One example is Door Forced Open and Door Forced Open Cancelled. The Door Forced Open is an Initiating event and the Door Forced Open Cancelled is a Restoring event, so these would be the Pair Types. The Event Pair for the Door Forced Open would be the number of the Door Forced Open Cancelled and vice versa for the Door Forced Open Cancelled event. When an event is received from the hardware by a Device Translator, the Device Translator needs to translate the event and fill out the LNLMESSAGE structure to be passed on to the Lenel Communication Server. Certain events will also need to pass back additional information like what the input number was for an input that was activated or any other additional information that is required. The LNLMESSAGE structure is explained in more detail in the IDistributeEvent documentation. The events listed below will list the fields that should be filled in for each event United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

5 Note: For releases after the xx release, the existing LNLMESSAGE was renamed OLDLNLMESSAGE for backwards compatibility. There are a few fields of the LNLMESSAGE structure that should always be filled in. These are described below and are the same for all of the events so they have not been repeated for every event. sl_size sb_messagetype sl_serialnumber sl_time Size of this structure. This variable can be set using a statement like: sizeof(lnlmessage). Type of message: 0 - LNLMSG_TYPE_EVENT 1 - LNLMSG_TYPE_STATUS 2 - LNLMSG_TYPE_VIDEOEVENT 3 Reserved for Lenel Communication Server internal use. All the events listed below in this document are of type LNLMSG_TYPE_EVENT unless otherwise noted. Serial number of the event. The Serial Number along with the Panel ID is used to create a unique index in the database for the events. When using the base Device Translator template the following method can be used to return the serial number: GetPanelEventSerialNumber(). Time of the event. This time is represented in UTC time (also known as GMT time). Some devices may not have a concept of time so the Device Translator is responsible of assigning a time to the event. One method located in that can be used is: g_otimeconverter.getcurrentgmttime(). When possible the time should be grabbed from the device. Examples The following examples will show a few different ways of using the LNLMESSAGE for passing back event messages and status messages. The WriteEventsToClients method (located in DeviceTranslator.h) can be used for sending these events on to the Communication Server. See the documentation on the IDistributeEvent interface for more information. Below is an example of sending a Communication Restored event: LNLMESSAGE ls_event; memset( &ls_event, '\0', sizeof(ls_event)); 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

6 ls_event.sl_size = sizeof(lnlmessage); ls_event.sl_serialnumber = GetPanelEventSerialNumber(); ls_event.sl_time = g_otimeconverter.getcurrentgmttime(); //time(null); ls_event. = m_panelid; ls_event. = L_EVENTTYPE_SYSTEM; ls_event. = L_SYSTEM_COMM_RESTORED; WriteEventsToClients (&ls_event); The first thing that is done is initialize the LNLMESSAGE structure to all zeroes, this is the default. The size of the structure should also be set, validation is done in the Communication Server so that it can determine that it is receiving a valid message. The serial number also needs to be set and this is done by calling GetPanelEventSerialNumber. The serial number along with the panel ID is a unique ID that is associated to the event and is used when saving the event to the database and also by clients that receive the event. The time also needs to be set to UTC. In the example above a method is used to grab the current UTC time from the local machine. If the device has its own internal clock and can store events you will want to use the time from the device and not the local machine. Next the device ID is set, for this event we are generating it for the panel so only the Panel ID is set. If it is for a downstream device the and sb_inputdevid variables could also be set to reflect this. The event to use will also need to be set as well, and this consists of the event type () and the event ID (). This is the basic information that needs to be filled in. Here is another example that sends an intercom event indicating that a call has been placed to an open subscriber. LNLMESSAGE ls_event; memset( &ls_event, '\0', sizeof(ls_event)); ls_event.sl_size = sizeof(lnlmessage); ls_event.sl_serialnumber = GetPanelEventSerialNumber(); ls_event.sl_time = g_otimeconverter.getcurrentgmttime(); ls_event. = m_panelid; ls_event. = station1; ls_event. = L_EVENTTYPE_INTERCOM; ls_event. = L_INTERCOM_CALL_TO_OPEN; ls_event. = EVENT_DATA_TYPE_INTERCOM; ls_event.su_eventdata.us_intercomdata.sl_intercomdata = station2; WriteEventsToClients (&ls_event); In this example it is pretty similar to the first example with a few differences. The first difference is that this is an event for a downstream device (an intercom station off of an intercom exchange) and it actually is using the event data union to pass back additional data with this event. You will see that it sets to EVENT_DATA_TYPE_INTERCOM to 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

7 indicate that the intercom data structure is being used, and it then sets sl_intercomdata in this structure to station2, which is the intercom station that the first intercom station (station1) called. The next example below shows an example of how to send an LNLMESSAGE for status. Status messages are not saved to the database and do not display as an event in Alarm Monitoring. They are handled behind the scenes to update the status in Alarm Monitoring. The example below is used to indicate the free_memory available in the panel: LNLMESSAGE ls_event; memset( &ls_event, '\0', sizeof(ls_event)); ls_event.sl_size = sizeof(lnlmessage); ls_event.sl_time = g_otimeconverter.getcurrentgmttime(); ls_event.sl_serialnumber = GetPanelEventSerialNumber(); ls_event. = m_panelid; ls_event.sb_messagetype = LNLMSG_TYPE_STATUS; ls_event. = REQUEST; ls_event.su_eventdata.us_statusrequest.sl_statustype = DATA_SRQ_PANEL_MEM_FREE; ls_event.su_eventdata.us_statusrequest.sl_status = free_memory; WriteEventsToClients ( &ls_event ); You will notice that these messages are created in a similar fashion to a basic event. First the LNLMESSAGE is initialized to all zeroes and the size is set. Next the time and the serial number are set. These are really not required for these messages but it does not hurt to set them. The panel ID is also set. In this example you will see that the sb_messagetype is set to LNLMSG_TYPE_STATUS to indicate a status message. In the earlier examples this was not set because the default is LNLMSG_TYPE_EVENT (0). The DATA_STATUSREQUEST structure is used to pass back the details of the status so the needs to be set to REQUEST. Then the type of status request needs to be set and in this case we are setting sl_statustype to DATA_SRQ_PANEL_MEM_FREE and then setting the status via sl_status to the available free memory in the panel. There are other defines listed in lmsgtype.h that contain _SRQ_ in the define which are for the other statuses that can be sent United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

8 Granted Access Events Access Granted This event is used to indicate that the cardholder was granted access. ID 1 0 (L_EVENTTYPE_GRANTED) 0 (L_GRANTED_ACCESS) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID of cardholder. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted On Facility Code Indicates an access granted based on facility code. ID 2 0 (L_EVENTTYPE_GRANTED) 1 (L_GRANTED_FACILITYCODE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Facility code. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted No Entry Made Indicates an access granted but no entry was made. ID 3 0 (L_EVENTTYPE_GRANTED) 2 (L_GRANTED_NOENTRYMADE) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

9 ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID of cardholder. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted On Facility Code, No Entry Made This event indicates an access granted based on facility code, but no entry was made. ID 4 0 (L_EVENTTYPE_GRANTED) 3 (L_GRANTED_FCNOENTRYMADE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Facility code. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted: Reader Unlocked Access to the reader was granted because the reader was in the unlocked mode. ID (L_EVENTTYPE_GRANTED) 8 (L_GRANTED_READER_UNLOCKED) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Open Door Command Issued - Door Used A command was issued to open a door contact and the door was opened United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

10 ID (L_EVENTTYPE_GRANTED) 10 (L_GRANTED_HOST_OPEN_DOOR_USED) Panel ID Device ID (Reader) Open Door Command Issued - Door Not Used A command was issued to open a door contact and the door was not opened. ID (L_EVENTTYPE_GRANTED) 10 (L_GRANTED_HOST_OPEN_DOOR_NOT_USED) Panel ID Device ID (Reader) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

11 Denied Events Invalid Card Format This event is used to indicate an invalid card format was detected. ID 6 1 (L_EVENTTYPE_DENIED) 0 (L_DENIED_INVALIDCARDFORMAT) ID of panel. ID of reader. EVENT_DATA_TYPE_CNA su_eventdata.us_datacna.sl_cardnumber 0 Denied Count Exceeded Currently this event is not being used. ID 7 1 (L_EVENTTYPE_DENIED) 1 (L_DENIED_DENYCOUNTEXCEEDED) Sb_DeviceID Device ID (Reader) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

12 Denied, PIN Only Request Indicates an attempt to access a reader using only a PIN code. ID 8 1 (L_EVENTTYPE_DENIED) 2 (L_DENIED_REQUESTBYPINONLY) Invalid Facility Code Event that indicates that an invalid facility code. ID 9 1 (L_EVENTTYPE_DENIED) 3 (L_DENIED_INVALIDFACILITYCODE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_FC su_eventdata.us_datafc.sl_facilitycode Invalid facility code. su_eventdata.us_datafc.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Invalid Badge Event that indicates an invalid badge. ID 10 1 (L_EVENTTYPE_DENIED) 4 (L_DENIED_INVALIDBADGE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Invalid badge number. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

13 Invalid Issue Code Event that indicates an invalid issue code. ID 11 1 (L_EVENTTYPE_DENIED) 5 (L_DENIED_INVALIDISSUECODE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Invalid PIN Number Event that indicates an invalid PIN number was used. ID 12 1 (L_EVENTTYPE_DENIED) 6 (L_DENIED_INVALIDPIN) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Invalid Access Level Event that indicates that the cardholder doesn t have the proper access level. ID 13 1 (L_EVENTTYPE_DENIED) 7 (L_DENIED_INVALIDACCESSLEVEL) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

14 event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge number. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Inactive Badge Event that indicates that the badge is inactive. ID 14 1 (L_EVENTTYPE_DENIED) 8 (L_DENIED_INACTIVEBADGE) ID of panel. ID of reader. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge number. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Denied, Reader Excluded Generated when access was denied because the reader exclusion list was violated. This happens when using precision access exclusion and the cardholder has access to the reader via an access level, but the precision access exclusion list has removed access. ID 15 1 (L_EVENTTYPE_DENIED) 9 (L_DENIED_READEREXCLUDED) Reader ID. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

15 Denied, No Command Authority Event indicating that the deny was because of no command authority. ID 16 1 (L_EVENTTYPE_DENIED) 10 (L_DENIED_CMDAUTHORITY) Reader ID. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Denied UnMask Active Zones in Group Event indicating that the unmasking was denied because there were active zones in the group. ID 17 1 (L_EVENTTYPE_DENIED) 11 (L_DENIED_DENIEDMASK) Reader ID. sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Use Limit Exceeded Event that indicates that a badge was denied because the use limit was exceeded. ID 18 1 (L_EVENTTYPE_DENIED) 12 (L_DENIED_USELIMITEXCEEDED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

16 EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge number. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Denied Low Battery When the main battery level in the hardware (reader) begins to fall lower than the "alarm zone", there will not be sufficient power to perform token validation. The reader will therefore deny access to the token presented and this event is generated. This event serves to force the operator to change the battery, before it is too late. ID (L_EVENTTYPE_DENIED) 15 (L_DENIED_LOW_BATTERY) Device ID. EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Biometric Mismatch Event indicating that access to the reader was denied because of a biometric mismatch. ID (L_EVENTTYPE_DENIED) 17 (L_DENIED_BIOMETRIC_MISMATCH) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Access Denied: Reader Locked Access to the reader was denied because the reader is in locked mode. ID (L_EVENTTYPE_DENIED) 18 (L_DENIED_READER_LOCKED) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

17 Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Denied - No Host Approval Access to the reader was denied because no host approval was received. ID (L_EVENTTYPE_DENIED) 26 (L_DENIED_NO_HOST_APPROVAL) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Denied - Unauthorized Assets Access to the reader was denied because of unauthorized assets. ID (L_EVENTTYPE_DENIED) 27 (L_DENIED_UNAUTHORIZED_ASSETS) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Access Denied: No Biometric Template Generated when the cardholder did not have a biometric template loaded in the database, so a verification could not be done. ID (L_EVENTTYPE_DENIED) 28 (L_DENIED_NO_BIO_RECORD) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

18 su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Access Denied: Biometric Reader Offline Generated when the alternate biometric reader could not be contacted for verification (was offline ID (L_EVENTTYPE_DENIED) 29 (L_DENIED_NO_BIO_DEVICE) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) Smart Card Authentication Failed Generated when a smart card authentication failed ID (L_EVENTTYPE_DENIED) 33 (L_DENIED_SC_AUTHENTICATION_FAILED) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code Access Denied: Escort Timeout Expired This event indicates that access was denied because a person requiring an escort attempted access but an escort did not present their credentials in the time period ID (L_EVENTTYPE_DENIED) 34 (L_DENIED_ESCORT_TIMEOUT) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

19 Access Denied: Area Occupied An event indicating that access was denied due to the room being empty. ID (L_EVENTTYPE_DENIED) 36 (L_DENIED_SPC_TWOMAN_MAY_NOT_EXIT) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number Access Denied: No Occupant Approval An event indicating that access was denied due to no occupant approval. ID (L_EVENTTYPE_DENIED) 37 (L_DENIED_SPC_TWOMAN_NO_APPROVAL) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number Denied, Badge Not in Panel A badge was used at a reader but does not exist in the panel due to the Selective Cardholder Download configuration. ID (L_EVENTTYPE_DENIED) 38 (L_DENIED_BADGE_NOT_IN_PANEL) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber -1 Access Denied: Area Empty An event indicating that access was denied due to the room being empty United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

20 ID (L_EVENTTYPE_DENIED) 35 (L_DENIED_SPC_TWOMAN_AREA_EMPTY) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number Access Denied: Asset Required An event indicating that access was denied since no asset was presented for the access attempt. ID (L_EVENTTYPE_DENIED) 39 (L_DENIED_ASSET_REQUIRED) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number Access Denied This event is used to indicate that the cardholder was denied access. ID (L_EVENTTYPE_DENIED) 65 (L_DENIED_ACCESS) ID of panel. ID of reader. EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID of cardholder. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

21 Emergency Events Access Granted Under Duress Event that indicates that cardholder was granted access under duress. ID 20 2 (L_EVENTTYPE_EMERGENCY) 0 (L_EMERGENCY_GRANTEDDURESS) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Denied Under Duress Event that indicates that cardholder was denied access under duress. ID 21 2 (L_EVENTTYPE_EMERGENCY) 1 (L_EMERGENCY_DENIEDDURESS) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted Under Duress No Entry Made Event that indicates that cardholder was granted access under duress but no entry was made. ID 22 2 (L_EVENTTYPE_EMERGENCY) 2 (L_EMERGENCY_GRANTEDNOENTRY) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

22 su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

23 Area Control Events Anti-Passback Violation Event that is used to indicate an anti-passback violation. ID 23 3 (L_EVENTTYPE_AREACONTROL) 0 (L_AREA_ANTIPASSBACKVIOLATION) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Area Limit Exceeded Event that indicates that an area limit has been exceeded. ID 24 3 (L_EVENTTYPE_AREACONTROL) 1 (L_AREA_AREALIMITEXCEEDED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Timeout Exceeded No Second Card Event that indicates that a second card was not presented to the reader during the time limit when using two-man control. ID 25 3 (L_EVENTTYPE_AREACONTROL) 2 (L_AREA_TIMEOUTEXCEEDED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

24 EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Area Closed Event that indicates that the area is closed. ID 26 3 (L_EVENTTYPE_AREACONTROL) 3 (L_AREA_AREACLOSED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted - Anti-Passback Used Event that indicates an access granted using anti-passback. ID 27 3 (L_EVENTTYPE_AREACONTROL) 4 (L_AREA_GRANTEDAPBUSED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader (0 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Access Granted - Anti-Passback Not Used Event that indicates an access granted not using anti-passback. ID 28 3 (L_EVENTTYPE_AREACONTROL) 5 (L_AREA_GRANTEDAPBNOTUSED) sb_inputarg Used to indicate the elevator floor number when event is generated for an elevator reader ( United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

25 indicates no floor number associated with event). EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Anti-Passback Invalid Exit Reader Currently this event is not used. ID 29 3 (L_EVENTTYPE_AREACONTROL) 6 (L_AREA_APB_INVALID_EXIT_RDR) Anti-Passback Invalid Entry Reader Currently this event is not used. ID 30 3 (L_EVENTTYPE_AREACONTROL) 7 (L_AREA_APB_INVALID_ENTRY_RDR) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

26 System Events Not Configured Event used to indicate that a device is not configured in the system. ID 33 0 (L_SYSTEM_OFFLINE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Alarm Canceled Indicates that an alarm active condition has been canceled. Event Pair Restoring (35). ID 34 1 (L_SYSTEM_ONLINE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Alarm Active Event used to indicate that an alarm active for a device. Event Pair Initiating (34) ID 35 2 (L_SYSTEM_ALARM) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

27 Tamper Alarm Active Currently this event is not being generated. See the cabinet tamper events. ID 36 3 (L_SYSTEM_TAMPER) Line Error Active Event used to indicate a line error active condition. Event Pair Initiating (55) ID 37 4 (L_SYSTEM_LINEERROR) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Shorted Line Alarm Active Event used to indicate a shorted line alarm active condition. Event Pair Initiating (56) ID 38 5 (L_SYSTEM_SHORTEDLINE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Open Line Alarm Active Event used to indicate an open line alarm active condition. Event Pair Initiating (57) ID 39 6 (L_SYSTEM_OPENLINE) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

28 sb_inputdevid Sub device ID (0 if event is for panel). Input device ID (0 if event is for sub device or panel). Grounded Loop Alarm Active Event used to indicate a grounded loop alarm active condition. Event Pair Initiating (58) ID 40 7 (L_SYSTEM_GROUNDEDLOOP) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Door Forced Open Event used to indicate that a door forced open condition exists. Event Pair Initiating (42) ID 41 8 (L_SYSTEM_FORCEDOPEN) Panel ID Sub device ID (0 if event is for panel). Door Forced Open Canceled Event used to indicate that a door forced open condition has been canceled. Event Pair Restoring (41) ID 42 9 (L_SYSTEM_FORCEDCANCEL) Panel ID Sub device ID (0 if event is for panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

29 Door Held Open Event used to indicate a door held open condition. Event Pair Initiating (44) ID (L_SYSTEM_HELDOPEN) Panel ID Sub device ID (0 if event is for panel). Door Held Open Canceled Event used to indicate a door held open condition has been canceled. Event Pair Restoring (43) ID (L_SYSTEM_HELDOPEN) Panel ID Sub device ID (0 if event is for panel). Reader Input Tamper Event used to indicate a reader input tamper. The sub device for this event is the reader. Event Pair Initiating (48) ID (L_SYSTEM_READERINPUT) Panel ID Sub device ID (0 if event is for panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

30 Reader Input Tamper Canceled This event is used to indicate a reader input tamper condition has been canceled. The sub device for this event is the reader. Event Pair Restoring (47) ID (L_SYSTEM_READERINPUTCANCEL) Panel ID Sub device ID (0 if event is for panel). Door Contact Tamper Event used to indicate a door contact tamper condition. The sub device for this event is the reader. Event Pair Initiating (50) ID (L_SYSTEM_DOORCONTACT) Panel ID Sub device ID (0 if event is for panel). Door Contact Tamper Canceled Event used to indicate a door contact tamper condition has been canceled. The sub device for this event is the reader. Event Pair Restoring (49) ID (L_SYSTEM_DOORCONTACTCANCEL) Panel ID Sub device ID (0 if event is for panel). Cabinet Tamper Event used to indicate a cabinet tamper on a device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

31 Event Pair Initiating (52) ID (L_SYSTEM_CABINETTAMPER) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Canceled Cabinet Tamper Event used to indicate a cabinet tamper has been canceled. Event Pair Restoring (51) ID (L_SYSTEM_CABINETCANCEL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Power Failure Event used to indicate a power failure on a device. Event Pair Initiating (54) ID (L_SYSTEM_POWERFAILURE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Canceled Power Failure Event used to indicate a power failure condition has been canceled. Event Pair Restoring (53) ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

32 sb_inputdevid 21 (L_SYSTEM_POWERCANCEL) Panel ID Sub device ID (0 if event is for panel). Input device ID (0 if event is for sub device or panel). Canceled Line Error Event used to indicate that a line error condition has been canceled. Event Pair Restoring (37) ID (L_SYSTEM_LINEERRORCANCEL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Canceled Shorted Line Event used to indicate that a shorted line condition has been canceled. Event Pair Restoring (38) ID (L_SYSTEM_SHORTEDLINECANCEL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Canceled Open Line Event used to indicate that an open line condition has been canceled. Event Pair Restoring (39) ID (L_SYSTEM_OPENLINECANCEL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

33 Canceled Grounded Loop Event used to indicate that a grounded loop condition has been canceled. Event Pair Restoring (40) ID (L_SYSTEM_GROUNDEDLOOPCANCEL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Panel Power Up Complete Event used to indicate that the panel power up is complete. ID (L_SYSTEM_POWERUPEVENT) su_eventdata.us_datastatuschg.sw_comstatus 0 Full Panel Download Started This event is used internally by the Lenel Communication Server to indicate that a full database download has started. ID (L_SYSTEM_DOWNLOAD_STARTED) sb_inputdevid Data type. REQUEST Database Error in Panel Download This event is used internally by the Lenel Communication Server to indicate that a full database download had an error (database) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

34 ID (L_SYSTEM_DOWNLOAD_DB_ERROR) Device ID. sb_inputdevid Data type. Driver Error In Panel Download This event is used internally by the Lenel Communication Server to indicate that a full database download had an error (driver) ID (L_SYSTEM_DOWNLOAD_DRIVER_ERROR) Device ID. sb_inputdevid Data type. Full Panel Download Completed This event is used internally by the Lenel Communication Server to indicate that a full database download has completed. ID (L_SYSTEM_DOWNLOAD_FINISHED) sb_inputdevid Data type. REQUEST Relay Contact Activated Event used to indicate that a relay contact has been activated. ID (L_SYSTEM_OUTPUT_OPEN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

35 Relay Contact Deactivated Event used to indicate that a relay contact has been deactivated. ID (L_SYSTEM_OUTPUT_CLOSED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Host Executed Function List Generated when a function list has been executed from the host. ID (L_SYSTEM_HOSTTRIGGERED_FUNCTION) EVENT_IV_TYPE_HOST Door Shunt Command Executed From Reader Event indicating that the door shunt command executed from the reader. ID (L_SYSTEM_DOOR_SHUNT_CMD) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ su_eventdata.us_datacmdreq.sl_cardnumber Card Number (Optional) Command Pin+10 Set From Reader Event indicating that the Pin+10 command was executed at the reader. ID (L_SYSTEM_SET_FUNC_TRUE_CMD) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

36 Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (Optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (Optional) Command Pin+20 Set From Reader Event indicating that the Pin+20 reader command was executed at the reader. ID (L_SYSTEM_SET_FUNC_FALSE_CMD) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (Optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (Optional) Door Shunt Command Results - Canceled Event indicating that the door shunt command results was a cancel. ID (L_SYSTEM_DOOR_SHUNT_CMD_RESULTS) Panel ID Reader ID. EVENT_IV_TYPE_CMD_RES su_eventdata.us_datacmdres.sb_results??? Command 4 Set From Reader Reader command 4 was executed. ID (L_SYSTEM_SET_FUNC_CMD4) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

37 Command 5 Set From Reader Reader command 5 was executed. ID (L_SYSTEM_SET_FUNC_CMD5) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 6 Set From Reader Reader command 6 was executed. ID (L_SYSTEM_SET_FUNC_CMD6) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 7 Set From Reader Reader command 7 was executed. ID (L_SYSTEM_SET_FUNC_CMD7) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 8 Set From Reader Reader command 8 was executed. ID (L_SYSTEM_SET_FUNC_CMD8) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

38 Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 9 Set From Reader Reader command 9 was executed. ID (L_SYSTEM_SET_FUNC_CMD9) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 10 Set From Reader Reader command 10 was executed. ID (L_SYSTEM_SET_FUNC_CMD10) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 11 Set From Reader Reader command 11 was executed. ID (L_SYSTEM_SET_FUNC_CMD11) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

39 Command 12 Set From Reader Reader command 12 was executed. ID (L_SYSTEM_SET_FUNC_CMD12) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 13 Set From Reader Reader command 13 was executed. ID (L_SYSTEM_SET_FUNC_CMD13) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 14 Set From Reader Reader command 14 was executed. ID (L_SYSTEM_SET_FUNC_CMD14) Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Command 15 Set From Reader Reader command 15 was executed. ID (L_SYSTEM_SET_FUNC_CMD15) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

40 Panel ID Reader ID. EVENT_IV_TYPE_CMD_REQ (optional) su_eventdata.us_datacmdreq.sl_cardnumber Card number (optional) Communications Lost Event used to indicate that communication has been lost to the device. Event Pair Initiating (110) ID (L_SYSTEM_COMM_LOST) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_devicetype if is an input channel from a Video Camera then set this variable to L_DEVICETYPE_CCTVCAMERA otherwise set it equal to 0 Communications Restored Event used to indicate that communication to the device has been restored. Event Pair Restoring (109) ID (L_SYSTEM_COMM_RESTORED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_devicetype if is an input channel from a Video Camera then set this variable to L_DEVICETYPE_CCTVCAMERA otherwise set it equal to 0 Local I/O Executed Function List Event used to indicate that a Global I/O function list was executed. ID (L_SYSTEM_GIO_FUNC_LIST) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

41 sb_inputarg sb_iv Operation executed on function list: 1 - False 2 - True 3 Pulse Function list ID. Watch Tour Station Late Currently this event is not being used. ID (L_SYSTEM_SYS_TOUR_LATE) Disk Full Warning Currently this event is not being used. ID (L_SYSTEM_SYS_DISK_FULL) Database Error: Event Polling Stopped Event generated by the Communication Server to indicate to Alarm Monitoring that the event polling has stopped because of a database problem (events could not be written to the database). ID (L_SYSTEM_DB_ERR_POLLING_STOPPED) Panel ID Dialup Stored Command Limit Exceeded Event generated by the Communication Server to indicate that the number of stored commands for the dialup panel has been exceeded (based on the setting in the ACS.INI file). ID (L_SYSTEM_DIALUP_LOWWATERMARK) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

42 Dialup Last Connection Time Expired Event generated by the Communication Server to indicate that a dialup has not called back (connected) within a certain amount of time (configured in the ACS.INI file). ID (L_SYSTEM_DIALUP_LASTTIMEEXPIRED) Panel ID Low Voltage Event used to indicate a low voltage condition for a device. ID (L_SYSTEM_LOW_VOLTAGE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Low Voltage Restored Event used to indicate that a low voltage condition has been restored. ID (L_SYSTEM_LOW_VOLTAGE_RESTORED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Communication Path Switch - Primary to Secondary Event used to indicate that the communications switched from the primary communication path to the secondary communication path. This is used when dual paths are being used. ID (L_SYSTEM_COMM_SWITCH_ALT 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

43 Communication Path Switch - Secondary to Primary Event used to indicate that the communications switched from the secondary communication path to the primary communication path. This is used when dual paths are being used. ID (L_SYSTEM_COMM_SWITCH_PRI) Secondary Communication Path Lost Event used to indicate that the secondary communication path was lost. This is used when dual paths are being used. ID (L_SYSTEM_COMM_ALT_LOST) Secondary Communication Path Restored Event used to indicate that the secondary communication path was restored. This is used when dual paths are being used. ID (L_SYSTEM_COMM_ALT_RESTORE) Primary Communication Path Lost Event used to indicate that the primary communication path was lost. This is used when dual paths are being used. ID (L_SYSTEM_COMM_PRI_LOST) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

44 Primary Communication Path Restored Event used to indicate that the primary communication path was restored. This is used when dual paths are being used. ID (L_SYSTEM_COMM_PRI_RESTORE) Reader Mode Facility Code Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode. ID (L_SYSTEM_RDR_MODE_FC) Device ID. Reader Mode Card Only Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode. ID (L_SYSTEM_RDR_MODE_CARD_ONLY) Device ID. Reader Mode First Card Unlock Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode. ID (L_SYSTEM_RDR_MODE_1ST_CARDUNLCK) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

45 Device ID. Reader Mode Unlocked Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode. ID (L_SYSTEM_RDR_MODE_UNLOCKED) Device ID. Reader Mode Locked Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode. ID (L_SYSTEM_RDR_MODE_LOCKED) Device ID. Reader Reset This event is generated whenever the firmware resets the reader. This can happen when the firmware detects the reader needs to be reset. This occurs if the reader is brand new. This can also be due to a failed/incomplete download, or other internal conditions that cause the firmware to reset such as detecting possible corrupt memory, etc. In such cases, the firmware will rewrite its entire storage with default values, thus overwriting the downloaded values. The user must reprogram the lockset when this happens. ID (L_SYSTEM_READER_RESET2) Device ID. Key Override Key override United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

46 ID (L_SYSTEM_KEY_OVERRIDE) Device ID. Transfer, PDA To Lock This event is generated when the device (lockset) is programmed / reprogrammed through a download (from a PDA). ID (L_SYSTEM_TRANSFER_PDA_TO_LOCK) Device ID. EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Transfer, History This event is generated when the history data is transferred from a device to a parent device (panel). ID (L_SYSTEM_TRANSFER_HISTORY) Device ID. EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Transfer, Diagnostics This event is generated whenever a user logs in to the device for diagnostics purposes. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

47 207 (L_SYSTEM_TRANSFER_DIAGNOSTICS) Device ID. EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Badge ID. su_eventdata.us_dataca.sl_issuecode Issue code of the badge (-1 indicates that the issue code is not available). Input Masked Input became masked. ID (L_SYSTEM_INPUT_MASKED) Panel ID Device ID sb_inputdevid Input ID Input Unmasked Input became unmasked. ID (L_SYSTEM_INPUT_UNMASKED) Panel ID Device ID sb_inputdevid Input ID Door Forced Open Masked Door Forced Masked. ID (L_SYSTEM_DOOR_FORCED_MASKED) Panel ID Device ID (Reader) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

48 Door Forced Open Unmasked Door Forced Unmasked. ID (L_SYSTEM_DOOR_FORCED_UNMASKED) Panel ID Device ID (Reader) Door Held Open Masked Indicates that the mask for the door held open has become masked. ID (L_SYSTEM_DOOR_HELDOPEN_MASKED) Panel ID Device ID (Reader) Door Held Open Unmasked Indicates that the mask for door held open became unmasked. ID (L_SYSTEM_DOOR_HELDOPEN_UNMASKED) Panel ID Device ID (Reader) Reader Mode Pin or Card Indicates that the reader mode changed to Pin or Card. ID (L_SYSTEM_RDR_MODE_PIN_OR_CARD) Panel ID Device ID (Reader) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

49 Reader Mode Card and Pin Indicates that the reader mode changed to Pin and Card. ID (L_SYSTEM_RDR_MODE_PIN_AND_CARD) Panel ID Device ID (Reader) Panel Options Mismatch Event that indicates that the current options in the panel differ from what is configured in the database. ID (L_SYSTEM_PANEL_OPTIONS_MISMATCH) Panel ID Max Cardholders Reached Event used to indicate that the max number of cardholders for the controller has been reached during a database download. All remaining cardholders will not be sent to the panel. ID (L_SYSTEM_MAX_CARDHOLDERS_REACHED) Panel ID Max Assets Reached Event used to indicate that the max number of assets for the controller has been reached during a database download. All remaining assets will not be sent to the panel. ID (L_SYSTEM_MAX_ASSETS_REACHED) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

50 Failed To Report Expected Event Indicates that a device that is supposed to report in has failed to do so. ID (L_SYSTEM_FAILED_TO_REPORT) Panel ID Scheduler Action Failed Used to indicate that a scheduler action failed. ID (L_SYSTEM_SCHEDULER_ACTION_FAILED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the description of the action. Scheduler Action Executed Used to indicate that a scheduler action has executed. ID (L_SYSTEM_SCHEDULER_ACTION_EXECUTED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the description of the action. Guard Tour Action Failed Used to indicate that a guard tour action failed. ID (L_SYSTEM_GUARD_TOUR_ACTION_FAILED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

51 description of the action. Guard Tour Action Executed Used to indicate that a guard tour action has executed. ID (L_SYSTEM_GUARD_TOUR_ACTION_EXECUTED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the description of the action. Global Linkage Action Failed Used to indicate that a global linkage action failed. ID (L_SYSTEM_GLOBAL_LINKAGE_ACTION_FAILED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the description of the action. Global Linkage Action Executed Used to indicate that a Global Linkage action has executed. ID (L_SYSTEM_GLOBAL_LINKAGE_ACTION_EXECUTED) sl_segmentid Segment ID sb_associatedtext Action events contain associated text with the description of the action. Invalid Device Serial Number Event used to indicate that the device has an invalid serial number. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

52 427 (L_SYSTEM_INVALID_DEVICE_SERIAL_NUMBER) Device ID. Invalid Device Type Mismatch Event used to indicate that the device type is incorrect. ID (L_SYSTEM_DEVICE_TYPE_MISMATCH) Device ID. Panel ID Mismatch Event used to indicate that panel ID doesn t match what is expected. ID (L_SYSTEM_PANEL_ID_MISMATCH) Panel Free Memory Low Event used to indicate that the free memory in the panel/controller is low. ID (L_SYSTEM_PANEL_FREE_MEMORY_LOW) First Card Unlock Mode Enabled Generated when first card unlock mode is enabled for a door. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

53 (L_SYSTEM_FIRST_CARD_UNLOCK_MODE_ENABLED) Device ID (Reader ID) First Card Unlock Mode Disabled Generated when first card unlock mode is disabled for a door. ID (L_SYSTEM_FIRST_CARD_UNLOCK_MODE_DISABLED) Device ID (Reader ID) Extended Held Open Mode Enabled Generated when extended held open mode is enabled. ID (L_SYSTEM_EXTENDED_HELD_OPEN_MODE_ENABLED) Device ID (Reader ID) Extended Held Open Mode Disabled Generated when extended held open mode is disabled. ID (L_SYSTEM_EXTENDED_HELD_OPEN_MODE_DISABLED) Device ID (Reader ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

54 Cipher Mode Enabled Generated when cipher mode is enabled for a reader. When this occurs card data can be entered via the keypad. ID (L_SYSTEM_CIPHER_MODE_ENABLED) Device ID (Reader ID) Cipher Mode Disabled Generated when Cipher mode is disabled for a reader. ID (L_SYSTEM_CIPHER_MODE_DISABLED) Device ID (Reader ID) Biometric Verify Mode Enabled Generated when biometric verify mode is enabled. ID (L_SYSTEM_BIO_VERIFY_MODE_ENABLED) Device ID (ReaderID) Biometric Verify Mode Disabled Generated when biometric verify mode is disabled. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

55 (L_SYSTEM_BIO_VERIFY_MODE_DISABLED) Device ID (ReaderID) Extended Held Command Denied Generated when an extended held command is denied. ID (L_SYSTEM_EXT_HELD_CMND_DENIED) Device ID (Reader ID) EVENT_DATA_TYPE_USERCMD su_eventdata.us_usercmddata.sl_cardnumber Card Number of user executing command sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). sl_eventparamvalue Command Denied ID to indicate the type of denial for the user command. Extended Held Command Set From Reader Generated when an extended held command is entered at the reader. ID (L_SYSTEM_EXT_HELD_CMND_ACCEPTED) Device ID (Reader ID) EVENT_DATA_TYPE_USERCMD su_eventdata.us_usercmddata.sl_cardnumber Card Number of user executing command Max Bio Templates Reached Indicates that the maximum biometric templates of a given type has been reached in the controller during a database download. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

56 535 (L_SYSTEM_MAX_BIO_TEMPLATES_REACHED) Acknowledgment Action Executed Indicates that an action has been executed from an alarm acknowledgment. ID (L_SYSTEM_ACKNOWLEDGMENT_ACTION_EXECUTED) Acknowledgment Action Failed Indicates that an action that was executed from an alarm acknowledgment failed. ID (L_SYSTEM_ACKNOWLEDGMENT_AC TION_FAILED) Alarm Monitoring Action Group Executed Indicates that an action group was executed from Alarm Monitoring. ID (L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_EXECUTED) Panel ID Alarm Monitoring Action Group Failed Indicates that an action group failed to be executed from Alarm Monitoring. ID (L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_FAILED) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

57 Communication Initialization Failed Used to indicate that initialization to the device failed. This is mainly used by the Communication Server when it fails to startup a controller because of a communication issue. ID (L_SYSTEM_COMMUNICATION_INIT_FAILED) Panel ID User Failed To Reach Destination Used by the Destination Assurance feature to indicate that a user (cardholder) failed to reach the destination in the allotted amount of time. ID (L_SYSTEM_USER_FAILED_TO_REACH_DESTINATION) Panel ID Unexpected Access Attempt Used by the Destination Assurance feature to indicate that a cardholder attempted access at an unexpected destination reader. ID (L_SYSTEM_UNEXPECTED_ACCESS_ATTEMPT) Panel ID Unexpected Access Used by the Destination Assurance feature to indicate that a cardholder gained access at an unexpected reader. ID (L_SYSTEM_UNEXPECTED_ACCESS) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

58 Reader Low Battery Generated when a reader has a low battery. ID (L_SYSTEM_READER_LOW_BATTERY) Device ID (Reader ID) Reader Low Battery Restored Generated when a reader low battery condition has been restored. ID (L_SYSTEM_READER_LOW_BATTERY_RESTORED) Device ID (Reader ID) Reader Motor Stalled Generated when the motor stalls on a reader. ID (L_SYSTEM_READER_MOTOR_STALLED) Device ID (Reader ID) Reader Motor Stalled Restored Generated when a motor stalled condition has been restored. ID (L_SYSTEM_READER_MOTOR_STALLED_RESTORED) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

59 Device ID (Reader ID) Controller Encryption Error Generated in several instances, including when: A controller is configured for a plain connection when it requires encryption. An encrypted controller is online, but its configuration is changed to a plain connection. A controller is configured for a plain connection, but then a physical controller swap is made where the new controller requires encryption. A controller that supports encryption is currently online with a plan connection, and then the DIR switch 8 is turned on. ID (L_SYSTEM_CONTROLLER_ENCRYPTION_ERROR) Controller Connection Mismatch Generated when the OnGuard attempts to make a connection to a controller by upgrading or degrading the connection while the controller is online. ID (L_SYSTEM_CONTROLLER_CONNECTION_MISMATCH) History Report Start Generated when a controller or device starts to report the contents of its internal event buffer. ID (L_SYSTEM_HISTORY_START) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

60 History Report End Generated when a controller or device ends reporting the contents of its internal event buffer. ID (L_SYSTEM_HISTORY_END) Point Enabled Generated when an input point is the system has been enabled. ID (L_SYSTEM_POINT_ENABLE) Device ID (Input point) Point Disabled Generated when an input point is the system has been disabled. ID (L_SYSTEM_POINT_DISABLE) Device ID (Input point) Door Open An event indicating that the door has opened. ID (L_SYSTEM_DOOR_OPEN) Device ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

61 Door Close Generated when a door closes. ID (L_SYSTEM_DOOR_CLOSE) Device ID Communications With Host Lost An event was generated by the hardware when communications with the host was lost. ID (L_SYSTEM_COMM_LOST_WITH_HOST) Communications With Host Restored An event was generated by the hardware when communications with the host was restored. ID (L_SYSTEM_COMM_RESTORED_WITH_HOST) Panel Event Capacity Exceeded - Events Overwritten Generated when the event log in the panel fills up and starts overwriting old events. ID (L_SYSTEM_EVENT_LOG_OVERWRITTEN) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

62 Communication Access Denied???. ID (L_SYSTEM_COMM_ACCESS_DENIED)??? Communication Access Restored???. ID (L_SYSTEM_COMM_ACCESS_RESTORED)??? Intrusion Command Denied An attempt to execute an intrusion command was denied, either the command is not allowed at the reader, the user is not authorized for this command or invalid command arguments were supplied. (L_SYSTEM_ARMDISARM_CMND_DENIED ID Device ID (Reader ID) EVENT_DATA_TYPE_USERCMD su_eventdata.us_usercmddata.sl_alarmmaskgroup Alarm Mask Group ID for command sb_eventparam Yes if enabled, otherwise 0 sl_eventparamvalue ID used to identify reason for denial. Intrusion Command Accepted An intrusion command was successfully executed. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

63 562 (L_SYSTEM_ARMDISARM_CMND_ACCEPTED) Device ID (Reader ID) EVENT_DATA_TYPE_USERCMD su_eventdata.us_usercmddata. Alarm Mask Group ID for command sl_alarmmaskgroup Alarm Mask Group Armed This event is generated when the alarm mask group is armed. ID (L_SYSTEM_ALARMMASKGROUP_ARMED) EVENT_DATA_TYPE_ALARMMASKGROUP su_eventdata.us_alarmmaskgroupdata. Alarm Mask Group ID that was armed sl_alarmmaskgroup Alarm Mask Group Disarmed This event is generated when the alarm mask group is disarmed. ID (L_SYSTEM_ALARMMASKGROUP_DISARMED) EVENT_DATA_TYPE_ALARMMASKGROUP su_eventdata.us_alarmmaskgroupdata. Alarm Mask Group ID that was disarmed sl_alarmmaskgroup Alarm Mask Group Force Armed This event is generated when the alarm mask group is force armed. ID (L_SYSTEM_ALARMMASKGROUP_FORCE_ARMED) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

64 su_eventdata.us_alarmmaskgroupdata. sl_alarmmaskgroup EVENT_DATA_TYPE_ALARMMASKGROUP Alarm Mask Group ID that was force armed Alarm Mask Group Mask Count Incremented This event is generated when a disarm command is issued and the alarm mask group is already disarmed, causing the alarm mask count to get incremented. The alarm mask group will still remain disarmed. (L_SYSTEM_ALARMMASKGROUP_COUNT_INCREME ID EVENT_DATA_TYPE_ALARMMASKGROUP su_eventdata.us_alarmmaskgroupdata. Alarm Mask Group ID that was incremented sl_alarmmaskgroup Alarm Mask Group Mask Count Decremented This event is generated when an arm or force arm command is issued and the alarm mask group has a mask count greater than 1, causing the mask count to be decremented. The alarm mask group will still remain disarmed. (L_SYSTEM_ALARMMASKGROUP_COUNT_DECREM ID EVENT_DATA_TYPE_ALARMMASKGROUP su_eventdata.us_alarmmaskgroupdata. Alarm Mask Group ID that was decremented sl_alarmmaskgroup Alarm Mask Group Arming Failure, Active Points The following command is used to indicate an arming failure due to active points. (L_SYSTEM_ALARMMASKGROUP_ARM_FAILURE_P ID EVENT_DATA_TYPE_ALARMMASKGROUP 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

65 su_eventdata.us_alarmmaskgroupdata. sl_alarmmaskgroup Alarm Mask Group ID that contained active points Elevator Terminal Mode Default Floor or User Entry of Destination Floor Generated when the elevator terminal mode has changed to Default Floor or User Entry of Destination Floor. ID (L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR) Device ID (Elevator Terminal ID) Unknown Elevator Terminal Generated when an elevator terminal is detected that has not been configured in the system. ID (L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL) Device ID (Elevator Terminal ID) Request to Exit - Door Used Generated when the request to exit is granted and the door is used. Note: If the Assumed Door Used checkbox is selected on the Readers form, then the door is assumed to be used. This might interfere with this event ID (L_SYSTEM_READER_REQUEST_TO_EXIT_USED) Device ID (Reader ID) Request to Exit - Door Not Used Generated when the request to exit is granted and the door is not used United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

66 Note: If the Assumed Door Used checkbox is selected on the Readers form, then the door is assumed to be used. This might interfere with this event ID (L_SYSTEM_READER_REQUEST_TO_EXIT_NOT_USED) Device ID (Reader ID) Invalid OEM Code Indicates that the hardware did not contain the expected OEM (Original Equipment Manufacturer) code. ID (L_SYSTEM_INVALID_OEM_CODE) Elevator Terminal Mode Default Floor Generated when the elevator terminal mode has changed to Default Floor Only.. ID (L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR) Device ID (Elevator Terminal ID) Elevator Terminal Mode Access to Authorized Floors Generated when the elevator terminal mode has changed to Access to Authorized Floors. ID (L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS) Device ID (Elevator Terminal ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

67 Elevator Terminal Mode User Entry of Destination Floor Generated when the elevator terminal mode has changed to User Entry of Destination Floor. ID (L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR) Device ID (Elevator Terminal ID) License Will Soon Expire Generated when the system license is reaching its expiration date. ID (L_SYSTEM_LICENSE_EXPIRES) Reader Offline Generated when a reader has been detected as being offline. ID (L_SYSTEM_READER_OFFLINE) Device ID (Reader ID) Reader Offline Restored Generated when a reader has been detected as no longer being offline. ID (L_SYSTEM_READER_OFFLINE_RESTORED) Device ID (Reader ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

68 Instant Command 16 Generated when the reader instant keypad command (#) was executed ID (L_SYSTEM_SET_INSTANT_CMD16) Device ID (Reader ID) Instant Command 17 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD17) Device ID (Reader ID) Instant Command 18 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD18) Device ID (Reader ID) Instant Command 19 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD19) Device ID (Reader ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

69 Instant Command 20 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD20) Device ID (Reader ID) Instant Command 21 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD21) Device ID (Reader ID) Instant Command 22 Generated when the reader instant keypad command (#) was executed. Need to add to Documentation. ID (L_SYSTEM_SET_INSTANT_CMD22) Device ID (Reader ID) Unknown User Command Generated when an unknown user command is entered through a reader. For example, if a cardholder enters the command *1234# (where that command means nothing) an unknown user command alarm is sent to Alarm Monitoring. The numbers entered as the command are used as the event text for the alarm. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

70 (L_SYSTEM_UNKNOWN_USER_COMMAND) Device ID (Reader ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

71 Elevator Events Unknown Elevator Terminal System Generated when an elevator terminal is detected that has not been configured in the system. ID 1937 (4) (L_EVENTTYPE_SYSTEM) (570) (L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL) Panel ID Terminal ID Sb_MessageTyp LNLMSG_TYPE_EVENT Elevator Terminal Mode Default Floor System Generated when the elevator terminal mode has changed to "Default Floor Only." ID 1943 (4) (L_EVENTTYPE_SYSTEM) (569) (L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR) Panel ID Terminal ID sb_messagetyp LNLMSG_TYPE_EVENT Elevator Terminal Mode Access to Authorized Floors System Generated when the elevator terminal mode has changed to "Access to Authorized Floors." ID 1944 (4) (L_EVENTTYPE_SYSTEM) (572) (L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR) Panel ID Terminal ID Sb_MessageTyp LNLMSG_TYPE_EVENT 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

72 Elevator Terminal Mode Default Floor or User Entry of Destination Floor System Generated when the elevator terminal mode has changed to "Default Floor or User Entry of Destination Floor." ID 1936 (4) (L_EVENTTYPE_SYSTEM) (573) (L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS) Panel ID Terminal ID sb_messagetyp LNLMSG_TYPE_EVENT Elevator Terminal Mode User Entry of Destination Floor System Generated when the elevator terminal mode has changed to "User Entry of Destination Floor." ID 1945 (4) (L_EVENTTYPE_SYSTEM) (571) (L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR) Panel ID terminal ID sb_messagetyp LNLMSG_TYPE_EVENT Access Granted to Destination Floor Generated when a card was presented to a reader associated with an elevator terminal and the elevator cab assignment was performed. Used when elevator dispatching devices are present. ID 5155 (0) (L_EVENTTYPE_GRANTED) (22) (L_GRANTED_DESTINATION_FLOOR) Panel ID Terminal ID EVENT_DATA_TYPE_CA sb_messagetyp LNLMSG_TYPE_EVENT 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

73 Access Denied to Destination Floor Generated when a card was presented to a reader associated with an elevator terminal but the elevator assignment was not performed; used when elevator dispatching devices are present. ID 5156 (1) (L_EVENTTYPE_DENIED) (66) (L_DENIED_DESTINATION_FLOOR) Panel ID Terminal ID EVENT_DATA_TYPE_CA sb_messagetyp LNLMSG_TYPE_EVENT 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

74 Asset Events Asset Denied - Invalid Asset Event indicating that the asset was denied because of an invalid asset. ID (L_EVENTTYPE_ASSET) 0 (L_ASSET_INVALID_ASSET) Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of cardholder transaction Asset Denied - Invalid Cardholder Event indicating that the asset was denied because of an invalid cardholder. ID (L_EVENTTYPE_ASSET) 1 (L_ASSET_INVALID_CARDHOLDER) Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of cardholder transaction Asset Denied - Invalid Access Event indicating that the asset was denied because of an invalid access. ID (L_EVENTTYPE_ASSET) 2 (L_ASSET_INVALID_ACCESS) Device ID. EVENT_DATA_ASSET 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

75 su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of the cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of the cardholder transaction Asset Denied - No Asset Privileges Event indicating that the asset was denied because of no asset privileges. ID (L_EVENTTYPE_ASSET) 3 (L_ASSET_INVALID_PRIVILEGES) Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of the cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of the cardholder transaction Asset Granted - Asset Owner Event indicating that the asset was granted based on asset owner. ID (L_EVENTTYPE_ASSET) 4 (L_ASSET_GRANTED_OWNER) Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of the cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of the cardholder transaction Asset Granted - Asset Privileges Only Event indicating that the asset was granted based on asset privileges only. ID (L_EVENTTYPE_ASSET) 5 (L_ASSET_GRANTED_PRIVILEGES_ONLY) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

76 Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event type of the cardholder transaction su_eventdata.us_assetdata.sl_eventid Event ID of the cardholder transaction Asset Denied Asset Disable Command Sent Event indicating that the asset disable command was sent because the asset was denied. ID (L_EVENTTYPE_ASSET) 6 (L_ASSET_DISABLE_CMD_SENT) Device ID. EVENT_DATA_ASSET su_eventdata.us_assetdata.sl_assetid Asset ID su_eventdata.us_assetdata.sl_cardnumber Card number su_eventdata.us_assetdata.sl_eventtype Event Type su_eventdata.us_assetdata.sl_eventid Event ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

77 Fire Events Fire Alarm In This event is used to indicate a fire alarm is active. ID (L_EVENTTYPE_FIRE) 200 (L_FIRE_FIRE_ALARM_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Fire Alarm Out This event is used to indicate a fire alarm is no longer active. ID (L_EVENTTYPE_FIRE) 201 (L_FIRE_FIRE_ALARM_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Fire Alarm Acknowledge Indicates that a fire alarm has been acknowledged. ID (L_EVENTTYPE_FIRE) 202 (L_FIRE_FIRE_ALARM_ACK) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Fire Alarm Block Acknowledge Event used to indicate a group of fire alarms have been acknowledged. ID (L_EVENTTYPE_FIRE) 203 (L_FIRE_FIRE_ALARM_BLOCK_ACK) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

78 Panel ID Supervisory In Event used to indicate a supervisory condition. ID (L_EVENTTYPE_FIRE) 204 (L_FIRE_SUPERVISORY_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Supervisory Out Event used to indicate that a supervisory condition has been returned to the normal state. ID (L_EVENTTYPE_FIRE) 205 (L_FIRE_SUPERVISORY_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Supervisory Acknowledge Indicates that a supervisory condition has been acknowledged. ID (L_EVENTTYPE_FIRE) 206 (L_FIRE_SUPERVISORY_ACK) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Supervisory Block Acknowledge Event used to acknowledge a group of supervisory condition alarms. ID (L_EVENTTYPE_FIRE) 207 (L_FIRE_SUPERVISORY_BLOCK_ACK) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

79 Security Alarm In Event used to indicate a new security alarm. ID (L_EVENTTYPE_FIRE) 208 (L_FIRE_SECURITY_ALARM_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Security Alarm Out Indicates that a security alarm is no longer active. ID (L_EVENTTYPE_FIRE) 209 (L_FIRE_SECURITY_ALARM_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Security Alarm Acknowledge Event used to indicate that a security alarm has been acknowledged. ID (L_EVENTTYPE_FIRE) 210 (L_FIRE_SECURITY_ALARM_BLOCK_ACK) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Security Alarm Block Acknowledge Event used to indicate that a group of security alarms have been acknowledged. ID (L_EVENTTYPE_FIRE) 211 (L_FIRE_SECURITY_ALARM_BLOCK_ACK) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

80 Audibles Silenced Indicates that the audibles have been silenced. ID (L_EVENTTYPE_FIRE) 212 (L_FIRE_AUDIBLES_SILENCED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Audibles Unsilenced Indicates that the audibles have been unsilenced. ID (L_EVENTTYPE_FIRE) 213 (L_FIRE_AUDIBLES_UNSILENCED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). System Reset Indicates that a system reset has been issued on the Fire Panel. ID (L_EVENTTYPE_FIRE) 214 (L_FIRE_SYSTEM_RESET) Panel ID Status In Indicates that a status reporting device is active. ID (L_EVENTTYPE_FIRE) 215 (L_FIRE_STATUS_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

81 Status Out Indicates that a status reporting device has returned to the inactive state. ID (L_EVENTTYPE_FIRE) 216 (L_FIRE_STATUS_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). Trouble Block Acknowledge Event used to indicate that a group of trouble alarms have been acknowledged. ID (L_EVENTTYPE_FIRE) 217 (L_FIRE_TROUBLE_BLOCK_ACK) Panel ID Trouble In Event used to indicate a trouble alarm. This event can have a trouble code associated with it that will be passed as a parameter to the event. ID (L_EVENTTYPE_FIRE) 218 (L_FIRE_TROUBLE_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). sl_eventparamvalue Trouble ID to indicate the type of trouble. Trouble Out This event is used to indicate a trouble alarm has been restored. This event can have a trouble code associated with it that will be passed as a parameter to the event. ID (L_EVENTTYPE_FIRE) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

82 219 (L_FIRE_TROUBLE_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). sl_eventparamvalue Trouble ID to indicate the type of trouble. Trouble Acknowledge This event is used to indicate a trouble alarm has been acknowledged. This event can have a trouble code associated with it that will be passed as a parameter to the event. ID (L_EVENTTYPE_FIRE) 220 (L_FIRE_TROUBLE_ACK) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). sl_eventparamvalue Trouble ID to indicate the type of trouble. All Systems Normal Generated when the fire panel is booted up. This alarm may also be sent when all existing alarm conditions are resolved. ID (L_EVENTTYPE_FIRE) 256 (L_FIRE_ALL_SYSTEMS_NORMAL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Fire Alarm Acknowledged Clear Generated when a fire alarm has been acknowledged and cleared. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

83 7 (L_EVENTTYPE_FIRE) 257 (L_FIRE_ALARM_ACKNOWLEDGED_CLEAR) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Trouble Acknowledged Clear A trouble condition that has been cleared has been acknowledged by the user. ID (L_EVENTTYPE_FIRE) 258 (L_FIRE_TROUBLE_ACKNOWLEDGED_CLEAR) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Walk Test Unprogrammed Generated when the reported device was part of a walk test and has been removed from the system (it is not longer configured in the system). ID (L_EVENTTYPE_FIRE) 259 (L_FIRE_WALK_TEST_UNPROGRAMMED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Walk Test Uninstalled Generated when the reported device was part of a walk test and has been physically disconnected from the system. ID (L_EVENTTYPE_FIRE) 260 (L_FIRE_WALK_TEST_UNINSTALLED) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

84 Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Walk Test ## Generated when walk test ## is initiated. A walk test is used to test devices in the system and report devices addressed incorrectly. The device and the first zone programmed for this device are reported with each message. ID (L_EVENTTYPE_FIRE) 261 (L_FIRE_WALK_TEST_NUM) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Walk Test Untest Generated when the reported device is no longer being tested (part of a walk test). ID (L_EVENTTYPE_FIRE) 262 (L_FIRE_WALK_TEST_UNTEST) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Module Active Generated when a monitor or control module connected to the system becomes active. The device label assigned to this device and the zone label assigned to the first zone programmed for this device will be included with the event. ID (L_EVENTTYPE_FIRE) 263 (L_FIRE_MODULE_ACTIVE) Panel ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

85 Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Module Clear Generated when a monitor or control module connected to the system is no longer active. The device label assigned to this device and the zone label assigned to the first zone programmed for this device will be included with the event. ID (L_EVENTTYPE_FIRE) 264 (L_FIRE_MODULE_CLEAR) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Signal Silence Generated when the alarm signal on the hardware has been silenced. ID (L_EVENTTYPE_FIRE) 265 (L_FIRE_SIGNAL_SILENCE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Detector Test Generated when the fire detection test is initiated. ID (L_EVENTTYPE_FIRE) 266 (L_FIRE_DETECTOR_TEST) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

86 sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Detector Test OK Generated when the fire detection test is successfully completed. ID (L_EVENTTYPE_FIRE) 267 (L_FIRE_DETECTOR_TEST_OK) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Detector Test Fail Generated when the fire detection test fails. ID (L_EVENTTYPE_FIRE) 268 (L_FIRE_DETECTOR_TEST_FAIL) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Lamp Test Activated Generated when the lamp test is activated. ID (L_EVENTTYPE_FIRE) 269 (L_FIRE_LAMP_TEST_ACTIVATED) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

87 Lamp Test Complete Generated when the lamp test successfully completes. ID (L_EVENTTYPE_FIRE) 270 (L_FIRE_LAMP_TEST_COMPLETE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Block Acknowledge Generated when a block acknowledge command is sent. This command acknowledges any existing unacknowledged alarms in the system all at once. ID (L_EVENTTYPE_FIRE) 271 (L_FIRE_BLOCK_ACKNOWLEDGE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Pre-Alarm An event indicating a pre-alarm condition is active. ID (L_EVENTTYPE_FIRE) 280 (L_FIRE_PRE_ALARM_IN) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Pre-Alarm Clear An event indicating a pre-alarm condition is no longer active United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

88 ID (L_EVENTTYPE_FIRE) 281 (L_FIRE_PRE_ALARM_OUT) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Non-Fire Active An event indicating a non fire related alarm condition is active. ID (L_EVENTTYPE_FIRE) 282 (L_FIRE_NON_FIRE_ACTIVE) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes). Non-Fire Active Cleared An event indicating a non fire related alarm condition is no longer active. ID (L_EVENTTYPE_FIRE) 283 (L_FIRE_NON_FIRE_ACTIVE_CLEAR) Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). sb_eventparam Whether or not a parameter value is associated with this event (0- No, 1 Yes) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

89 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

90 Intercom Events Call to a Busy Subscriber Indicates that an intercom call has been placed to a busy subscriber. The calling intercom station is specified in and the Busy Subscriber is specified in the intercom data (sl_intercomdata). ID (L_EVENTTYPE_INTERCOM) 1 (L_INTERCOM_CALL_TO_BUSY) Intercom Exchange ID. Intercom Station initiating call. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata.sl_intercomdata Busy Subscriber call was placed to. Call to a Private Subscriber Indicates that an intercom call has been placed to a private subscriber. The calling intercom station is specified in and the Private Subscriber is specified in the intercom data (sl_intercomdata). ID (L_EVENTTYPE_INTERCOM) 2 (L_INTERCOM_CALL_TO_PRIVATE) Intercom Exchange ID. Intercom Station initiating call. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata.sl_intercomdata Private Subscriber call was placed to. Call to an Open Subscriber Indicates that an intercom call has been placed to an open subscriber. The calling intercom station is specified in and the Open Subscriber is specified in the intercom data (sl_intercomdata). ID (L_EVENTTYPE_INTERCOM) 3 (L_INTERCOM_CALL_TO_OPEN) Intercom Exchange ID. Intercom Station initiating call. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata.sl_intercomdata Open Subscriber call was placed to United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

91 Call Disconnected This event indicates that an intercom call has been disconnected. ID (L_EVENTTYPE_INTERCOM) 4 (L_INTERCOM_CALL_DISCONNECTED) Intercom Exchange ID. Intercom Station that has been disconnected. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata. Subscriber the call was placed to. sl_intercomdata Intercom Function This message indicates that an intercom function has been executed. ID (L_EVENTTYPE_INTERCOM) 5 (L_INTERCOM_FUNCTION) Intercom Exchange ID. Intercom Station function was executed on. sb_eventparam This is set to 1 to indicate that a parameter values is associated with this event. sl_eventparamvalue Intercom function that was executed. Incoming Call Indicates an incoming intercom call. ID (L_EVENTTYPE_INTERCOM) 6 (L_INTERCOM_INCOMING_CALL) Intercom Exchange ID. Intercom Station function. Trouble Report A trouble report for an intercom device. The details should be passed back in the associated text. ID (L_EVENTTYPE_INTERCOM) 7 (L_INTERCOM_TROUBLE_REPORT) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

92 Intercom Exchange ID. Intercom Station. Test Report A test report. ID (L_EVENTTYPE_INTERCOM) 8 (L_INTERCOM_TEST_REPORT) Intercom Exchange ID. Intercom Station. Ringing Indicates an intercom station is ringing. ID (L_EVENTTYPE_INTERCOM) 9 (L_INTERCOM_RINGING) Intercom Exchange ID. Intercom Station. Call Failed Indicates an intercom call has failed. ID (L_EVENTTYPE_INTERCOM) 10 (L_INTERCOM_CALL_FAILED) Intercom Exchange ID. Intercom Station function. Hold Indicates an intercom call has been placed on hold. ID (L_EVENTTYPE_INTERCOM) 11 (L_INTERCOM_HOLD) Intercom Exchange ID. Intercom Station United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

93 Retrieved Indicates an intercom call has been retrieved (answered). Initiated ID (L_EVENTTYPE_INTERCOM) 12 (L_INTERCOM_RETRIEVED) Intercom Exchange ID. Intercom Station function. Indicates an intercom call has been initiated. ID (L_EVENTTYPE_INTERCOM) 13 (L_INTERCOM_INITIATED) Intercom Exchange ID. Intercom Station function. Call Ended Indicates an intercom call has been ended. ID (L_EVENTTYPE_INTERCOM) 14 (L_INTERCOM_CALL_ENDED) Intercom Exchange ID. Intercom Station. Call Established Indicates an intercom call has been established. ID (L_EVENTTYPE_INTERCOM) 15 (L_INTERCOM_CALL_ESTABLISHED) Intercom Exchange ID. Intercom Station. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata. Subscriber the call was placed to. sl_intercomdata 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

94 Unanswered Call Indicates an intercom call has not been answered. ID (L_EVENTTYPE_INTERCOM) 16 (L_INTERCOM_CALL_UNANSWERED) Intercom Exchange ID. Intercom Station. Call Transferred Indicates an intercom call has been transferred. ID (L_EVENTTYPE_INTERCOM) 17 (L_INTERCOM_CALL_TRANSFERRED) Intercom Exchange ID. Intercom Station. Call Conferenced Indicates an intercom call has been conferenced. ID (L_EVENTTYPE_INTERCOM) 18 (L_INTERCOM_CALL_CONFERENCED) Intercom Exchange ID. Intercom Station. Call Queued Indicates an intercom call has been queued. ID (L_EVENTTYPE_INTERCOM) 19 (L_INTERCOM_CALL_QUEUED) Intercom Exchange ID. Intercom Station. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata. Queue receiver station. sl_intercomdata 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

95 Intercom Exchange Failure Indicates an failure occurred for the intercom exchange. ID (L_EVENTTYPE_INTERCOM) 20 (L_INTERCOM_INTERCOM_EXCHANGE_ERROR) Intercom Exchange ID. Intercom Station. sb_eventparam This is set to 1 to indicate that a parameter value is associated with this event. sl_eventparamvalue Intercom error. Call Removed from Queue This event indicates that an intercom call has been removed from the queue. ID (L_EVENTTYPE_INTERCOM) 21 (L_INTERCOM_REMOVED_FROM_QUEUE) Intercom Exchange ID. Intercom Station. EVENT_DATA_TYPE_INTERCOM su_eventdata.us_intercomdata. Queue receiver station. sl_intercomdata 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

96 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

97 Video Events Motion Detected Event indicating motion has been detected on a given input channel (camera) ID (L_EVENTTYPE_VIDEO) 1 (L_VIDEO_MOTION_DETECTED) Panel ID Input Channel of the Camera sb_devicetype L_DEVICETYPE_CCTVCAMERA Motion Detected Restored Event indicating motion has been restored (is no longer detected) on a given input channel (camera) ID (L_EVENTTYPE_VIDEO) 2 (L_VIDEO_MOTION_DETECTED_RESTORED) Panel ID Input Channel of the Camera sb_devicetype L_DEVICETYPE_CCTVCAMERA Video Event Threshold Reached Event used to indicate that the user defined event threshold has been reached. That is to say that the percent of disk space used by video events has been reached. This typically signals the Archive Server to start archiving or purging. ID (L_EVENTTYPE_VIDEO) 3 (L_VIDEO_EVENTTHRESHOLD_REACHED) The ID of the Video Server (Panel ID) Video Server Disk Full Event used to indicate the user defined event threshold has exceeded 5% or more. That is to say that the percent of disk space used by video events has been reached and is now at least 5% above it. This typically signals the Archive Server to start archiving or purging. If a user defined 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

98 Event Threshold has not been defined then this event should be sent when the Video Server disk space is 95% full of video events. ID (L_EVENTTYPE_VIDEO) 4 (L_VIDEO_DISK_FULL) The ID of the Video Server (Panel ID) User Generated Video Event For Internal Use Only (L_VIDEO_USER_GENERATED) Archive Server Failure For Internal Use Only (L_VIDEO_ARCHIVESERVER_FAILURE) Video Server is not Recording Generated when it has been detected that the video recorder is no longer recording. ID (L_EVENTTYPE_VIDEO) 7 (L_VIDEO_RECORDING_STOPPED) The ID of the Video Server (Panel ID) Capture Source Mismatch Indicates that user-specified IP Camera type does not match actual IP Camera type. ID (L_EVENTTYPE_VIDEO) 8 (L_VIDEO_CAPTURE_SOURCE_MISMATCH) The ID of the Video Server (Panel ID) Camera Tamper Active Indicates that IP Camera configuration was changed bypassing the OnGuard software. (It is possible if the user knows password to access the IP Camera and connect to it directly using IP Camera provided Webinterface.) ID (L_EVENTTYPE_VIDEO) 9 (L_VIDEO_CAMERA_TAMPER) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

99 The ID of the Video Server (Panel ID) Camera Tamper Restored Previous camera tamper alarm has been restored. ID (L_EVENTTYPE_VIDEO) 10 (L_VIDEO_CAMERA_TAMPER_RETORE) The ID of the Video Server (Panel ID) Storage Failure Indicates that something is wrong related to recording/retrieving video to/from hard drives. ID (L_EVENTTYPE_VIDEO) 11 (L_VIDEO_STORAGE_FAILURE) The ID of the Video Server (Panel ID) Blind Camera Indicates that level of camera blindness (covered by some sort of obstacle) exceeded configured threshold ID (L_EVENTTYPE_VIDEO) 14 (L_VIDEO_BLIND_CAMERA_DETECTED) The ID of the Video Server (Panel ID) Blind Camera Restored Blind Camera alarm is restored. ID (L_EVENTTYPE_VIDEO) 15 (L_VIDEO_BLIND_CAMERA_DETECTED_RESTORED) The ID of the Video Server (Panel ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

100 Video Failover Started Generated when the camera is configured for failover and the secondary recorder determined that the primary recorder is not recording video from the camera, so secondary recorder starts recording from this camera. ID (L_EVENTTYPE_VIDEO) 16 (L_VIDEO_FAILOVER_STARTED) The ID of the Video Server (Panel ID) Video Failover Restored Generated when the camera is configured for failover and secondary recorder is currently recording video from the camera and secondary recorder determined that the primary recorder came back online and started recording video from the camera. Secondary recorder will stop recording video from the camera. ID (L_EVENTTYPE_VIDEO) 17 (L_VIDEO_FAILOVER_RESTORED) The ID of the Video Server (Panel ID) Video Failover Failed Generated when the camera is configured for failover and failover cannot be activated on this camera. ID (L_EVENTTYPE_VIDEO) 18 (L_VIDEO_FAILOVER_FAILED) The ID of the Video Server (Panel ID) Video Overflow Started Generated when the recorder determined that it cannot handle incoming video. Usually it happens when hard drive or CPU utilization is close to 100%, so recorder cannot keep up with amount of video. ID (L_EVENTTYPE_VIDEO) 19 (L_VIDEO_OVERFLOW_STARTED) The ID of the Video Server (Panel ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

101 Video Overflow Restored Generated when the recorder is no longer having trouble handling incoming video. ID (L_EVENTTYPE_VIDEO) 20 (L_VIDEO_OVERFLOW_RESTORED) The ID of the Video Server (Panel ID) Video Storage Unavailable Generated when the recorder cannot record video to a drive. ID (L_EVENTTYPE_VIDEO) 21 (L_VIDEO_STORAGE_UNAVAILABLE) The ID of the Video Server (Panel ID) IVS Connection Lost Generated when the camera is configured to analyze video on a remote IntelligentVideo Server and connection to the IntelligentVideo Server is lost. ID (L_EVENTTYPE_VIDEO) 22 (L_VIDEO_IVS_CONNECTION_LOST) The ID of the Video Server (Panel ID) IVS Connection Restored Generated when the connection to the IntelligentVideo Server was lost and has been restored. ID (L_EVENTTYPE_VIDEO) 23 (L_VIDEO_IVS_CONNECTION_RESTORED) The ID of the Video Server (Panel ID) IVS Engine Connection Lost Generated when the IntelligentVideo Server looses connection to the LpsSearchSvc service and video processing of all channels fails. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

102 11 (L_EVENTTYPE_VIDEO) 24 (L_VIDEO_IVS_ENGINE_CONNECTION_LOST) The ID of the Video Server (Panel ID) IVS Engine Connection Restored Generated when the IntelligentVideo Server reconnects to the LpsSearchSvc service after the connection has been lost. ID (L_EVENTTYPE_VIDEO) 25 (L_VIDEO_IVS_ENGINE_CONNECTION_RESTORED) The ID of the Video Server (Panel ID) IVS Channel Processing Failed Generated by the IntelligentVideo Server when video processing is terminated due to an error or lost connection. ID (L_EVENTTYPE_VIDEO) 26 (L_VIDEO_IVS_CHANNEL_PROCESSING_FAILED) The ID of the Video Server (Panel ID) IVS Channel Processing Restarted Generated when the IntelligentVideo Server re-establishes a connection to a channel that previously reported failure. ID (L_EVENTTYPE_VIDEO) 27 (L_VIDEO_IVS_CHANNEL_PROCESSING_RESTARTED) The ID of the Video Server (Panel ID) Time Out-Of-Sync Generated when the time stamp feature is enabled and the time on the camera has a difference of 20 seconds or more from the video recorder time. ID (L_EVENTTYPE_VIDEO) 30 (L_VIDEO_TIME_OUT_OF_SYNC) The ID of the Video Server (Panel ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

103 Time Out-Of-Sync Restored Generated when the time difference between the camera and video recorder returns to less than 20 seconds. ID (L_EVENTTYPE_VIDEO) 31 (L_VIDEO_TIME_OUT_OF_SYNC_RESTORED) The ID of the Video Server (Panel ID) In-Camera-Memory Download Failed??? ID (L_EVENTTYPE_VIDEO) 35 (L_VIDEO_CAM_MEM_DOWNLOAD_FAILED) The ID of the Video Server (Panel ID) In-Camera-Memory Download Restored??? ID (L_EVENTTYPE_VIDEO) 36 (L_VIDEO_CAM_MEM_DOWNLOAD_RESTORED) The ID of the Video Server (Panel ID) In-Camera-Memory Download Started??? ID (L_EVENTTYPE_VIDEO) 37 (L_VIDEO_CAM_MEM_DOWNLOAD_STARTED) The ID of the Video Server (Panel ID) In-Camera-Memory Download Completed??? ID (L_EVENTTYPE_VIDEO) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

104 38 (L_VIDEO_CAM_MEM_DOWNLOAD_COMPLETED) The ID of the Video Server (Panel ID) Firmware Download Started??? ID (L_EVENTTYPE_VIDEO) 39 (L_VIDEO_FIRMWARE_DOWNLOAD_STARTED) The ID of the Video Server (Panel ID) Firmware Download Completed??? ID (L_EVENTTYPE_VIDEO) 40 (L_VIDEO_FIRMWARE_DOWNLOAD_COMPLETED) The ID of the Video Server (Panel ID) Firmware Download Failed??? ID (L_EVENTTYPE_VIDEO) 41 (L_VIDEO_FIRMWARE_DOWNLOAD_FAILED) The ID of the Video Server (Panel ID) Video Source Signal Lost??? ID (L_EVENTTYPE_VIDEO) 42 (L_VIDEO_SOURCE_SIGNAL_LOST) The ID of the Video Server (Panel ID) Video Source Signal Restored??? 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

105 ID (L_EVENTTYPE_VIDEO) 43 (L_VIDEO_SOURCE_SIGNAL_RESTORED) The ID of the Video Server (Panel ID) CPU Utilization Threshold Exceeded??? ID (L_EVENTTYPE_VIDEO) 44 (L_RECORDER_CPU_THRESHOLD_EXCEEDED) The ID of the Video Server (Panel ID) CPU Utilization Threshold Restored??? ID (L_EVENTTYPE_VIDEO) 45 (L_RECORDER_CPU_THRESHOLD_RESTORED) The ID of the Video Server (Panel ID) Network Utilization Threshold Exceeded??? ID (L_EVENTTYPE_VIDEO) 46 (L_RECORDER_NETWORK_THRESHOLD_EXCEEDED) The ID of the Video Server (Panel ID) Network Utilization Threshold Restored??? ID (L_EVENTTYPE_VIDEO) 47 (L_RECORDER_NETWORK_THRESHOLD_RESTORED) The ID of the Video Server (Panel ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

106 Disk Read Utilization Threshold Exceeded??? ID (L_EVENTTYPE_VIDEO) 48 (L_RECORDER_DISK_READ_THRESHOLD_EXCEEDED) The ID of the Video Server (Panel ID) Disk Read Utilization Threshold Restored??? ID (L_EVENTTYPE_VIDEO) 49 (L_RECORDER_DISK_READ_THRESHOLD_RESTORED) The ID of the Video Server (Panel ID) Disk Write Utilization Threshold Exceeded??? ID (L_EVENTTYPE_VIDEO) 50 (L_RECORDER_DISK_WRITE_THRESHOLD_EXCEEDED) The ID of the Video Server (Panel ID) Disk Write Utilization Threshold Restored??? ID (L_EVENTTYPE_VIDEO) 51 (L_RECORDER_DISK_WRITE_THRESHOLD_RESTORED) The ID of the Video Server (Panel ID) Warning: Unable to Achieve Current Required Storage Setting??? ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

107 11 (L_EVENTTYPE_VIDEO) 52 (L_RECORDER_STORAGE_SHORTAGE) The ID of the Video Server (Panel ID) Update: Now able to Achieve Current Required Storage Setting??? ID (L_EVENTTYPE_VIDEO) 53 (L_RECORDER_STORAGE_SHORTAGE_RESTORED) The ID of the Video Server (Panel ID) Warning: Unable to Meet Required Storage Setting! Deleting Oldest Video??? ID (L_EVENTTYPE_VIDEO) 54 (L_RECORDER_STORAGE_FILE_DELETED) The ID of the Video Server (Panel ID) Insufficient Frame Rate Detected Generated when the IntelligentVideo engine does not receive a sufficient frame rate for the events configured on the video channel. ID (L_EVENTTYPE_VIDEO) 55 (L_VIDEO_INSUFFICIENT_FRAME_RATE_DETECTED) The ID of the Video Server (Panel ID) Poor Video Visibility Detected Generated when indefinite edges are present in the video image likely caused by environmental factors such as fog or glare. ID (L_EVENTTYPE_VIDEO) 56 (L_VIDEO_POOR_VISIBILITY_DETECTED) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

108 The ID of the Video Server (Panel ID) Background Map Not Found Generated when the engine cannot detect the background stickers. This may be caused when there is poor contrast or the stickers are improperly shaped/separated. ID (L_EVENTTYPE_VIDEO) 57 (L_VIDEO_BACKGROUND_MAP_NOT_FOUND) The ID of the Video Server (Panel ID) Insufficient Frame Rate Restored Generated when the frame rate reaches a value sufficient for the events configured on the video channel. ID (L_EVENTTYPE_VIDEO) 58 (L_VIDEO_INSUFFICIENT_FRAME_RATE_RESTORED) The ID of the Video Server (Panel ID) Poor Video Visibility Restored Generated when the video quality returns to an acceptable level. ID (L_EVENTTYPE_VIDEO) 59 (L_VIDEO_POOR_VISIBILITY_RESTORED) The ID of the Video Server (Panel ID) Background Map Found Generated when background stickers are detected. ID (L_EVENTTYPE_VIDEO) 60 (L_VIDEO_BACKGROUND_MAP_FOUND) The ID of the Video Server (Panel ID) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

109 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

110 Transmitter Events Transmitter Tamper Event to indicate a tamper alarm for a transmitter. ID (L_EVENTTYPE_TRANSMITTER) 1 (L_TRANSMITTER_TAMPER) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Low Battery Event to indicate a low battery condition for a transmitter. ID (L_EVENTTYPE_TRANSMITTER) 2 (L_TRANSMITTER_LOWBATTERY) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Alarm Event that indicates an alarm condition for a transmitter United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

111 ID (L_EVENTTYPE_TRANSMITTER) 3 (L_TRANSMITTER_ALARM) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Tamper Restored Used to indicate that a transmitter tamper alarm has been restored. ID (L_EVENTTYPE_TRANSMITTER) 4 (L_TRANSMITTER_TAMPER_RESTOR E) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Low Battery Restored Event used to indicate that a transmitter low battery alarm has been restored. ID (L_EVENTTYPE_TRANSMITTER) United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

112 (L_TRANSMITTER_LOWBAT_RESTOR E) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Tilt Used to indicate a transmitter tilt alarm for transmitters that support this functionality like mandown transmitters. ID (L_EVENTTYPE_TRANSMITTER) 6 (L_TRANSMITTER_TILT) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Tilt Restored Event that indicates that a transmitter tilt condition has been restored. ID (L_EVENTTYPE_TRANSMITTER) 7 (L_TRANSMITTER_TILT_RESTORE) Receiver ID that received transmitter signal United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

113 sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Tilt Enabled Event that indicates that the tilt control for a transmitter is enabled. ID (L_EVENTTYPE_TRANSMITTER) 8 (L_TRANSMITTER_TILT_ENABLE) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Tilt Disabled Indicates that the tilt control for a transmitter is disabled. ID (L_EVENTTYPE_TRANSMITTER) 9 (L_TRANSMITTER_TILT_DISABLE) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

114 sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Pull Cord Alarm Event that signals a transmitter pull cord alarm. ID (L_EVENTTYPE_TRANSMITTER) 10 (L_TRANSMITTER_PULLCORD) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Pull Cord Restored Indicates that the transmitter pull cord alarm has been restored. ID (L_EVENTTYPE_TRANSMITTER) 11 (L_TRANSMITTER_PULLCORD_REST ORE) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

115 Transmitter Pre-Tilt Event that indicates a transmitter pre-tilt condition. ID (L_EVENTTYPE_TRANSMITTER) 12 (L_TRANSMITTER_PRE_TILT) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Pre-Tilt Restored Event that is used to indicate that the transmitter pre-tilt condition has been restored. ID (L_EVENTTYPE_TRANSMITTER) 13 (L_TRANSMITTER_PRE_TILT_RESTOR E) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Temporary Tilt Disable Event to indicate that the tilt has temporarily been disabled on the transmitter United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

116 ID (L_EVENTTYPE_TRANSMITTER) 14 (L_TRANSMITTER_TEMPTILT_DISABL E) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Alarm Restored Event used to indicate that a transmitter alarm has been restored. ID (L_EVENTTYPE_TRANSMITTER) 15 (L_TRANSMITTER_ALARM_RESTORE) Receiver ID that received transmitter signal. sl_transmitterid Transmitter ID. sb_eventparam Can be used to indicate if the transmitter message is one that is verified (IR signal received by an RF receiver). To use set this value to 1 and also fill in the sl_eventparamvalue. sl_eventparamvalue 1 Verified Alarm (if sb_eventparam = 1) EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Inactivity Event used to indicate that a transmitter that was supposed to generate a supervision message failed to do so. ID (L_EVENTTYPE_TRANSMITTER) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

117 16 (L_TRANSMITTER_NO_SUPERVISION) sl_transmitterid Transmitter ID. EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Touch Alarm An event generated by a transmitter when the item it is protecting is touched. ID (L_EVENTTYPE_TRANSMITTER) 17 (L_TRANSMITTER_TOUCH_ALARM) sl_transmitterid Transmitter ID. EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Removal Alarm An event generated by a transmitter when the item it is protecting is removed. ID (L_EVENTTYPE_TRANSMITTER) 18 (L_TRANSMITTER_REMOVAL_ALARM) sl_transmitterid Transmitter ID. EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter Acknowledge This event is reported when an alarm generated by a transmitter has been acknowledged. ID (L_EVENTTYPE_TRANSMITTER) 19 (L_TRANSMITTER_ACKNOWLEDGE) sl_transmitterid Transmitter ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

118 EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter. Transmitter No Response This event is reported when an alarm generated by a transmitter has not been acknowledged. ID (L_EVENTTYPE_TRANSMITTER) 20 (L_TRANSMITTER_NO_RESPONSE) sl_transmitterid Transmitter ID. EVENT_DATA_TYPE_TRANSMITTER su_eventdata.us_transmitterdata.transmitterid Base ID of the transmitter United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

119 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

120 Biometric Events Accepted Biometric Score Event that is used to indicate the score that was generated for a good biometric verification. ID (L_EVENTTYPE_BIOMETRIC) 0 (L_BIOMETRIC_ACCEPTED) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) su_eventdata.us_dataca.sl_bioscore Biometric score Rejected Biometric Score Event that is used to indicate the score that was generated for a bad biometric verification. ID (L_EVENTTYPE_BIOMETRIC) 1 (L_BIOMETRIC_REJECTED) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) su_eventdata.us_dataca.sl_bioscore Biometric score No Biometric Template Data Indicates that the biometric template was not found. ID (L_EVENTTYPE_BIOMETRIC) 2 (L_BIOMETRIC_TEMPLATE_NOT_FOUND) Panel ID Device ID (Reader) EVENT_DATA_TYPE_CA su_eventdata.us_dataca.sl_cardnumber Card Number su_eventdata.us_dataca.sl_issuecode Issue Code (-1 if not used) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

121 Muster Events Muster Mode Start Event used to indicate that muster mode has started. ID (L_EVENTTYPE_MUSTER) 0 (L_MUSTER_MUSTER_MODE_START) sl_segmentid Segment ID EVENT_DATA_TYPE_AREAAPB su_eventdata.us_areaapbdata.sl_areaapbid Area ID Muster Mode Reset ID (L_EVENTTYPE_MUSTER) 1 (L_MUSTER_MUSTER_MODE_RESET) sl_segmentid Segment ID EVENT_DATA_TYPE_AREAAPB su_eventdata.us_areaapbdata.sl_areaapbid Area ID 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

122 Generic Events Generic Event Used to indicate that a generic event has been received. The alarm description will be the first line of the associated event text. ID (L_EVENTTYPE_GENERIC) 0 (L_GENERIC_GENERIC_EVENT) Input Alarmed Generic event for Input Alarmed state. ID (L_EVENTTYPE_GENERIC) 1 (L_GENERIC_INPUT_ALARMED) Input Normal Generic event for Input Normal state. ID (L_EVENTTYPE_GENERIC) 2 (L_GENERIC_INPUT_NORMAL) Input Low Low Generic event for Input Low Low state. ID (L_EVENTTYPE_GENERIC) 3 (L_GENERIC_INPUT_LOW_LOW) Input Low Generic event for Input Low state. ID (L_EVENTTYPE_GENERIC) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

123 4 (L_GENERIC_INPUT_LOW) Input High Generic event for Input High state. ID (L_EVENTTYPE_GENERIC) 5 (L_GENERIC_INPUT_HIGH) Input High High Generic event for Input High High state. ID (L_EVENTTYPE_GENERIC) 6 (L_GENERIC_INPUT_HIGH_HIGH) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

124 Point Of Sale Events Item Sold Indicates an item was sold. ID (L_EVENTTYPE_POS) 0 (L_POS_ITEM_SOLD) ID of Point of sale controller. ID of register or point of sale device. Cash Amount Tendered Generated when an event is used to indicate that a cash amount has been tendered. ID (L_EVENTTYPE_POS) 1 (L_POS_CASH_AMOUNT_TENDERED) ID of Point of sale controller. ID of register or point of sale device. Credit Card Tendered Generated when a credit card was used as tender. ID (L_EVENTTYPE_POS) 2 (L_POS_CREDIT_CARD_TENDERED) ID of Point of sale controller. ID of register or point of sale device. Cash or Safe Drop Generated when a transaction indicating a cash or safe drop has occurred. ID (L_EVENTTYPE_POS) 3 (L_POS_CASH_OR_SAFE_DROP) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

125 ID of Point of sale controller. ID of register or point of sale device. Charge Account Tender Generated when a charge account was used as tender. ID (L_EVENTTYPE_POS) 4 (L_POS_CHARGE_ACCOUNT_TENDER) ID of Point of sale controller. ID of register or point of sale device. Change Due Generated when a transaction indicating the change due has occurred. ID (L_EVENTTYPE_POS) 5 (L_POS_CHANGE_DUE) ID of Point of sale controller. ID of register or point of sale device. Check Tender Generated when a check was used as tender. ID (L_EVENTTYPE_POS) 6 (L_POS_CHECK_TENDER) ID of Point of sale controller. ID of register or point of sale device. Clerk Name or Number A transaction that reports the clerk s name or number. ID (L_EVENTTYPE_POS) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

126 7 (L_POS_CLERK_NAME_OR_NUMBER) ID of Point of sale controller. ID of register or point of sale device. Manufacturer Coupon Indicates a manufacturer coupons. ID (L_EVENTTYPE_POS) 8 (L_POS_MANUFACTURER_COUPON) ID of Point of sale controller. ID of register or point of sale device. Store Coupon Indicates a store coupon. ID (L_EVENTTYPE_POS) 9 (L_POS_STORE_COUPON) ID of Point of sale controller. ID of register or point of sale device. Cancel Entire Sale Generated when a transaction is used to indicate that an entire sale was cancelled. ID (L_EVENTTYPE_POS) 10 (L_POS_CANCEL_ENTIRE_SALE) ID of Point of sale controller. ID of register or point of sale device. Debit, ATM, Check Card Tender Transaction that indicated that a debit, ATM, or check card was used as tender. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

127 31 (L_EVENTTYPE_POS) 11 (L_POS_DEBIT_ATM_CHECK_CARD_TENDER) ID of Point of sale controller. ID of register or point of sale device. Discount Entered as Absolute Amount Generated when a discount was entered as an absolute amount. ID (L_EVENTTYPE_POS) 12 (L_POS_DISCOUNT_ENTERED_AS_ABSOLUTE_AMOUNT) ID of Point of sale controller. ID of register or point of sale device. Deposit Amount Paid Pending Purchase Event indicating that a deposit amount paid pending purchase has occurred. ID (L_EVENTTYPE_POS) 13 (L_POS_DEPOSIT_AMOUNT_PAID_PENDING_PURCHASE) ID of Point of sale controller. ID of register or point of sale device. Deposit Return Transaction for a deposit return. ID (L_EVENTTYPE_POS) 14 (L_POS_DEPOSIT_RETURN) ID of Point of sale controller. ID of register or point of sale device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

128 Discount Entered as Percentage Generated when a discount was entered as a percentage. ID (L_EVENTTYPE_POS) 15 (L_POS_DISCOUNT_ENTERED_AS_PERCENTAGE) ID of Point of sale controller. ID of register or point of sale device. Employee Sign On Generated when an employee signs on. ID (L_EVENTTYPE_POS) 16 (L_POS_EMPLOYEE_SIGN_ON_TO_REGISTER) ID of Point of sale controller. ID of register or point of sale device. Employee Sign Off Generated when an employee signs off. ID (L_EVENTTYPE_POS) 17 (L_POS_EMPLOYEE_SIGN_OFF_OF_REGISTER) ID of Point of sale controller. ID of register or point of sale device. Complimentary Tender Generated when the tender was complimentary. ID (L_EVENTTYPE_POS) 18 (L_POS_COMPLIMENTARY_TENDER) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

129 ID of Point of sale controller. ID of register or point of sale device. Foodstamps Tender Indicates that food stamps were used as tender. ID (L_EVENTTYPE_POS) 19 (L_POS_FOODSTAMPS_WIC_ETC_TENDER) ID of Point of sale controller. ID of register or point of sale device. Gasoline Prepayment Transaction for a gasoline prepayment. ID (L_EVENTTYPE_POS) 20 (L_POS_GASOLINE_PREPAYMENT) ID of Point of sale controller. ID of register or point of sale device. Gasoline Prepayment Refund Transaction for a gasoline prepayment refund. ID (L_EVENTTYPE_POS) 21 (L_POS_GASOLINE_PREPAYMENT_REFUND) ID of Point of sale controller. ID of register or point of sale device. Information Message Used to report information messages United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

130 ID (L_EVENTTYPE_POS) 22 (L_POS_INFORMATION_MESSAGE) ID of Point of sale controller. ID of register or point of sale device. Lottery Pay Out Generated when a lottery pay out has occurred. ID (L_EVENTTYPE_POS) 23 (L_POS_LOTTERY_PAY_OUT) ID of Point of sale controller. ID of register or point of sale device. Lottery Sale Generated when an event for a lottery sale has occurred. ID (L_EVENTTYPE_POS) 24 (L_POS_LOTTERY_SALE) ID of Point of sale controller. ID of register or point of sale device. Manufacturer Coupon Redemption Transaction generated for a manufacturer coupon redemption. ID (L_EVENTTYPE_POS) 25 (L_POS_MANUFACTURER_COUPON_REDEMPTION) ID of Point of sale controller. ID of register or point of sale device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

131 Miscellaneous Tender Generated when miscellaneous tender is used. ID (L_EVENTTYPE_POS) 26 (L_POS_MISCELLANEOUS_TENDER) ID of Point of sale controller. ID of register or point of sale device. Quantity or Weight An event indicating a quantity or weight. No Sale ID (L_EVENTTYPE_POS) 27 (L_POS_QUANTITY_OR_WEIGHT) ID of Point of sale controller. ID of register or point of sale device. Transaction generated for a no sale. ID (L_EVENTTYPE_POS) 28 (L_POS_NO_SALE) ID of Point of sale controller. ID of register or point of sale device. Negative Tax Generated when negative tax is used. ID (L_EVENTTYPE_POS) 29 (L_POS_NEGATIVE_TAX) ID of Point of sale controller. ID of register or point of sale device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

132 Override Preprogrammed Price Generated when the preprogrammed price is overridden. Pick Up ID (L_EVENTTYPE_POS) 30 (L_POS_OVERRIDE_PREPROGRAMMED_PRICE) ID of Point of sale controller. ID of register or point of sale device. Transaction indicating a pick up has occurred. ID (L_EVENTTYPE_POS) 31 (L_POS_PICK_UP) ID of Point of sale controller. ID of register or point of sale device. Price Lookup Generated when a price lookup has taken place. Pay Out ID (L_EVENTTYPE_POS) 28 (L_POS_PRICE_LOOKUP) ID of Point of sale controller. ID of register or point of sale device. Generated when a payout takes place. ID (L_EVENTTYPE_POS) 33 (L_POS_PAY_OUT) ID of Point of sale controller. ID of register or point of sale device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

133 Payment Toward Charge Account Balance Generated when a payment toward an account balance. ID (L_EVENTTYPE_POS) 34 (L_POS_PAYMENT_TOWARD_CHARGE_ACC_BALANCE) ID of Point of sale controller. ID of register or point of sale device. Payment of Refund to Customer Generated when a payment or refund is given to a customer. ID (L_EVENTTYPE_POS) 35 (L_POS_PAYMENT_OF_REFUND_TO_CUSTOMER) ID of Point of sale controller. ID of register or point of sale device. Merchandise Returned Generated when merchandise is returned. ID (L_EVENTTYPE_POS) 36 (L_POS_MERCHANDISE_RETURNED) ID of Point of sale controller. ID of register or point of sale device. Sale Subtotal A transaction that reports the sale subtotal. ID (L_EVENTTYPE_POS) 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

134 37 (L_POS_SALE_SUBTOTAL) ID of Point of sale controller. ID of register or point of sale device. Taxable Subtotal Transaction that reports the taxable subtotal. ID (L_EVENTTYPE_POS) 38 (L_POS_TAXABLE_SUBTOTAL) ID of Point of sale controller. ID of register or point of sale device. Current Time An event that reports the current time. ID (L_EVENTTYPE_POS) 39 (L_POS_CURRENT_TIME) ID of Point of sale controller. ID of register or point of sale device. Transaction Number Event Generated that indicates the transaction number of the sales transaction. ID (L_EVENTTYPE_POS) 40 (L_POS_TRANSACTION_NUMBER) ID of Point of sale controller. ID of register or point of sale device. Negative Total Generated when there is a negative total. ID United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

135 31 (L_EVENTTYPE_POS) 41 (L_POS_NEGATIVE_TOTAL) ID of Point of sale controller. ID of register or point of sale device. Total Amount Due Transaction indicating the total amount due. ID (L_EVENTTYPE_POS) 42 (L_POS_TOTAL_AMOUNT_DUE) ID of Point of sale controller. ID of register or point of sale device. Tax Amount Event that indicates the tax amount. ID 1867 Sb_EventType 31 (L_EVENTTYPE_POS) 43 (L_POS_TAX_AMOUNT) ID of Point of sale controller. ID of register or point of sale device. Value Added Event that indicates value added. ID (L_EVENTTYPE_POS) 44 (L_POS_VALUE_ADDED) ID of Point of sale controller. ID of register or point of sale device. Item Correct of Previously Entered Item Generated to indicate that an item was corrected United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

136 ID (L_EVENTTYPE_POS) 45 (L_POS_ITEM_CORRECT_OF_PREV_ENTERED_ITEM) ID of Point of sale controller. ID of register or point of sale device. Void or Error Correction Transaction that indicates a void or error correction. ID (L_EVENTTYPE_POS) 46 (L_POS_VOID_OR_ERROR_CORRECTION) ID of Point of sale controller. ID of register or point of sale device. Register X Report Indicates a X report was generated. X reports are financial, end of day, clerk, etc.reports. ID (L_EVENTTYPE_POS) 47 (L_POS_REGISTER_X_REPORT) ID of Point of sale controller. ID of register or point of sale device. Register Z Report Indicates a Z report was generated. Z reports are the same as X reports, but resets totals to zero. ID (L_EVENTTYPE_POS) 48 (L_POS_REGISTER_Y_REPORT) ID of Point of sale controller. ID of register or point of sale device United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

137 Status Messages Status Messages are used to send status information back to the clients and do not get saved to the database. Status Messages do not use the and fields of the LNLMESSAGE structure but do set the sb_messagetype. sb_messagetype LNLMSG_TYPE_STATUS Panel ID Sub device ID (0 if event is for panel). sb_inputdevid Input device ID (0 if event is for sub device or panel). REQUEST su_eventdata.us_statusrequest.sl_statustype Type of status (See the IDistributeEvent documentation for additional information on the DATA_STATUSREQUEST structure and the various status types). su_eventdata.us_statusrequest.sl_status Status Data (See the IDistributeEvent documentation for additional information on the DATA_STATUSREQUEST structure and the various data values). An example of a status message was shown above after the Events overview United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

138 Index Access Denied Under Duress Access Granted... 3, 8 Access Granted - Anti-Passback Not Used24 Access Granted - Anti-Passback Used Access Granted No Entry Made... 8 Access Granted On Facility Code... 8, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136 Access Granted On Facility Code No Entry Made... 9 Access Granted Under Duress... 17, 21 Access Granted Under Duress No Entry Made Alarm Active Anti-Passback Invalid Entry Reader Anti-Passback Invalid Exit Reader Anti-Passback Violation Archive Server Failure Area Closed Area Limit Exceeded Asset Denied Asset Disable Command Sent... 16, 42, 43, 44, 45, 76 Asset Denied - Invalid Access Asset Denied - Invalid Asset Asset Denied - Invalid Cardholder Asset Denied - No Asset Privileges Asset Granted - Asset Owner Asset Granted - Asset Privileges Only Audibles Silenced Audibles Unsilenced Cabinet Tamper Call Conferenced Call Disconnected Call Ended Call Established Call Failed Call Queued Call Removed from Queue Call to a Busy Subscriber Call to a Private Subscriber Call to an Open Subscriber Call Transferred Canceled Cabinet Tamper Canceled Grounded Loop Canceled Line Error Canceled Open Line Canceled Power Failure Canceled Shorted Line Command 10 Set From Reader Command 11 Set From Reader Command 12 Set From Reader Command 13 Set From Reader Command 14 Set From Reader Command 15 Set From Reader Command 4 Set From Reader Command 5 Set From Reader Command 6 Set From Reader Command 7 Set From Reader Command 8 Set From Reader Command 9 Set From Reader Command Pin+10 Set From Reader Command Pin+20 Set From Reader Communications Lost Communications Restored DATA_ASSET... 74, 75, 76 DATA_STATUSREQUEST Database Error in Panel Download Denied Count Exceeded Denied Events Denied UnMask Active Zones in Group 15 Disk Full Warning Door Contact Tamper Door Contact Tamper Canceled Door Forced Open... 4, 28 Door Forced Open Canceled Door Held Open Door Held Open Canceled Door Shunt Command Executed From Reader Door Shunt Command Results - Canceled 36 Driver Error In Panel Download Fire Alarm Acknowledge Fire Alarm Block Acknowledge Fire Alarm In Fire Alarm Out Full Panel Download Completed United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

139 Full Panel Download Started Global I/O Executed Function List Grounded Loop Alarm Active Hold Host Executed Function List Inactive Badge Incoming Call Initiated Intercom Exchange Failure Intercom Function Invalid Access Level Invalid Badge Invalid Card Format Invalid Facility Code Invalid Issue Code Invalid PIN Number Line Error Active LNLMESSAGE... 4, 5, 137 Low Voltage Low Voltage Restored Motion Detected Motion Detected Restored No Command Authority OnlineCanceled Open Device Events... 3 Open Line Alarm Active Overview... 3 Panel Power Up Complete Power Failure Reader Excluded From Access List Reader Input Tamper Reader Input Tamper Canceled Relay Contact Activated Relay Contact Deactivated Request By PIN Only Retrieved Ringing Security Alarm Acknowledge Security Alarm Block Acknowledge Security Alarm In Security Alarm Out Shorted Line Alarm Active Status In Status Messages Status Out Supervisory Acknowledge Supervisory Block Acknowledge Supervisory In Supervisory Out System Reset Tamper Alarm Active Test Report Timeout Exceeded No Second Card Transmitter Alarm Transmitter Alarm Restored Transmitter Inactivity , 117, 118 Transmitter Low Battery , 111 Transmitter Low Battery Restored Transmitter Pre-Tilt Transmitter Pre-Tilt Restored Transmitter Pull Cord Alarm Transmitter Pull Cord Restored Transmitter Tamper Transmitter Tamper Restored Transmitter Temporary Tilt Disable Transmitter Tilt Transmitter Tilt Disabled Transmitter Tilt Enabled Transmitter Tilt Restored Trouble Acknowledge Trouble Block Acknowledge Trouble In Trouble Out... 81, 82 Trouble Report Unanswered Call Use Limit Exceeded User Generated Video Event Video Event Threshold Reached Video Server Disk Full Watch Tour Station Late United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

140 2016 United Lenel is a part of UTC Climate, Controls & Security, a unit of United July 19,

Contact ID as of 2/2/2015

Contact ID as of 2/2/2015 Contact ID as of 2/2/2015 100 Medical Zone A non-specific medical exists 101 Personal Emergency Zone Emergency Assistance request 102 Fail to report in Zone A user has failed to activate a monitoring device

More information

OnGuard 7.2 Resolved Issues

OnGuard 7.2 Resolved Issues UTC Fire & Security Americas Corporation, Inc. 1212 Pittsford-Victor Road Pittsford, New York 14534 Tel 866.788.5095 Fax 585.248.9185 www.lenel.com Contents OnGuard 7.2 Resolved Issues 1. Introduction...

More information

DATA SHEET ESS-ACS WE INDENTIFY SECURE AND INTEGRATE. IRIZ ID TECHNOLOGIES

DATA SHEET ESS-ACS WE INDENTIFY SECURE AND INTEGRATE. IRIZ ID TECHNOLOGIES DATA SHEET WE INDENTIFY SECURE AND INTEGRATE IRIZ ID TECHNOLOGIES www.irizid.com Introduction ESS SOFT is a web The based readers application in mustering built to centralize system are and categorized

More information

The system should also be capable of recording events automatically on any compatible DVR and should be able to retrieve recordings based on events.

The system should also be capable of recording events automatically on any compatible DVR and should be able to retrieve recordings based on events. 0BThe System The Security Management System should be capable of Controlling and Monitoring Access through the doors, Monitor and control Inputs and Outputs, include an Integrated Video Badging, Integrate

More information

OnGuard 7.1 Resolved Issues

OnGuard 7.1 Resolved Issues Lenel Systems International, Inc. 1212 Pittsford-Victor Road Pittsford, New York 14534 Tel 866.788.5095 Fax 585.248.9185 www.lenel.com Contents OnGuard 7.1 Resolved Issues 1. Introduction... 2 2. Access

More information

Contact ID as of 11/28/2018

Contact ID as of 11/28/2018 Contact ID as of 11/28/2018 100 Medical Zone A non-specific medical exists 101 Personal Emergency Zone Emergency Assistance request 102 Fail to report in Zone A user has failed to activate a monitoring

More information

ATS1250/ door/4-lift DGP. Programming Guide

ATS1250/ door/4-lift DGP. Programming Guide ATS1250/1260 4-door/4-lift DGP Programming Guide Version 2.0, July 2003 Aritech is a GE Interlogix brand. www.ge-interlogix.com Copyright (c) 2003 GE Interlogix B.V.. All rights reserved. GE Interlogix

More information

Cardax System Comparison

Cardax System Comparison System Comparison Hardware FT Series 5 Syst Com 131102 Syst Com 131102 2 Contents 1. Introduction... 5 2. System Diagrams... 7 3. Hardware Comparison... 10 4. Comparison... 11 Syst Com 131102 3 Syst Com

More information

Synergis Master Controller 2.2 Integration Guide for Assa Abloy IP Locks

Synergis Master Controller 2.2 Integration Guide for Assa Abloy IP Locks Synergis Master Controller 2.2 Integration Guide for Assa Abloy IP Locks This guide supplements the Synergis Master Controller Configuration Guide and explains how to configure Assa Abloy IP locks (PoE

More information

ATS125x/1260 Four- Door/Four-Lift DGP Programming Guide

ATS125x/1260 Four- Door/Four-Lift DGP Programming Guide ATS125x/1260 Four- Door/Four-Lift DGP Programming Guide P/N 1044982 (EN) REV A ISS 07MAR14 Copyright Trademarks and patents Manufacturer 2014 UTC Fire & Security Americas Corporation, Inc. All rights reserved.

More information

Synergis Master Controller 2.2 Integration Guide for Assa Abloy Aperio- Enabled Locks

Synergis Master Controller 2.2 Integration Guide for Assa Abloy Aperio- Enabled Locks Synergis Master Controller 2.2 Integration Guide for Assa Abloy Aperio- Enabled Locks This guide supplements the Synergis Master Controller Configuration Guide and explains how to configure Assa Abloy

More information

Monitoring Operator Guide. Access Control Manager Software Version

Monitoring Operator Guide. Access Control Manager Software Version Monitoring Operator Guide Access Control Manager Software Version 5.10.10 2018, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, ACCESS CONTROL MANAGER, ACM, ACM VERIFY AND TRUSTED

More information

2000 Series. Program Entry Guide. Control Panels

2000 Series. Program Entry Guide. Control Panels 2000 Series EN Program Entry Guide Control Panels 2000 Series Program Entry Guide About This Manual EN 2 About This Manual This guide describes the programming parameters available to the 2000 Series Control

More information

Access Control (card access)

Access Control (card access) Access Control (card access) This page should be read in conjunction with security systems - general requirements. Aesthetic Cabling Unless cabling is to be in purpose built conduits within walling, which

More information

GE Security SAPPHIRE Pro

GE Security SAPPHIRE Pro GE Security SAPPHIRE Pro Delayed Alarm Reporting and Masking User Guide Delayed Alarm Reporting and Masking User Guide 12 AV-137621:Revision-B / October 5, 2004 Delayed Alarm Reporting and Masking Delayed

More information

U-Prox IP550. Wireless access control panel. Instruction manual. W i r e l e s s a c c e s s c o n t r o l p a n e l w i t h b u i l t i n r e a d e r

U-Prox IP550. Wireless access control panel. Instruction manual. W i r e l e s s a c c e s s c o n t r o l p a n e l w i t h b u i l t i n r e a d e r 1.003 Wireless access control panel U-Prox IP550 Instruction manual W i r e l e s s a c c e s s c o n t r o l p a n e l w i t h b u i l t i n r e a d e r About this document This manual covers installation,

More information

DIAMOND II. DARM Delayed Alarm Reporting/Masking. Manual Number AV Revision - A.1 September 3, 2004

DIAMOND II. DARM Delayed Alarm Reporting/Masking. Manual Number AV Revision - A.1 September 3, 2004 Manual Number AV-137622 Revision - A.1 September 3, 2004 DIAMOND II DARM Delayed Alarm Reporting/Masking 791 Park of Commerce Boulevard Suite 100 Boca Raton Florida 33487 www.ge-security.com DIAMOND II

More information

Integration Test Plan

Integration Test Plan Integration Test Plan Terminus Security Prepared by: Kai Chan Stephen Krenzel John O Meara Version: 1.0 1 Contents 1 Introduction 3 1.1 Purpose.................................. 3 1.2 Scope...................................

More information

Pro-Watch Software Suite. Architect and Engineering Specifications. January 9, 2002 Revision 3.4

Pro-Watch Software Suite. Architect and Engineering Specifications. January 9, 2002 Revision 3.4 Architect and Engineering Specifications Revision 3.4 SECTION 13800 BUILDING AUTOMATION AND CONTROL Part 1 GENERAL 1.0.1. GENERAL 1.0.2. REFERENCES 1.0.3. DEFINITIONS 1.0.4. SYSTEM DESCRIPTIONS 1.0.5.

More information

GE Security. Challenger V8 & V9. User Manual

GE Security. Challenger V8 & V9. User Manual GE Security Challenger V8 & V9 User Manual Copyright Disclaimer Trademarks and patents Intended use Copyright 2008, GE Security Pty. Ltd.. All rights reserved. This document may not be copied or otherwise

More information

RE6100 Series Helix Security and Automation Platform

RE6100 Series Helix Security and Automation Platform CONFIGURATION Resolution Compatibles RE6100 Series Helix Security and Automation Platform C G UI D E Configuration Settings Table 1 - Panel Settings Table 2 - Zone Settings Table 3 - Device Settings Table

More information

Access CONTROL. MANAGEMENT Software

Access CONTROL. MANAGEMENT Software Software Guide Access CONTROL MANAGEMENT Software Engineered to meet today s demands and tomorrow s challenges, Keyscan s System VII software delivers unique features to provide an access control solution

More information

OnGuard Cumulative Hot Fix 3.0 Release Notes

OnGuard Cumulative Hot Fix 3.0 Release Notes Lenel Systems International, Inc. 1212 Pittsford-Victor Road Pittsford, New York 14534 Tel 585.248.9720 Fax 585.248.9185 www.lenel.com OnGuard 6.4.500 Cumulative Hot Fix 3.0 Release Notes Table of Contents

More information

Integrations Product Catalogue

Integrations Product Catalogue Integrations Product Catalogue Contents Overview Integrate - For a truly open solution 1 Icon Introduction 1 Integration Module Matrix 2 Access Control AMAG Symmetry 4 BOSCH 6 Gallagher 8 Honeywell Pro-Watch

More information

Series. NX-4-EUR Control Panel. Installation manual

Series. NX-4-EUR Control Panel. Installation manual g GE Security NetworX TM Series NX-4-EUR Control Panel Installation manual CONTENTS CONTENTS...2 GENERAL INFORMATION...4 ORDERING INFORMATION...4 FEATURE DEFINITIONS...5 PROGRAMMING THE NX-4 KEYPADS...12

More information

Application Version: 2.0 and above Date Written: 03/09/2010. Copyrights , Global Security Devices, All Rights Reserved

Application Version: 2.0 and above Date Written: 03/09/2010. Copyrights , Global Security Devices, All Rights Reserved GSD WIN USER MANUAL Application Version: 2.0 and above Date Written: 03/09/2010 Copyrights - 2010-2012, Global Security Devices, All Rights Reserved TABLE OF CONTENTS TABLE OF CONTENTS...2 SETTING UP A

More information

Training Manual with Bi-directional Wireless

Training Manual with Bi-directional Wireless Training Manual with Bi-directional Wireless Installer Training Firmware Version 2.7x X16 Stock Code: 860-1-473-X16 X64 Stock Code: 860-1-864-XS 2 IDS X-Series Training v2.7 Contents Contents 3 X-Series

More information

GV2 Series Control Panels

GV2 Series Control Panels GV2 Series Control Panels EN Owner's Manual Supplement System Requirements Minimum system requirements for Classification in accordance with ANSI/SIA CP-01-2000: UL Listed and Classified control unit Model

More information

Challenger10 Users Manual

Challenger10 Users Manual Challenger10 Users Manual P/N MAUSER-TS1016 REV 01 ISS 18FEB13 Copyright Trademarks and patents Manufacturer Agency compliance Contact information 2013 UTC Fire & Security. All rights reserved. The Challenger

More information

Paradox Integration Module Settings Guide

Paradox Integration Module Settings Guide Paradox Integration Module Settings Guide List of Terms used in Paradox Integration Module Settings Guide............. 3 Introduction into Paradox Integration Module Settings Guide............... 4 Configuration

More information

CONTACT ID REPORT CODES

CONTACT ID REPORT CODES CONTACT ID REPORT CODES PREFIX - E - ACTIVATION PREFIX - R - RESTORAL 100 Medical Zone 101 Personal Emergency Zone 102 Fail to report in Zone Fire Alarms 110 110 Fire Zone 111 Smoke Zone 112 Combustion

More information

This technical update applies to Pro-Watch Software Release 3.5 and later.

This technical update applies to Pro-Watch Software Release 3.5 and later. Technical Update Pro-Watch Software Intercom Product Support Product Versions This technical update applies to Pro-Watch Software Release 3.5 and later. Overview Intercom systems consist of master stations,

More information

Alarms for the Cisco ISA 3000

Alarms for the Cisco ISA 3000 About s This chapter gives an overview of the alarm system in the ISA 3000, and also describes how to configure and monitor alarms. About s, on page 1 Defaults for s, on page 3 Configure s, on page 3 Monitoring

More information

Access Control for. Part 3 of 4. Brought to You by. Presented by Video Security Consultants

Access Control for. Part 3 of 4. Brought to You by. Presented by Video Security Consultants 2008 Video Security Consultants Brought to You by Presented by Part 3 of 4 A1 Part 3 of 4 Taking a Hard Look at Software The essential function of an electronic access control system (EACS) is to control

More information

ATS2000/3000/4000/4500 Control Panel. Programming guide

ATS2000/3000/4000/4500 Control Panel. Programming guide ATS2000/3000/4000/4500 Control Panel Programming guide Version 2.01 (SR_F), June 2004 Aritech is a GE Interlogix brand. www.aritech.com Copyright (c) 2003 GE Interlogix B.V.. All rights reserved. GE Interlogix

More information

Contents. Glossary

Contents. Glossary Contents Glossary ------------------------------------------------------------------------------------------------------ 6 1. Introduction to the IDS 1632 -------------------------------------------------------------

More information

VISTA-100 Commercial Fire & Burglary Partitioned System

VISTA-100 Commercial Fire & Burglary Partitioned System VISTA-100 Commercial Fire & Burglary Partitioned System 4XLFN6WDUW Step-by Step Programming Procedure Single and Multiple Programming Forms System Worksheets FIRE FIRE * PULL VISTA-100PR Rev B 4/99 TABLE

More information

Control/Communicator Installation Manual

Control/Communicator Installation Manual DAS NETWORX NX-12 Control/Communicator Installation Manual General Description...2 Ordering Information...2 Option Definitions...3 Programming the LED Code Pads...5 Programming the NX-12...9 Types of Programming

More information

MG5000 V2.4 MG5050 V2.4 SP5500 V2.4 SP6000 V2.4 SP7000 V2.4. Programming Guide

MG5000 V2.4 MG5050 V2.4 SP5500 V2.4 SP6000 V2.4 SP7000 V2.4. Programming Guide MG5000 V2.4 MG5050 V2.4 SP5500 V2.4 SP6000 V2.4 SP7000 V2.4 Programming Guide We hope this product performs to your complete satisfaction. Should you have any questions or comments, please visit www.paradox.com

More information

Integrated Security Solutions

Integrated Security Solutions Integrated Security Solutions Table of Contents Control Panels 4 Keypads 8 Communication Modules 16 I/O Expanders 20 Door Control 24 Home Automation 25 RF Receivers 26 3 Our integrated security solutions

More information

Each reader connected to the Challenger LAN system is programmed as an Arming Station.

Each reader connected to the Challenger LAN system is programmed as an Arming Station. Challenger Version 8 Readers. This document provides details of the programming requirements for adding readers to a Version 8 Challenger System for use in Alarm Control Access Control functions. Each

More information

NetworX Series. NX-8 Commercial Fire Panel Installation and Startup

NetworX Series. NX-8 Commercial Fire Panel Installation and Startup NetworX Series NX-8 Commercial Fire Panel Installation and Startup 2004 GE Security All rights reserved. Printed in the United States of America. These instructions do not purport to cover all details

More information

M2M Services Ltd. RControl Alarm - Installer Manual V 1.0

M2M Services Ltd. RControl Alarm - Installer Manual V 1.0 M2M Services Ltd. RControl Alarm - Installer Manual V 1.0 Content Content... 2 Wiring the power supply module... 3 Wiring a siren... 3 SMARTEnroll self-learning zones... 3 Wireless keyfobs... 3 Supported

More information

Summit 3208GLD USER MANUAL. Electronics Line

Summit 3208GLD USER MANUAL. Electronics Line Summit 3208GLD USER MANUAL Electronics Line Table of Contents 1: Introduction... 2 2: Overview... 3 3: Keypad Functions... 4 3.1: Keypads... 4 3.2: 3108 LCD Keypad Layout... 4 4: Basic System Operation...

More information

Avigilon Control Center System Integration Guide

Avigilon Control Center System Integration Guide Avigilon Control Center System Integration Guide with Gallagher Command Centre INT-CARDAX-C-Rev3 Copyright 2013 Avigilon. All rights reserved. No copying, distribution, publication, modification, or incorporation

More information

Integrated Security Solutions

Integrated Security Solutions Integrated Security Solutions Table of Contents Control Panels 4 Keypads 8 Communication Modules 16 I/O Expanders 20 Door Control 24 Home Automation 25 RF Receivers 26 2 Our integrated security solutions

More information

Challenger V8 & V9 User Manual

Challenger V8 & V9 User Manual Challenger V8 & V9 User Manual P/N MAUSERAPCV8QR REV B 30AUG11 Copyright Trademarks and patents Manufacturer Agency Compliance 2011 UTC Fire & Security. All rights reserved. The Challenger name and logo

More information

C2 Compact Range Installation & Programming Manual

C2 Compact Range Installation & Programming Manual C2 Compact Range Installation & Programming Manual Page 1 Onsite training is available and telephone technical support with optional remote access for further assistance is all part of the support we can

More information

Aviation Solutions. Why Tyco for airports? Our systems help protect over 110 airports. Secures over 80% of UK Airports and more than 60 US Airports

Aviation Solutions. Why Tyco for airports? Our systems help protect over 110 airports. Secures over 80% of UK Airports and more than 60 US Airports Aviation Solutions Why Tyco for airports? Our systems help protect over 110 airports Secures over 80% of UK Airports and more than 60 US Airports Tyco has the only dedicated airport specific access control

More information

Course Catalogue. An evolution of excellence. Welcome to the UTC Fire and Security EMEA Lenel OnGuard Training Catalogue for Value Added Resellers

Course Catalogue. An evolution of excellence. Welcome to the UTC Fire and Security EMEA Lenel OnGuard Training Catalogue for Value Added Resellers Course Catalogue Welcome to the UTC Fire and Security EMEA Lenel OnGuard Training Catalogue for Value Added Resellers An evolution of excellence Contact information: UTC Fire & Security Kouterveldstraat

More information

OpenDevice United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation.

OpenDevice United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. OpenDevice The OnGuard OAAP program allows third party manufacturers (OAAP partners) to interface their products with the OnGuard platform. OpenDevice is one of the API groups supported by OnGuard. OpenDevice

More information

Solution 880 Operators Manual. Issue 1.00

Solution 880 Operators Manual. Issue 1.00 Solution 880 Operators Manual Issue 1.00 Solution 880 Operators Manual Copyright 1998 by, SYDNEY, AUSTRALIA Document Part Number MA408O Document ISSUE 1.00 Printed 15 June 1998 This documentation is provided

More information

10 Year Smoke Detector and Siren

10 Year Smoke Detector and Siren 10 Year Smoke Detector and Siren SKU: POPE009402 Quickstart This is a secure Alarm Sensor for Europe. To run this device please insert fresh 1 * LS14250 batteries. Please make sure the internal battery

More information

X64 Wireless Training

X64 Wireless Training X64 Wireless Training IDS Contents 1 Contents Features 3 Wireless Hardware 4 IDS & Duevi integration PCB 5 LED operation 5 Wireless Device Hardware setup 6 Location 260 7 LED Keypad Instructions 7 Adding

More information

IDS816 User Manual H Issued January 2009

IDS816 User Manual H Issued January 2009 1 Contents Glossary-------------------------------------------------------------------------------------------------------------------6 1. Introduction to the IDS 816---------------------------------------------------------------------------7

More information

1.1 Ensure the room is in the ACCESS state. Workstation indicates zone is in ACCESS state.

1.1 Ensure the room is in the ACCESS state. Workstation indicates zone is in ACCESS state. Title: Arming/Disarming Keypad Test Objective: Verify device is installed using acceptable standards and practices, communicates properly with the IDS, and provides proper protection of assets and meets

More information

CRC Technical Reference Manual P/N Rev NOV01

CRC Technical Reference Manual P/N Rev NOV01 CRC Technical Reference Manual P/N 3100132 Rev 1.0 01NOV01 DEVELOPED BY COPYRIGHT NOTICE CREDITS Edwards Systems Technology 6411 Parkland Drive Sarasota, FL 34243 (941) 739-4300 Copyright 2001 Edwards

More information

CITY OF DENTON RFP FOR SECURITY CARD ACCESS CONTROL SYSTEM EXHIBIT 2 SCOPE OF WORK AND TECHNICAL SPECIFICATIONS

CITY OF DENTON RFP FOR SECURITY CARD ACCESS CONTROL SYSTEM EXHIBIT 2 SCOPE OF WORK AND TECHNICAL SPECIFICATIONS EXHIBIT 2 SCOPE OF WORK AND TECHNICAL SPECIFICATIONS The scope of work shall be finalized upon the selection of the Firm. The proposal submission shall have accurately described your understanding of the

More information

Watchguard WGAP864 User Manual

Watchguard WGAP864 User Manual Watchguard WGAP864 User Manual v1.0 Issued September 2016 1 2 Table of Contents Glossary... 5 1. Introduction to your Watchguard WGAP864... 6 2. Before Operating your Alarm System... 6 3. Understanding

More information

FlameGard 5 UV/IR HART

FlameGard 5 UV/IR HART FlameGard 5 UV/IR HART HART Communication Manual The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically authorized

More information

The IPPS was developed on IBM-PC platform under QNX real time operating system (RTOS) and uses QNX-Windows GUI.

The IPPS was developed on IBM-PC platform under QNX real time operating system (RTOS) and uses QNX-Windows GUI. IAEA-SM-367/4/02/P INTEGRATED PHYSICAL PROTECTION SYSTEM Ranajit Kumar Control Instrumentation Division, Bhabha Atomic Research Center, Trombay, Mumbai 400085, India Abstract An Integrated Physical Protection

More information

First Alert 1200C Installer Notes M. Leuck

First Alert 1200C Installer Notes M. Leuck First Alert 2C Installer Notes M. Leuck. Programming can done by standard keypads 2. Enter programming with Installer Code + 8 + + 3. Another method of entering programming: Power system down, then back

More information

Challenger Series Users Manual

Challenger Series Users Manual Challenger Series Users Manual P/N MAUSER-TS1016 05 20AUG15 Copyright Trademarks and patents Manufacturer 2015 UTC Fire & Security Australia Pty Ltd. All rights reserved. The Challenger name and logo are

More information

DVTEL DVR Interface. DigiOp DVR Interface

DVTEL DVR Interface. DigiOp DVR Interface Cardax FT Command Centre supports interfaces with a range of third party security products, via Cardax FT Controller API middleware software interfaces. All Cardax FT Controller API interfaces are individually

More information

PROGRAMMING GUIDE SPECTRA CONTROL PANELS V , 1725EX, 1728 AND 1728EX 1755, 1755EX, 1758, AND 1758EX

PROGRAMMING GUIDE SPECTRA CONTROL PANELS V , 1725EX, 1728 AND 1728EX 1755, 1755EX, 1758, AND 1758EX PROGRAMMING GUIDE SPECTRA CONTROL PANELS V1.2 1725, 1725EX, 1728 AND 1728EX 1755, 1755EX, 1758, AND 1758EX TABLE OF CONTENTS HOW DO I PROGRAM THE SYSTEM?... 4 Single Digit Data Entry Method (Hexadecimal

More information

ARCHITECTURAL AND ENGINEERING SPECIFICATION

ARCHITECTURAL AND ENGINEERING SPECIFICATION ARCHITECTURAL AND ENGINEERING SPECIFICATION Access Control System ACTpro Vanderbilt Industries, Clonshaugh Business and Technology Park, Dublin, D17 KV84, Ireland TABLE OF CONTENTS PART 1 GENERAL 1.1 System

More information

UNC100 Integra Manual

UNC100 Integra Manual UNC100 Integra Manual New Generation Building Security July 30, 2014 V1.2 Copyright Notice Copyright 1995-2014 by All rights reserved Worldwide. Printed in Canada. This publication has been provided pursuant

More information

Yokogawa DX Ethernet Driver Help Kepware Technologies

Yokogawa DX Ethernet Driver Help Kepware Technologies Yokogawa DX Ethernet Driver Help 2012 Kepware Technologies 2 Table of Contents Table of Contents 2 4 Overview 4 Device Setup 5 Communications Parameters 7 Optimizing Your Ethernet Communications 9 Data

More information

LYNX Touch L5210 Series Security System

LYNX Touch L5210 Series Security System LYNX Touch L5210 Series Security System User Guide 800-19975 12/14 Rev. B LYNX Touch L5210 Series Your Honeywell security system is designed for use with devices manufactured or approved by Honeywell for

More information

DL100 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL

DL100 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL DL100 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL TABLE OF CONTENTS 1. GENERAL DESCRIPTION...P.2 2. STANDARD AND OPTIONAL PARTS LIST...P.2 3. FEATURE DEFINITIONS...P.3 4. TERMINAL DRAWING AND

More information

Advisor Advanced Mobile Application User Manual

Advisor Advanced Mobile Application User Manual Advisor Advanced Mobile Application User Manual Content Warnings and Disclaimers 2 Advanced Mobile 2 Contact information 2 Description 2 Screen navigation 4 Gestures 4 Menu 4 Help navigation 4 Login 5

More information

Table of Contents. Appendix A Special Characters 31

Table of Contents. Appendix A Special Characters 31 Table of Contents Introduction 2 Section 1: General System Operation 3 1.1 Getting to Know Your System... 3 1.2 How to Arm... 4 1.3 Alternate Arming Methods... 5 1.4 Disarming... 6 1.5 Alarm Memory...

More information

RANGER 7600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL

RANGER 7600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL RANGER 7600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL TABLE OF CONTENTS 1. TABLE OF CONTENTS... P.1 2. GENERAL DESCRIPTION... P.2... 3. STANDARD AND OPTIONAL PARTS LIST... P.2... 4. FEATURE

More information

NDC-F16. Access Control Panel. Installation Manual

NDC-F16. Access Control Panel. Installation Manual NDC-F16 Access Control Panel Installation Manual NDC-F16 A C C C E S S C O N T R O L P A N E L 2 Integrated Technical Vision http://www.itvsystems.com.ua This manual covers installation, programming and

More information

CARD ACCESS CONTROL SYSTEM

CARD ACCESS CONTROL SYSTEM SECTION 13851 CARD ACCESS CONTROL SYSTEM PART 1 GENERAL 1.01 SUMMARY A. Section Includes: A complete, operable, tested, integrated proximity access control system, to operate on a proximity principle where

More information

Challenger10 Administrators Manual

Challenger10 Administrators Manual Challenger10 Administrators Manual P/N MAADMN-TS1016 REV 01 ISS 18FEB13 Copyright Trademarks and patents Manufacturer Agency compliance Contact information 2013 UTC Fire & Security. All rights reserved.

More information

Security System With Scheduling. User Guide. N5943-8V4 7/04 Rev A

Security System With Scheduling. User Guide. N5943-8V4 7/04 Rev A ADEMCO VISTA-120 Security System With Scheduling User Guide N5943-8V4 7/04 Rev A Your Honeywell security system is designed for use with devices manufactured or approved by Honeywell for use with your

More information

WeatherLink for Alarm Output Addendum

WeatherLink for Alarm Output Addendum WeatherLink for Alarm Output Addendum Introduction This Streaming Data Logger is designed to provide an electrical interface between a Vantage Pro or Vantage Pro2 weather station console or Weather Envoy

More information

Control Panel. 1.0 GENERAL SCOPE OF WORK Introduction... 2

Control Panel. 1.0 GENERAL SCOPE OF WORK Introduction... 2 Architectural & Engineering Specifications Control Panel 1.0 GENERAL... 2 1.1 SCOPE OF WORK... 2 1.1.1 Introduction... 2 1.2 GENERAL CONDITIONS... 2 1.2.1 After-Sales Support... 2 1.2.2 Quality assurance...

More information

S INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL

S INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL S2000-4 INTRUSION&FIRE ALARM AND ACCESS CONTROL PANEL Installer s and User s manual S2000-4 INTRUSION&FIRE AND ACCEESS CONTROL PANEL ATTENTION! To modify configuration parameters use the program uprog.exe

More information

VISTA-128BPT/ VISTA-250BPT/ VISTA-128BPTSIA

VISTA-128BPT/ VISTA-250BPT/ VISTA-128BPTSIA VISTA-128BPT/ VISTA-250BPT/ VISTA-128BPTSIA Commercial Burglary Partitioned Security System With Scheduling User Guide 800-06905 6/10 Rev. E IMPORTANT! RECOMMENDATIONS FOR PROPER INTRUSION PROTECTION For

More information

Complete solutions for commercial security. Verex delivers leading intrusion, access and video products to protect today s companies

Complete solutions for commercial security. Verex delivers leading intrusion, access and video products to protect today s companies Complete solutions for commercial security Verex delivers leading intrusion, access and video products to protect today s companies Scalable, cost-effective security designed for today s businesses Designed

More information

Lonix Access Control Operation & Maintenance Manual

Lonix Access Control Operation & Maintenance Manual 1 (7) Lonix Access Control Operation & Maintenance Manual Lonix Ltd Teollisuuskatu 33 FI-00510 Helsinki Finland www.lonix.com 2 (7) Contents 1 Introduction...3 1.1 Health and Safety...3 1.2 Health and

More information

GLOBAL. InstallatIon & operation manual

GLOBAL. InstallatIon & operation manual InstallatIon & operation manual INDEX 1. INTRODUCTION... 5 2. FEATURES AND FUNCTIONS 2.1 Reporting Options... 2.2 Interfaces... 2.3 Programming... 2.4 Indicators and Controls...... 6 6 6 6 6 3. INSTALLATION...

More information

Setting up and Managing Alarms in McAfee ESM 10.x

Setting up and Managing Alarms in McAfee ESM 10.x McAfee SIEM Alarms Setting up and Managing Alarms in McAfee ESM 10.x Introduction McAfee SIEM provides the ability to send alarms on a multitude of conditions. These alarms allow for users to be notified

More information

Lyric Gateway. User Reference Guide. Ref: LCP300-L/LCP300-LC /16 Rev A

Lyric Gateway. User Reference Guide. Ref: LCP300-L/LCP300-LC /16 Rev A Lyric Gateway User Reference Guide Ref: LCP300-L/LCP300-LC 800-21670 10/16 Rev A Your Honeywell security system is designed for use with devices manufactured or approved by Honeywell for use with your

More information

Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual

Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual Target Audience for this Document This document is aimed at system users and provides descriptions on how to install and maintain the Milestone

More information

SECURITY SYSTEM 4110DL. Programming Form Programming Form Programming Form 4110DL-PRV3 10/96

SECURITY SYSTEM 4110DL. Programming Form Programming Form Programming Form 4110DL-PRV3 10/96 SECURITY SYSTEM 4110DL Programming Form Programming Form Programming Form 4110DL-PRV3 10/96 4110DL PROGRAMMING FORM FIELD FUNCTION [ ] = Default Value SYSTEM OPTIONS (*20-*28) *20 MASTER SECURITY CODE

More information

Alarm Control Panel WIC-16Z4P WIC-5Z2P. Installation & Operation User Manual

Alarm Control Panel WIC-16Z4P WIC-5Z2P. Installation & Operation User Manual WIC-16Z4P WIC-5Z2P Installation & Operation User Manual Page : 1/34 INDEX # Function Page 1 Abort Current Communication and Clear Reporting Queue (*59) 13 2 Abort Current Communications (*59) 10 3 Account

More information

DS9400 Series. Release Notes for Firmware V2.07. Fire Alarm Control Panel

DS9400 Series. Release Notes for Firmware V2.07. Fire Alarm Control Panel DS9400 Series EN Release Notes for Firmware V2.07 Fire Alarm Control Panel DS9400 Series Release Notes for Firmware V2.07 Trademarks Trademarks Gentex is a trademark of Gentex Corporation, Fire Protection

More information

Simplex Panel Interface Guide

Simplex Panel Interface Guide Simplex Panel Interface Guide February 2016 SATEON Software Integrations Simplex Panel Interface Guide Issue 1.0, released February 2016 Disclaimer Copyright 2016, Grosvenor Technology. All rights reserved.

More information

Testing the System. Battery Test. Dialer Test. Fire Drill Test (Code + [#] + 69) One-Man Fire Walk-Test (Code + [#] + 68)

Testing the System. Battery Test. Dialer Test. Fire Drill Test (Code + [#] + 69) One-Man Fire Walk-Test (Code + [#] + 68) F A 1 7 0 0 c Testing the System Battery Test When AC power is present, the FA1700C runs a brief battery test every 60 seconds to determine if there is a battery connected, and runs an extended battery

More information

RVRC Training Manual Fast Trace Installer Menu

RVRC Training Manual Fast Trace Installer Menu RVRC Training Manual Fast Trace Installer Menu Advanced Independent Monitoring Introduction The following guide is explain how to set up a Fast Trace or Fast TX and common areas to look out for and check

More information

D6500 reports are shown in typewriter style letters. For example, AC FAILED indicates the report sent when the panel reports an AC power failure.

D6500 reports are shown in typewriter style letters. For example, AC FAILED indicates the report sent when the panel reports an AC power failure. Notice The material and instructions covered in this manual have been carefully checked for accuracy and are presumed to be reliable. However, Radionics, Inc. assumes no responsibility for inaccuracies

More information

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs)

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) MRS752348-MUM Issued: 0/997 Version: F/23.6.2005 Data subject to change without notice COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) Contents. Introduction... 3. Features... 3.2 Application...

More information

VISTA-32FBPT. Commercial Fire and Burglary Partitioned Security Systems with Scheduling. User Guide /12 Rev. B

VISTA-32FBPT. Commercial Fire and Burglary Partitioned Security Systems with Scheduling. User Guide /12 Rev. B VISTA-32FBPT Commercial Fire and Burglary Partitioned Security Systems with Scheduling User Guide 800-11045 2/12 Rev. B 2 TABLE OF CONTENTS SYSTEM OVERVIEW...5 General...5 A Partitioned System...5 Zones...6

More information

Challenger V8 & V9 Administrator s Manual

Challenger V8 & V9 Administrator s Manual Challenger V8 & V9 Administrator s Manual P/N MAUSERAPCV8 REV B 30AUG11 Copyright Trademarks and patents Manufacturer Agency Compliance 2011 UTC Fire & Security. All rights reserved. The Challenger name

More information

Radionics D4112 Program Sheet

Radionics D4112 Program Sheet Programming only by downloading, 5200 Programmer or 5100 "Wand" Programmer Plug programmer in and momentarily short Reset Pin to Terminal 25 to enable program mode 1. Account Account # I I I I I (0 to

More information

User s Guide. SUB-MA7240O-0001.OG.Solution doc. Created: 6/05/03. Last Updated: 23/09/03. MA7240AO-0001 Version 1.0

User s Guide. SUB-MA7240O-0001.OG.Solution doc. Created: 6/05/03. Last Updated: 23/09/03. MA7240AO-0001 Version 1.0 User s Guide SUB-MA7240O-0001.OG.Solution40-111.doc Created: 6/05/03 Last Updated: 23/09/03 MA7240AO-0001 Version 1.0 2 Table Of Contents User List...6 Quick Reference..7 Features...7 Keypad User's Guide...8

More information

RANGER 8600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL

RANGER 8600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL RANGER 8600 DOWNLOADABLE CONTROL COMMUNICATOR INSTALLATION MANUAL TABLE OF CONTENTS GENERAL DESCRIPTION... 2 STANDARD AND OPTIONAL PARTS LIST... 2 PARTS DIAGRAM... 3 TERMINAL DRAWING AND SPECIAL NOTES...

More information