OpenDevice - Events Guide...Open Device Events Revision History Date Author Notes 10/10/2007 R....

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

Transcript of OpenDevice - Events Guide...Open Device Events Revision History Date Author Notes 10/10/2007 R....

Page 1: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 1

OpenDevice Events Guide

Page 2: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 2

Table of Contents Open Device Events ...................................................................................................................... 3 Granted Access Events ................................................................................................................. 8 Denied Events .............................................................................................................................. 11 Emergency Events ....................................................................................................................... 21 Area Control Events ................................................................................................................... 23 System Events .............................................................................................................................. 26 Elevator Events ........................................................................................................................... 71 Asset Events ................................................................................................................................. 74 Fire Events ................................................................................................................................... 77 Intercom Events .......................................................................................................................... 90 Video Events ................................................................................................................................ 97 Transmitter Events ................................................................................................................... 110 Biometric Events ....................................................................................................................... 120 Muster Events............................................................................................................................ 121 Generic Events .......................................................................................................................... 122 Point Of Sale Events ................................................................................................................. 124 Status Messages ......................................................................................................................... 137 Index ........................................................................................................................................... 138

Page 3: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 5.10.3xx 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_REACHED, L_SYSTEM_ACKNOWLEDGMENT_ACTION_EXECUTED, L_SYSTEM_ACKNOWLEDGMENT_ACTION_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 sb_EventType and the second ID is the sb_EventID which is unique for the sb_EventType. These events are stored in the database based on the sb_EventType and sb_EventID. 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 sb_EventTypes are listed below:

sb_EventTypes: 0 – Access Granted 1 – Access Denied 2 – Emergency

Page 4: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 13-17 – Reserved 18 – Biometric

19 – Trouble 20 – Digitize 21 – Burglary 22 – Temperature 23 – Gas 24 – Relay Sounder 25 – Medical 26 – Water 27 – C900 28 – 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.

Page 5: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 5

Note: For releases after the 5.10.2xx 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 Size of this structure. This variable can be set using a statement like: sizeof(LNLMESSAGE).

sb_MessageType 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.

sl_SerialNumber 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().

sl_Time 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));

Page 6: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 6

ls_Event.sl_Size = sizeof(LNLMESSAGE); ls_Event.sl_SerialNumber = GetPanelEventSerialNumber(); ls_Event.sl_Time = g_oTimeConverter.GetCurrentGmtTime(); //time(NULL); ls_Event.ss_AccessPanelID = m_PanelID; ls_Event.sb_EventType = L_EVENTTYPE_SYSTEM; ls_Event.sb_EventID = 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 sb_DeviceID 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 (sb_EventType) and the event ID (sb_EventID). 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.ss_AccessPanelID = m_PanelID; ls_Event.sb_DeviceID = station1; ls_Event.sb_EventType = L_EVENTTYPE_INTERCOM; ls_Event.sb_EventID = L_INTERCOM_CALL_TO_OPEN; ls_Event.sb_EventDataType = 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 sb_EventDataType to EVENT_DATA_TYPE_INTERCOM to

Page 7: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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.ss_AccessPanelID = m_PanelID; ls_Event.sb_MessageType = LNLMSG_TYPE_STATUS; ls_Event.sb_EventDataType = EVENT_DATA_TYPE_STATUSREQUEST; 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 sb_EventDataType needs to be set to EVENT_DATA_TYPE_STATUSREQUEST. 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.

Page 8: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 8

Granted Access Events Access Granted This event is used to indicate that the cardholder was granted access.

ID 1 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 0 (L_GRANTED_ACCESS) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 1 (L_GRANTED_FACILITYCODE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 2 (L_GRANTED_NOENTRYMADE)

Page 9: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 9

ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 3 (L_GRANTED_FCNOENTRYMADE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 843 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 8 (L_GRANTED_READER_UNLOCKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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.

Page 10: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 10

ID 1938 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 10

(L_GRANTED_HOST_OPEN_DOOR_USED) ss_AccessPanelID Panel ID sb_DeviceID 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 1939 sb_EventType 0 (L_EVENTTYPE_GRANTED) sb_EventID 10

(L_GRANTED_HOST_OPEN_DOOR_NOT_USED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Page 11: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 11

Denied Events Invalid Card Format This event is used to indicate an invalid card format was detected.

ID 6 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 0 (L_DENIED_INVALIDCARDFORMAT) ss_AccessPanelID ID of panel. sb_DeviceID ID of reader. sb_EventDataType EVENT_DATA_TYPE_CNA su_EventData.us_DataCNA.sl_CardNumber 0

Denied Count Exceeded Currently this event is not being used.

ID 7 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 1 (L_DENIED_DENYCOUNTEXCEEDED) ss_AccessPanelID Panel ID. Sb_DeviceID Device ID (Reader).

Page 12: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 12

Denied, PIN Only Request Indicates an attempt to access a reader using only a PIN code.

ID 8 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 2 (L_DENIED_REQUESTBYPINONLY)

Invalid Facility Code Event that indicates that an invalid facility code.

ID 9 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 3 (L_DENIED_INVALIDFACILITYCODE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 4 (L_DENIED_INVALIDBADGE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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).

Page 13: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 13

Invalid Issue Code Event that indicates an invalid issue code.

ID 11 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 5 (L_DENIED_INVALIDISSUECODE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 6 (L_DENIED_INVALIDPIN) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 7 (L_DENIED_INVALIDACCESSLEVEL) ss_AccessPanelID ID of panel. sb_DeviceID ID of reader. sb_InputArg Used to indicate the elevator floor number when

Page 14: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 14

event is generated for an elevator reader (0 indicates no floor number associated with event).

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 8 (L_DENIED_INACTIVEBADGE) ss_AccessPanelID ID of panel. sb_DeviceID 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).

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 9 (L_DENIED_READEREXCLUDED) ss_AccessPanelID Panel ID. sb_DeviceID 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)

sb_EventDataType 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).

Page 15: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 15

Denied, No Command Authority Event indicating that the deny was because of no command authority.

ID 16 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 10 (L_DENIED_CMDAUTHORITY) ss_AccessPanelID Panel ID. sb_DeviceID 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)

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 11 (L_DENIED_DENIEDMASK) ss_AccessPanelID Panel ID. sb_DeviceID 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)

sb_EventDataType 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 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 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).

Page 16: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 16

sb_EventDataType 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 801 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 15 (L_DENIED_LOW_BATTERY) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 812 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 17 (L_DENIED_BIOMETRIC_MISMATCH) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 844 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 18 (L_DENIED_READER_LOCKED) ss_AccessPanelID Panel ID

Page 17: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 17

sb_DeviceID Device ID (Reader) sb_EventDataType 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 1508 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 26 (L_DENIED_NO_HOST_APPROVAL) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1509 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 27 (L_DENIED_UNAUTHORIZED_ASSETS) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1550 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 28 (L_DENIED_NO_BIO_RECORD) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType EVENT_DATA_TYPE_CA su_EventData.us_DataCA.sl_CardNumber Card Number

Page 18: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1551 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 29 (L_DENIED_NO_BIO_DEVICE) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1789 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 33

(L_DENIED_SC_AUTHENTICATION_FAILED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1896 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 34 (L_DENIED_ESCORT_TIMEOUT) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType EVENT_DATA_TYPE_CA su_EventData.us_DataCA.sl_CardNumber Card Number

Page 19: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 19

Access Denied: Area Occupied An event indicating that access was denied due to the room being empty.

ID 1911 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 36

(L_DENIED_SPC_TWOMAN_MAY_NOT_EXIT) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1912 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 37

(L_DENIED_SPC_TWOMAN_NO_APPROVAL) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1914 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 38 (L_DENIED_BADGE_NOT_IN_PANEL) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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.

Page 20: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 20

ID 1928 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 35

(L_DENIED_SPC_TWOMAN_AREA_EMPTY) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 1984 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 39 (L_DENIED_ASSET_REQUIRED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 2289 sb_EventType 1 (L_EVENTTYPE_DENIED) sb_EventID 65 (L_DENIED_ACCESS) ss_AccessPanelID ID of panel. sb_DeviceID ID of reader. sb_EventDataType 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).

Page 21: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 21

Emergency Events Access Granted Under Duress Event that indicates that cardholder was granted access under duress.

ID 20 sb_EventType 2 (L_EVENTTYPE_EMERGENCY) sb_EventID 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).

sb_EventDataType 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 sb_EventType 2 (L_EVENTTYPE_EMERGENCY) sb_EventID 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).

sb_EventDataType 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 sb_EventType 2 (L_EVENTTYPE_EMERGENCY) sb_EventID 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).

sb_EventDataType EVENT_DATA_TYPE_CA

Page 22: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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).

Page 23: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 23

Area Control Events Anti-Passback Violation Event that is used to indicate an anti-passback violation.

ID 23 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 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).

sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 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).

sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 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).

Page 24: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 24

sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 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).

sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 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).

sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 5 (L_AREA_GRANTEDAPBNOTUSED) sb_InputArg Used to indicate the elevator floor number when

event is generated for an elevator reader (0

Page 25: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 25

indicates no floor number associated with event). sb_EventDataType 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 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 6 (L_AREA_APB_INVALID_EXIT_RDR)

Anti-Passback Invalid Entry Reader Currently this event is not used.

ID 30 sb_EventType 3 (L_EVENTTYPE_AREACONTROL) sb_EventID 7 (L_AREA_APB_INVALID_ENTRY_RDR)

Page 26: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 26

System Events Not Configured Event used to indicate that a device is not configured in the system.

ID 33 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 0 (L_SYSTEM_OFFLINE) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Alarm Canceled Indicates that an alarm active condition has been canceled. Event Pair – Restoring (35).

ID 34 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 1 (L_SYSTEM_ONLINE) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Alarm Active Event used to indicate that an alarm active for a device. Event Pair – Initiating (34)

ID 35 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 2 (L_SYSTEM_ALARM) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 27: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 27

Tamper Alarm Active Currently this event is not being generated. See the cabinet tamper events.

ID 36 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 3 (L_SYSTEM_TAMPER)

Line Error Active Event used to indicate a line error active condition. Event Pair – Initiating (55)

ID 37 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 4 (L_SYSTEM_LINEERROR) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Shorted Line Alarm Active Event used to indicate a shorted line alarm active condition. Event Pair – Initiating (56)

ID 38 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 5 (L_SYSTEM_SHORTEDLINE) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Open Line Alarm Active Event used to indicate an open line alarm active condition. Event Pair – Initiating (57)

ID 39 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 6 (L_SYSTEM_OPENLINE) ss_AccessPanelID Panel ID

Page 28: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 28

sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Grounded Loop Alarm Active Event used to indicate a grounded loop alarm active condition. Event Pair – Initiating (58)

ID 40 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 7 (L_SYSTEM_GROUNDEDLOOP) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Door Forced Open Event used to indicate that a door forced open condition exists. Event Pair – Initiating (42)

ID 41 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 8 (L_SYSTEM_FORCEDOPEN) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Door Forced Open Canceled Event used to indicate that a door forced open condition has been canceled. Event Pair – Restoring (41)

ID 42 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 9 (L_SYSTEM_FORCEDCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 29: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 29

Door Held Open Event used to indicate a door held open condition. Event Pair – Initiating (44)

ID 43 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 10 (L_SYSTEM_HELDOPEN) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Door Held Open Canceled Event used to indicate a door held open condition has been canceled. Event Pair – Restoring (43)

ID 44 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 11 (L_SYSTEM_HELDOPEN) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

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 47 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 14 (L_SYSTEM_READERINPUT) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 30: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 48 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 15 (L_SYSTEM_READERINPUTCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

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 49 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 16 (L_SYSTEM_DOORCONTACT) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

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 50 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 17 (L_SYSTEM_DOORCONTACTCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Cabinet Tamper Event used to indicate a cabinet tamper on a device.

Page 31: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 31

Event Pair – Initiating (52)

ID 51 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 18 (L_SYSTEM_CABINETTAMPER) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Cabinet Tamper Event used to indicate a cabinet tamper has been canceled. Event Pair – Restoring (51)

ID 52 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 19 (L_SYSTEM_CABINETCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Power Failure Event used to indicate a power failure on a device. Event Pair – Initiating (54)

ID 53 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 20 (L_SYSTEM_POWERFAILURE) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Power Failure Event used to indicate a power failure condition has been canceled. Event Pair – Restoring (53)

ID 54 sb_EventType 4 (L_EVENTTYPE_SYSTEM)

Page 32: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 32

sb_EventID 21 (L_SYSTEM_POWERCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Line Error Event used to indicate that a line error condition has been canceled. Event Pair – Restoring (37)

ID 55 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 22 (L_SYSTEM_LINEERRORCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Shorted Line Event used to indicate that a shorted line condition has been canceled. Event Pair – Restoring (38)

ID 56 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 23 (L_SYSTEM_SHORTEDLINECANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Open Line Event used to indicate that an open line condition has been canceled. Event Pair – Restoring (39)

ID 57 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 24 (L_SYSTEM_OPENLINECANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel).

Page 33: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 33

sb_EventDataType EVENT_DATA_TYPE_STATUS

Canceled Grounded Loop Event used to indicate that a grounded loop condition has been canceled. Event Pair – Restoring (40)

ID 58 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 25 (L_SYSTEM_GROUNDEDLOOPCANCEL) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Panel Power Up Complete Event used to indicate that the panel power up is complete.

ID 61 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 28 (L_SYSTEM_POWERUPEVENT) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS 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 78 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 45 (L_SYSTEM_DOWNLOAD_STARTED) ss_AccessPanelID Panel ID. sb_InputDevID Data type. sb_EventDataType EVENT_DATA_TYPE_STATUSREQUEST

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)

Page 34: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 34

ID 79 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 46 (L_SYSTEM_DOWNLOAD_DB_ERROR) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_InputDevID Data type. sb_EventDataType EVENT_DATA_TYPE_STATUS

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 80 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 47 (L_SYSTEM_DOWNLOAD_DRIVER_ERROR) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_InputDevID Data type. sb_EventDataType EVENT_DATA_TYPE_STATUS

Full Panel Download Completed This event is used internally by the Lenel Communication Server to indicate that a full database download has completed.

ID 81 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 48 (L_SYSTEM_DOWNLOAD_FINISHED) ss_AccessPanelID Panel ID. sb_InputDevID Data type. sb_EventDataType EVENT_DATA_TYPE_STATUSREQUEST

Relay Contact Activated Event used to indicate that a relay contact has been activated.

ID 86 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 53 (L_SYSTEM_OUTPUT_OPEN) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel).

Page 35: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 35

sb_EventDataType EVENT_DATA_TYPE_STATUS

Relay Contact Deactivated Event used to indicate that a relay contact has been deactivated.

ID 87 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 54 (L_SYSTEM_OUTPUT_CLOSED) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel). sb_EventDataType EVENT_DATA_TYPE_STATUS

Host Executed Function List Generated when a function list has been executed from the host.

ID 88 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 55 (L_SYSTEM_HOSTTRIGGERED_FUNCTION) sb_EventDataType EVENT_IV_TYPE_HOST

Door Shunt Command Executed From Reader Event indicating that the door shunt command executed from the reader.

ID 89 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 56 (L_SYSTEM_DOOR_SHUNT_CMD) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 90 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 57

(L_SYSTEM_SET_FUNC_TRUE_CMD)

Page 36: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 36

ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 91 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 58

(L_SYSTEM_SET_FUNC_FALSE_CMD) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 92 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 59

(L_SYSTEM_DOOR_SHUNT_CMD_RESULTS) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType EVENT_IV_TYPE_CMD_RES su_EventData.us_DataCmdRes.sb_Results ???

Command 4 Set From Reader Reader command 4 was executed.

ID 95 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 62 (L_SYSTEM_SET_FUNC_CMD4) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType EVENT_IV_TYPE_CMD_REQ (optional) su_EventData.us_DataCmdReq.sl_CardNumber Card number (optional)

Page 37: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 37

Command 5 Set From Reader Reader command 5 was executed.

ID 96 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 63 (L_SYSTEM_SET_FUNC_CMD5) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 97 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 64 (L_SYSTEM_SET_FUNC_CMD6) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 98 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 65 (L_SYSTEM_SET_FUNC_CMD7) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 99 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 66 (L_SYSTEM_SET_FUNC_CMD8)

Page 38: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 38

ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 100 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 67 (L_SYSTEM_SET_FUNC_CMD9) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 101 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 68 (L_SYSTEM_SET_FUNC_CMD10) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 102 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 69 (L_SYSTEM_SET_FUNC_CMD11) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType EVENT_IV_TYPE_CMD_REQ (optional) su_EventData.us_DataCmdReq.sl_CardNumber Card number (optional)

Page 39: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 39

Command 12 Set From Reader Reader command 12 was executed.

ID 103 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 70 (L_SYSTEM_SET_FUNC_CMD12) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 104 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 71 (L_SYSTEM_SET_FUNC_CMD13) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 105 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 72 (L_SYSTEM_SET_FUNC_CMD14) ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 106 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 73 (L_SYSTEM_SET_FUNC_CMD15)

Page 40: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 40

ss_AccessPanelID Panel ID sb_DeviceID Reader ID. sb_EventDataType 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 109 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 76 (L_SYSTEM_COMM_LOST) ss_AccessPanelID Panel ID sb_DeviceID 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 sb_DeviceID 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 110 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 77 (L_SYSTEM_COMM_RESTORED) ss_AccessPanelID Panel ID sb_DeviceID 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 sb_DeviceID 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 111 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 78 (L_SYSTEM_GIO_FUNC_LIST) ss_AccessPanelID Panel ID.

Page 41: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 41

sb_InputArg Operation executed on function list: 1 - False 2 - True 3 – Pulse

sb_IV Function list ID.

Watch Tour Station Late Currently this event is not being used.

ID 175 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 142 (L_SYSTEM_SYS_TOUR_LATE)

Disk Full Warning Currently this event is not being used.

ID 181 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 146 (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 219 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 181 (L_SYSTEM_DB_ERR_POLLING_STOPPED) ss_AccessPanelID 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 768 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 183 (L_SYSTEM_DIALUP_LOWWATERMARK) ss_AccessPanelID Panel ID

Page 42: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 769 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 184 (L_SYSTEM_DIALUP_LASTTIMEEXPIRED) ss_AccessPanelID Panel ID

Low Voltage Event used to indicate a low voltage condition for a device.

ID 775 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 190 (L_SYSTEM_LOW_VOLTAGE) ss_AccessPanelID Panel ID sb_DeviceID 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 776 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 191 (L_SYSTEM_LOW_VOLTAGE_RESTORED) ss_AccessPanelID Panel ID sb_DeviceID 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 795 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 192 (L_SYSTEM_COMM_SWITCH_ALT ss_AccessPanelID Panel ID.

Page 43: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 796 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 193 (L_SYSTEM_COMM_SWITCH_PRI) ss_AccessPanelID Panel ID.

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 797 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 194 (L_SYSTEM_COMM_ALT_LOST) ss_AccessPanelID Panel ID.

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 798 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 195 (L_SYSTEM_COMM_ALT_RESTORE) ss_AccessPanelID Panel ID.

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 799 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 196 (L_SYSTEM_COMM_PRI_LOST) ss_AccessPanelID Panel ID.

Page 44: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 800 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 197 (L_SYSTEM_COMM_PRI_RESTORE) ss_AccessPanelID Panel ID.

Reader Mode Facility Code Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode.

ID 802 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 198 (L_SYSTEM_RDR_MODE_FC) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Reader Mode Card Only Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode.

ID 803 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 199

(L_SYSTEM_RDR_MODE_CARD_ONLY) ss_AccessPanelID Panel ID. sb_DeviceID 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 804 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 200

(L_SYSTEM_RDR_MODE_1ST_CARDUNLCK)

Page 45: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 45

ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Reader Mode Unlocked Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode.

ID 805 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 201 (L_SYSTEM_RDR_MODE_UNLOCKED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Reader Mode Locked Whenever a reader mode becomes active, this event is generated to indicate the switchover to this mode.

ID 806 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 202 (L_SYSTEM_RDR_MODE_LOCKED) ss_AccessPanelID Panel ID. sb_DeviceID 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 807 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 203 (L_SYSTEM_READER_RESET2) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Key Override Key override.

Page 46: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 46

ID 808 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 204 (L_SYSTEM_KEY_OVERRIDE) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Transfer, PDA To Lock This event is generated when the device (lockset) is programmed / reprogrammed through a download (from a PDA).

ID 809 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 205

(L_SYSTEM_TRANSFER_PDA_TO_LOCK) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 810 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 206 (L_SYSTEM_TRANSFER_HISTORY) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 811

Page 47: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 47

sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 207

(L_SYSTEM_TRANSFER_DIAGNOSTICS) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 831 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 208 (L_SYSTEM_INPUT_MASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID sb_InputDevID Input ID

Input Unmasked Input became unmasked.

ID 832 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 209 (L_SYSTEM_INPUT_UNMASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID sb_InputDevID Input ID

Door Forced Open Masked Door Forced Masked.

ID 833 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 210 (L_SYSTEM_DOOR_FORCED_MASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Page 48: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 48

Door Forced Open Unmasked Door Forced Unmasked.

ID 834 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 211

(L_SYSTEM_DOOR_FORCED_UNMASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Door Held Open Masked Indicates that the mask for the door held open has become masked.

ID 835 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 212

(L_SYSTEM_DOOR_HELDOPEN_MASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Door Held Open Unmasked Indicates that the mask for door held open became unmasked.

ID 836 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 213

(L_SYSTEM_DOOR_HELDOPEN_UNMASKED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Reader Mode Pin or Card Indicates that the reader mode changed to Pin or Card.

ID 837 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 214

(L_SYSTEM_RDR_MODE_PIN_OR_CARD) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader)

Page 49: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 49

Reader Mode Card and Pin Indicates that the reader mode changed to Pin and Card.

ID 838 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 215

(L_SYSTEM_RDR_MODE_PIN_AND_CARD) ss_AccessPanelID Panel ID sb_DeviceID 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 842 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 216

(L_SYSTEM_PANEL_OPTIONS_MISMATCH) ss_AccessPanelID 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 845 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 217

(L_SYSTEM_MAX_CARDHOLDERS_REACHED) ss_AccessPanelID 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 846 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 218 (L_SYSTEM_MAX_ASSETS_REACHED) ss_AccessPanelID Panel ID

Page 50: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 50

Failed To Report Expected Event Indicates that a device that is supposed to report in has failed to do so.

ID 1499 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 420 (L_SYSTEM_FAILED_TO_REPORT) ss_AccessPanelID Panel ID

Scheduler Action Failed Used to indicate that a scheduler action failed.

ID 1502 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 421

(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 1503 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 422

(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 1504 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 423

(L_SYSTEM_GUARD_TOUR_ACTION_FAILED) sl_SegmentID Segment ID sb_AssociatedText Action events contain associated text with the

Page 51: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 51

description of the action.

Guard Tour Action Executed Used to indicate that a guard tour action has executed.

ID 1505 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 424

(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 1506 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 425

(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 1507 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 426

(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 1510

Page 52: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 52

sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 427

(L_SYSTEM_INVALID_DEVICE_SERIAL_NUMBER) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Invalid Device Type Mismatch Event used to indicate that the device type is incorrect.

ID 1511 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 428

(L_SYSTEM_DEVICE_TYPE_MISMATCH) ss_AccessPanelID Panel ID. sb_DeviceID Device ID.

Panel ID Mismatch Event used to indicate that panel ID doesn’t match what is expected.

ID 1512 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 429 (L_SYSTEM_PANEL_ID_MISMATCH) ss_AccessPanelID Panel ID.

Panel Free Memory Low Event used to indicate that the free memory in the panel/controller is low.

ID 1513 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 430

(L_SYSTEM_PANEL_FREE_MEMORY_LOW) ss_AccessPanelID Panel ID.

First Card Unlock Mode Enabled Generated when first card unlock mode is enabled for a door.

ID 1542 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 440

Page 53: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 53

(L_SYSTEM_FIRST_CARD_UNLOCK_MODE_ENABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

First Card Unlock Mode Disabled Generated when first card unlock mode is disabled for a door.

ID 1543 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 441

(L_SYSTEM_FIRST_CARD_UNLOCK_MODE_DISABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Extended Held Open Mode Enabled Generated when extended held open mode is enabled.

ID 1544 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 442

(L_SYSTEM_EXTENDED_HELD_OPEN_MODE_ENABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Extended Held Open Mode Disabled Generated when extended held open mode is disabled.

ID 1545 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 443

(L_SYSTEM_EXTENDED_HELD_OPEN_MODE_DISABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 54: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1546 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 444 (L_SYSTEM_CIPHER_MODE_ENABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Cipher Mode Disabled Generated when Cipher mode is disabled for a reader.

ID 1547 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 445

(L_SYSTEM_CIPHER_MODE_DISABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Biometric Verify Mode Enabled Generated when biometric verify mode is enabled.

ID 1548 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 446

(L_SYSTEM_BIO_VERIFY_MODE_ENABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (ReaderID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Biometric Verify Mode Disabled Generated when biometric verify mode is disabled.

ID 1549 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 447

Page 55: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 55

(L_SYSTEM_BIO_VERIFY_MODE_DISABLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (ReaderID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Extended Held Command Denied Generated when an extended held command is denied.

ID 1552 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 448

(L_SYSTEM_EXT_HELD_CMND_DENIED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType 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 1553 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 449

(L_SYSTEM_EXT_HELD_CMND_ACCEPTED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType 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 1784 sb_EventType 4 (L_EVENTTYPE_SYSTEM)

Page 56: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 56

sb_EventID 535 (L_SYSTEM_MAX_BIO_TEMPLATES_REACHED)

Acknowledgment Action Executed Indicates that an action has been executed from an alarm acknowledgment.

ID 1785 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 536

(L_SYSTEM_ACKNOWLEDGMENT_ACTION_EXECUTED)

Acknowledgment Action Failed Indicates that an action that was executed from an alarm acknowledgment failed.

ID 1786 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 537

(L_SYSTEM_ACKNOWLEDGMENT_ACTION_FAILED)

Alarm Monitoring Action Group Executed Indicates that an action group was executed from Alarm Monitoring.

ID 1787 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 538

(L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_EXECUTED) ss_AccessPanelID Panel ID

Alarm Monitoring Action Group Failed Indicates that an action group failed to be executed from Alarm Monitoring.

ID 1788 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 539

(L_SYSTEM_ALARM_MONITORING_ACTION_GROUP_FAILED) ss_AccessPanelID Panel ID

Page 57: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1790 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 540

(L_SYSTEM_COMMUNICATION_INIT_FAILED) ss_AccessPanelID 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 1791 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 541

(L_SYSTEM_USER_FAILED_TO_REACH_DESTINATION) ss_AccessPanelID Panel ID

Unexpected Access Attempt Used by the Destination Assurance feature to indicate that a cardholder attempted access at an unexpected destination reader.

ID 1792 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 542

(L_SYSTEM_UNEXPECTED_ACCESS_ATTEMPT) ss_AccessPanelID Panel ID

Unexpected Access Used by the Destination Assurance feature to indicate that a cardholder gained access at an unexpected reader.

ID 1793 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 543 (L_SYSTEM_UNEXPECTED_ACCESS) ss_AccessPanelID Panel ID

Page 58: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 58

Reader Low Battery Generated when a reader has a low battery.

ID 1814 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 544 (L_SYSTEM_READER_LOW_BATTERY) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Reader Low Battery Restored Generated when a reader low battery condition has been restored.

ID 1815 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 545

(L_SYSTEM_READER_LOW_BATTERY_RESTORED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Reader Motor Stalled Generated when the motor stalls on a reader.

ID 1816 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 546

(L_SYSTEM_READER_MOTOR_STALLED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

Reader Motor Stalled Restored Generated when a motor stalled condition has been restored.

ID 1817 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 547

(L_SYSTEM_READER_MOTOR_STALLED_RESTORED)

Page 59: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 59

ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_STATUS

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 1873 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 548

(L_SYSTEM_CONTROLLER_ENCRYPTION_ERROR) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

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 1874 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 549

(L_SYSTEM_CONTROLLER_CONNECTION_MISMATCH) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

History Report Start Generated when a controller or device starts to report the contents of its internal event buffer.

ID 1881 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 550 (L_SYSTEM_HISTORY_START) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 60: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 60

History Report End Generated when a controller or device ends reporting the contents of its internal event buffer.

ID 1882 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 551 (L_SYSTEM_HISTORY_END) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

Point Enabled Generated when an input point is the system has been enabled.

ID 1883 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 552 (L_SYSTEM_POINT_ENABLE) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Input point) sb_EventDataType EVENT_DATA_TYPE_STATUS

Point Disabled Generated when an input point is the system has been disabled.

ID 1884 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 553 (L_SYSTEM_POINT_DISABLE) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Input point) sb_EventDataType EVENT_DATA_TYPE_STATUS

Door Open An event indicating that the door has opened.

ID 1887 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 554 (L_SYSTEM_DOOR_OPEN) ss_AccessPanelID Panel ID. sb_DeviceID Device ID

Page 61: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 61

Door Close Generated when a door closes.

ID 1888 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 555 (L_SYSTEM_DOOR_CLOSE) ss_AccessPanelID Panel ID. sb_DeviceID Device ID

Communications With Host Lost An event was generated by the hardware when communications with the host was lost.

ID 1889 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 556 (L_SYSTEM_COMM_LOST_WITH_HOST) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

Communications With Host Restored An event was generated by the hardware when communications with the host was restored.

ID 1890 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 557

(L_SYSTEM_COMM_RESTORED_WITH_HOST) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

Panel Event Capacity Exceeded - Events Overwritten Generated when the event log in the panel fills up and starts overwriting old events.

ID 1905 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 558

(L_SYSTEM_EVENT_LOG_OVERWRITTEN) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 62: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 62

Communication Access Denied ???.

ID 1916 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 559 (L_SYSTEM_COMM_ACCESS_DENIED) ss_AccessPanelID Panel ID. sb_DeviceID ???

Communication Access Restored ???.

ID 1917 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 560

(L_SYSTEM_COMM_ACCESS_RESTORED) ss_AccessPanelID Panel ID. sb_DeviceID ???

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.

ID 1920 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 561

(L_SYSTEM_ARMDISARM_CMND_DENIED ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType 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 1921

Page 63: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 63

sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 562

(L_SYSTEM_ARMDISARM_CMND_ACCEPTED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID) sb_EventDataType EVENT_DATA_TYPE_USERCMD su_EventData.us_UserCmdData. sl_AlarmMaskGroup

Alarm Mask Group ID for command

Alarm Mask Group Armed This event is generated when the alarm mask group is armed.

ID 1922 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 563

(L_SYSTEM_ALARMMASKGROUP_ARMED) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP su_EventData.us_AlarmMaskGroupData. sl_AlarmMaskGroup

Alarm Mask Group ID that was armed

Alarm Mask Group Disarmed This event is generated when the alarm mask group is disarmed.

ID 1923 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 564

(L_SYSTEM_ALARMMASKGROUP_DISARMED) ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP su_EventData.us_AlarmMaskGroupData. sl_AlarmMaskGroup

Alarm Mask Group ID that was disarmed

Alarm Mask Group Force Armed This event is generated when the alarm mask group is force armed.

ID 1924 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 565

(L_SYSTEM_ALARMMASKGROUP_FORCE_ARMED) ss_AccessPanelID Panel ID.

Page 64: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 64

sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP su_EventData.us_AlarmMaskGroupData. sl_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.

ID 1925 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 566

(L_SYSTEM_ALARMMASKGROUP_COUNT_INCREME ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP su_EventData.us_AlarmMaskGroupData. sl_AlarmMaskGroup

Alarm Mask Group ID that was incremented

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.

ID 1926 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 567

(L_SYSTEM_ALARMMASKGROUP_COUNT_DECREM ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP su_EventData.us_AlarmMaskGroupData. sl_AlarmMaskGroup

Alarm Mask Group ID that was decremented

Alarm Mask Group Arming Failure, Active Points The following command is used to indicate an arming failure due to active points.

ID 1927 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 568

(L_SYSTEM_ALARMMASKGROUP_ARM_FAILURE_P ss_AccessPanelID Panel ID. sb_EventDataType EVENT_DATA_TYPE_ALARMMASKGROUP

Page 65: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1936 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 572

(L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Elevator Terminal ID)

Unknown Elevator Terminal Generated when an elevator terminal is detected that has not been configured in the system.

ID 1937 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 573

(L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL) ss_AccessPanelID Panel ID. sb_DeviceID 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 1940 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 574

(L_SYSTEM_READER_REQUEST_TO_EXIT_USED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Request to Exit - Door Not Used Generated when the request to exit is granted and the door is not used.

Page 66: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1941 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 575

(L_SYSTEM_READER_REQUEST_TO_EXIT_NOT_USED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Invalid OEM Code Indicates that the hardware did not contain the expected OEM (Original Equipment Manufacturer) code.

ID 1942 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 576 (L_SYSTEM_INVALID_OEM_CODE) ss_AccessPanelID Panel ID.

Elevator Terminal Mode Default Floor Generated when the elevator terminal mode has changed to “Default Floor Only..

ID 1943 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 569

(L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR) ss_AccessPanelID Panel ID. sb_DeviceID 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 1944 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 570

(L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Elevator Terminal ID)

Page 67: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 67

Elevator Terminal Mode User Entry of Destination Floor Generated when the elevator terminal mode has changed to “User Entry of Destination Floor.

ID 1945 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 571

(L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Elevator Terminal ID)

License Will Soon Expire Generated when the system license is reaching its expiration date.

ID 1964 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 579 (L_SYSTEM_LICENSE_EXPIRES)

Reader Offline Generated when a reader has been detected as being offline.

ID 1968 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 580 (L_SYSTEM_READER_OFFLINE) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Reader Offline Restored Generated when a reader has been detected as no longer being offline.

ID 1969 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 581

(L_SYSTEM_READER_OFFLINE_RESTORED) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Page 68: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 68

Instant Command 16 Generated when the reader instant keypad command “(#)” was executed

ID 1970 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 582 (L_SYSTEM_SET_INSTANT_CMD16) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Instant Command 17 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1971 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 583 (L_SYSTEM_SET_INSTANT_CMD17) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Instant Command 18 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1972 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 584 (L_SYSTEM_SET_INSTANT_CMD18) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Instant Command 19 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1973 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 585 (L_SYSTEM_SET_INSTANT_CMD19) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Page 69: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 69

Instant Command 20 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1974 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 586 (L_SYSTEM_SET_INSTANT_CMD20) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Instant Command 21 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1975 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 587 (L_SYSTEM_SET_INSTANT_CMD21) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Instant Command 22 Generated when the reader instant keypad command “(#)” was executed. – Need to add to Documentation.

ID 1976 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 588 (L_SYSTEM_SET_INSTANT_CMD22) ss_AccessPanelID Panel ID. sb_DeviceID 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 1978 sb_EventType 4 (L_EVENTTYPE_SYSTEM) sb_EventID 590

Page 70: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 70

(L_SYSTEM_UNKNOWN_USER_COMMAND) ss_AccessPanelID Panel ID. sb_DeviceID Device ID (Reader ID)

Page 71: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 71

Elevator Events Unknown Elevator Terminal System Generated when an elevator terminal is detected that has not been configured in the system.

ID 1937 sb_EventType (4) (L_EVENTTYPE_SYSTEM) sb_EventID (570) (L_SYSTEM_UNKNOWN_ELEVATOR_TERMINAL) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_STATUS 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 sb_EventType (4) (L_EVENTTYPE_SYSTEM) sb_EventID (569) (L_SYSTEM_ELV_TERM_MODE_DEFAULT_FLOOR) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_STATUS 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 sb_EventType (4) (L_EVENTTYPE_SYSTEM) sb_EventID (572)

(L_SYSTEM_ELV_TERM_MODE_DEFAULT_OR_DESTINATION_FLOOR) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_STATUS Sb_MessageTyp LNLMSG_TYPE_EVENT

Page 72: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 sb_EventType (4) (L_EVENTTYPE_SYSTEM) sb_EventID (573)

(L_SYSTEM_ELV_TERM_MODE_AUTHORIZED_FLOORS) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_STATUS 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 sb_EventType (4) (L_EVENTTYPE_SYSTEM) sb_EventID (571) (L_SYSTEM_ELV_TERM_MODE_DESTINATION_FLOOR) ss_AccessPanelID Panel ID sb_DeviceID terminal ID sb_EventDataType EVENT_DATA_TYPE_STATUS 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 sb_EventType (0) (L_EVENTTYPE_GRANTED) sb_EventID (22) (L_GRANTED_DESTINATION_FLOOR) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_CA sb_MessageTyp LNLMSG_TYPE_EVENT

Page 73: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 sb_EventType (1) (L_EVENTTYPE_DENIED) sb_EventID (66) (L_DENIED_DESTINATION_FLOOR) ss_AccessPanelID Panel ID sb_DeviceID Terminal ID sb_EventDataType EVENT_DATA_TYPE_CA sb_MessageTyp LNLMSG_TYPE_EVENT

Page 74: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 74

Asset Events Asset Denied - Invalid Asset Event indicating that the asset was denied because of an invalid asset.

ID 754 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 0 (L_ASSET_INVALID_ASSET) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 755 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 1 (L_ASSET_INVALID_CARDHOLDER) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 756 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 2 (L_ASSET_INVALID_ACCESS) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType EVENT_DATA_ASSET

Page 75: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 757 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 3 (L_ASSET_INVALID_PRIVILEGES) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 758 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 4 (L_ASSET_GRANTED_OWNER) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 759 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 5

(L_ASSET_GRANTED_PRIVILEGES_ONLY)

Page 76: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 76

ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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 794 sb_EventType 5 (L_EVENTTYPE_ASSET) sb_EventID 6 (L_ASSET_DISABLE_CMD_SENT) ss_AccessPanelID Panel ID. sb_DeviceID Device ID. sb_EventDataType 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

Page 77: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 77

Fire Events Fire Alarm In This event is used to indicate a fire alarm is active.

ID 220 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 200 (L_FIRE_FIRE_ALARM_IN) ss_AccessPanelID Panel ID sb_DeviceID 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 221 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 201 (L_FIRE_FIRE_ALARM_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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 222 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 202 (L_FIRE_FIRE_ALARM_ACK) ss_AccessPanelID Panel ID sb_DeviceID 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 223 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 203 (L_FIRE_FIRE_ALARM_BLOCK_ACK)

Page 78: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 78

ss_AccessPanelID Panel ID

Supervisory In Event used to indicate a supervisory condition.

ID 224 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 204 (L_FIRE_SUPERVISORY_IN) ss_AccessPanelID Panel ID sb_DeviceID 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 225 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 205 (L_FIRE_SUPERVISORY_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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 226 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 206 (L_FIRE_SUPERVISORY_ACK) ss_AccessPanelID Panel ID sb_DeviceID 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 227 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 207 (L_FIRE_SUPERVISORY_BLOCK_ACK) ss_AccessPanelID Panel ID

Page 79: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 79

Security Alarm In Event used to indicate a new security alarm.

ID 228 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 208 (L_FIRE_SECURITY_ALARM_IN) ss_AccessPanelID Panel ID sb_DeviceID 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 229 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 209 (L_FIRE_SECURITY_ALARM_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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 230 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 210 (L_FIRE_SECURITY_ALARM_BLOCK_ACK) ss_AccessPanelID Panel ID sb_DeviceID 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 231 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 211 (L_FIRE_SECURITY_ALARM_BLOCK_ACK) ss_AccessPanelID Panel ID

Page 80: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 80

Audibles Silenced Indicates that the audibles have been silenced.

ID 232 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 212 (L_FIRE_AUDIBLES_SILENCED) ss_AccessPanelID Panel ID sb_DeviceID 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 233 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 213 (L_FIRE_AUDIBLES_UNSILENCED) ss_AccessPanelID Panel ID sb_DeviceID 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 234 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 214 (L_FIRE_SYSTEM_RESET) ss_AccessPanelID Panel ID

Status In Indicates that a status reporting device is active.

ID 235 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 215 (L_FIRE_STATUS_IN) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel).

Page 81: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 81

Status Out Indicates that a status reporting device has returned to the inactive state.

ID 236 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 216 (L_FIRE_STATUS_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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 237 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 217 (L_FIRE_TROUBLE_BLOCK_ACK) ss_AccessPanelID 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 765 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 218 (L_FIRE_TROUBLE_IN) ss_AccessPanelID Panel ID sb_DeviceID 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. sb_EventDataType EVENT_DATA_TYPE_STATUS

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 766 sb_EventType 7 (L_EVENTTYPE_FIRE)

Page 82: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 82

sb_EventID 219 (L_FIRE_TROUBLE_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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. sb_EventDataType EVENT_DATA_TYPE_STATUS

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 767 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 220 (L_FIRE_TROUBLE_ACK) ss_AccessPanelID Panel ID sb_DeviceID 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. sb_EventDataType EVENT_DATA_TYPE_STATUS

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 1526 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 256 (L_FIRE_ALL_SYSTEMS_NORMAL) ss_AccessPanelID Panel ID sb_DeviceID 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 1527

Page 83: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 83

sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 257 (L_FIRE_ALARM_ACKNOWLEDGED_CLEAR) ss_AccessPanelID Panel ID sb_DeviceID 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 1528 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 258 (L_FIRE_TROUBLE_ACKNOWLEDGED_CLEAR) ss_AccessPanelID Panel ID sb_DeviceID 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 1529 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 259 (L_FIRE_WALK_TEST_UNPROGRAMMED) ss_AccessPanelID Panel ID sb_DeviceID 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 1530 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 260 (L_FIRE_WALK_TEST_UNINSTALLED)

Page 84: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 84

ss_AccessPanelID Panel ID sb_DeviceID 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 1531 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 261 (L_FIRE_WALK_TEST_NUM) ss_AccessPanelID Panel ID sb_DeviceID 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 1532 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 262 (L_FIRE_WALK_TEST_UNTEST) ss_AccessPanelID Panel ID sb_DeviceID 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 1533 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 263 (L_FIRE_MODULE_ACTIVE) ss_AccessPanelID Panel ID

Page 85: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 85

sb_DeviceID 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 1534 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 264 (L_FIRE_MODULE_CLEAR) ss_AccessPanelID Panel ID sb_DeviceID 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 1535 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 265 (L_FIRE_SIGNAL_SILENCE) ss_AccessPanelID Panel ID sb_DeviceID 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 1536 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 266 (L_FIRE_DETECTOR_TEST) ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or panel).

Page 86: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1537 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 267 (L_FIRE_DETECTOR_TEST_OK) ss_AccessPanelID Panel ID sb_DeviceID 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 1538 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 268 (L_FIRE_DETECTOR_TEST_FAIL) ss_AccessPanelID Panel ID sb_DeviceID 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 1539 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 269 (L_FIRE_LAMP_TEST_ACTIVATED) ss_AccessPanelID Panel ID sb_DeviceID 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).

Page 87: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 87

Lamp Test Complete Generated when the lamp test successfully completes.

ID 1540 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 270 (L_FIRE_LAMP_TEST_COMPLETE) ss_AccessPanelID Panel ID sb_DeviceID 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 1541 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 271 (L_FIRE_BLOCK_ACKNOWLEDGE) ss_AccessPanelID Panel ID sb_DeviceID 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 1875 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 280 (L_FIRE_PRE_ALARM_IN) ss_AccessPanelID Panel ID sb_DeviceID 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.

Page 88: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 88

ID 1876 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 281 (L_FIRE_PRE_ALARM_OUT) ss_AccessPanelID Panel ID sb_DeviceID 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 1877 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 282 (L_FIRE_NON_FIRE_ACTIVE) ss_AccessPanelID Panel ID sb_DeviceID 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 1880 sb_EventType 7 (L_EVENTTYPE_FIRE) sb_EventID 283 (L_FIRE_NON_FIRE_ACTIVE_CLEAR) ss_AccessPanelID Panel ID sb_DeviceID 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).

Page 89: OpenDevice - Events Guide...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

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

Page 90: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 sb_DeviceID and the Busy Subscriber is specified in the intercom data (sl_IntercomData).

ID 760 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 1 (L_INTERCOM_CALL_TO_BUSY) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station initiating call. sb_EventDataType 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 sb_DeviceID and the Private Subscriber is specified in the intercom data (sl_IntercomData).

ID 761 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 2 (L_INTERCOM_CALL_TO_PRIVATE) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station initiating call. sb_EventDataType 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 sb_DeviceID and the Open Subscriber is specified in the intercom data (sl_IntercomData).

ID 762 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 3 (L_INTERCOM_CALL_TO_OPEN) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station initiating call. sb_EventDataType EVENT_DATA_TYPE_INTERCOM su_EventData.us_IntercomData.sl_IntercomData Open Subscriber call was placed to.

Page 91: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 91

Call Disconnected This event indicates that an intercom call has been disconnected.

ID 763 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 4 (L_INTERCOM_CALL_DISCONNECTED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station that has been disconnected. sb_EventDataType EVENT_DATA_TYPE_INTERCOM su_EventData.us_IntercomData. sl_IntercomData

Subscriber the call was placed to.

Intercom Function This message indicates that an intercom function has been executed.

ID 764 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 5 (L_INTERCOM_FUNCTION) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID 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 1554 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 6 (L_INTERCOM_INCOMING_CALL) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station function.

Trouble Report A trouble report for an intercom device. The details should be passed back in the associated text.

ID 1555 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 7 (L_INTERCOM_TROUBLE_REPORT)

Page 92: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 92

ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Test Report A test report.

ID 1556 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 8 (L_INTERCOM_TEST_REPORT) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Ringing Indicates an intercom station is ringing.

ID 1794 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 9 (L_INTERCOM_RINGING) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Call Failed Indicates an intercom call has failed.

ID 1795 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 10 (L_INTERCOM_CALL_FAILED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station function.

Hold Indicates an intercom call has been placed on hold.

ID 1796 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 11 (L_INTERCOM_HOLD) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Page 93: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 93

Retrieved Indicates an intercom call has been retrieved (answered).

ID 1797 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 12 (L_INTERCOM_RETRIEVED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station function.

Initiated Indicates an intercom call has been initiated.

ID 1798 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 13 (L_INTERCOM_INITIATED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station function.

Call Ended Indicates an intercom call has been ended.

ID 1891 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 14 (L_INTERCOM_CALL_ENDED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Call Established Indicates an intercom call has been established.

ID 1892 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 15 (L_INTERCOM_CALL_ESTABLISHED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station. sb_EventDataType EVENT_DATA_TYPE_INTERCOM su_EventData.us_IntercomData. sl_IntercomData

Subscriber the call was placed to.

Page 94: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 94

Unanswered Call Indicates an intercom call has not been answered.

ID 1893 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 16 (L_INTERCOM_CALL_UNANSWERED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Call Transferred Indicates an intercom call has been transferred.

ID 1894 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 17 (L_INTERCOM_CALL_TRANSFERRED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Call Conferenced Indicates an intercom call has been conferenced.

ID 1895 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 18 (L_INTERCOM_CALL_CONFERENCED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station.

Call Queued Indicates an intercom call has been queued.

ID 1910 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 19 (L_INTERCOM_CALL_QUEUED) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station. sb_EventDataType EVENT_DATA_TYPE_INTERCOM su_EventData.us_IntercomData. sl_IntercomData

Queue receiver station.

Page 95: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 95

Intercom Exchange Failure Indicates an failure occurred for the intercom exchange.

ID 1915 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 20 (L_INTERCOM_INTERCOM_EXCHANGE_ERROR) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID 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 2290 sb_EventType 10 (L_EVENTTYPE_INTERCOM) sb_EventID 21 (L_INTERCOM_REMOVED_FROM_QUEUE) ss_AccessPanelID Intercom Exchange ID. sb_DeviceID Intercom Station. sb_EventDataType EVENT_DATA_TYPE_INTERCOM su_EventData.us_IntercomData. sl_IntercomData

Queue receiver station.

Page 96: OpenDevice - Events Guide...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

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

Page 97: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 97

Video Events Motion Detected Event indicating motion has been detected on a given input channel (camera)

ID 777 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 1 (L_VIDEO_MOTION_DETECTED) ss_AccessPanelID Panel ID sb_DeviceID 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 778 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 2 (L_VIDEO_MOTION_DETECTED_RESTORED) ss_AccessPanelID Panel ID sb_DeviceID 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 790 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 3 (L_VIDEO_EVENTTHRESHOLD_REACHED) ss_AccessPanelID 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

Page 98: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 791 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 4 (L_VIDEO_DISK_FULL) ss_AccessPanelID 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 1525 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 7 (L_VIDEO_RECORDING_STOPPED) ss_AccessPanelID 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 1800 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 8 (L_VIDEO_CAPTURE_SOURCE_MISMATCH) ss_AccessPanelID 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 1801 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 9 (L_VIDEO_CAMERA_TAMPER)

Page 99: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 99

ss_AccessPanelID The ID of the Video Server (Panel ID)

Camera Tamper Restored Previous camera tamper alarm has been restored.

ID 1802 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 10 (L_VIDEO_CAMERA_TAMPER_RETORE) ss_AccessPanelID 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 1803 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 11 (L_VIDEO_STORAGE_FAILURE) ss_AccessPanelID 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 1878 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 14 (L_VIDEO_BLIND_CAMERA_DETECTED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Blind Camera Restored Blind Camera alarm is restored.

ID 1879 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 15 (L_VIDEO_BLIND_CAMERA_DETECTED_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Page 100: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1897 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 16 (L_VIDEO_FAILOVER_STARTED) ss_AccessPanelID 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 1898 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 17 (L_VIDEO_FAILOVER_RESTORED) ss_AccessPanelID 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 1899 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 18 (L_VIDEO_FAILOVER_FAILED) ss_AccessPanelID 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 1900 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 19 (L_VIDEO_OVERFLOW_STARTED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Page 101: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 101

Video Overflow Restored Generated when the recorder is no longer having trouble handling incoming video.

ID 1901 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 20 (L_VIDEO_OVERFLOW_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Video Storage Unavailable Generated when the recorder cannot record video to a drive.

ID 1902 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 21 (L_VIDEO_STORAGE_UNAVAILABLE) ss_AccessPanelID 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 1903 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 22 (L_VIDEO_IVS_CONNECTION_LOST) ss_AccessPanelID 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 1904 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 23 (L_VIDEO_IVS_CONNECTION_RESTORED) ss_AccessPanelID 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 1906

Page 102: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 102

sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 24 (L_VIDEO_IVS_ENGINE_CONNECTION_LOST) ss_AccessPanelID 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 1907 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 25 (L_VIDEO_IVS_ENGINE_CONNECTION_RESTORED) ss_AccessPanelID 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 1908 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 26 (L_VIDEO_IVS_CHANNEL_PROCESSING_FAILED) ss_AccessPanelID 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 1909 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 27 (L_VIDEO_IVS_CHANNEL_PROCESSING_RESTARTED) ss_AccessPanelID 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 1918 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 30 (L_VIDEO_TIME_OUT_OF_SYNC) ss_AccessPanelID The ID of the Video Server (Panel ID)

Page 103: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 103

Time Out-Of-Sync Restored Generated when the time difference between the camera and video recorder returns to less than 20 seconds.

ID 1919 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 31 (L_VIDEO_TIME_OUT_OF_SYNC_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

In-Camera-Memory Download Failed ???

ID 1929 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 35 (L_VIDEO_CAM_MEM_DOWNLOAD_FAILED) ss_AccessPanelID The ID of the Video Server (Panel ID)

In-Camera-Memory Download Restored ???

ID 1930 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 36 (L_VIDEO_CAM_MEM_DOWNLOAD_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

In-Camera-Memory Download Started ???

ID 1931 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 37 (L_VIDEO_CAM_MEM_DOWNLOAD_STARTED) ss_AccessPanelID The ID of the Video Server (Panel ID)

In-Camera-Memory Download Completed ???

ID 1932 sb_EventType 11 (L_EVENTTYPE_VIDEO)

Page 104: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 104

sb_EventID 38 (L_VIDEO_CAM_MEM_DOWNLOAD_COMPLETED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Firmware Download Started ???

ID 1933 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 39 (L_VIDEO_FIRMWARE_DOWNLOAD_STARTED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Firmware Download Completed ???

ID 1934 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 40 (L_VIDEO_FIRMWARE_DOWNLOAD_COMPLETED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Firmware Download Failed ???

ID 1935 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 41 (L_VIDEO_FIRMWARE_DOWNLOAD_FAILED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Video Source Signal Lost ???

ID 1946 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 42 (L_VIDEO_SOURCE_SIGNAL_LOST) ss_AccessPanelID The ID of the Video Server (Panel ID)

Video Source Signal Restored ???

Page 105: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 105

ID 1947 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 43 (L_VIDEO_SOURCE_SIGNAL_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

CPU Utilization Threshold Exceeded ???

ID 1948 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 44 (L_RECORDER_CPU_THRESHOLD_EXCEEDED) ss_AccessPanelID The ID of the Video Server (Panel ID)

CPU Utilization Threshold Restored ???

ID 1949 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 45 (L_RECORDER_CPU_THRESHOLD_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Network Utilization Threshold Exceeded ???

ID 1950 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 46 (L_RECORDER_NETWORK_THRESHOLD_EXCEEDED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Network Utilization Threshold Restored ???

ID 1951 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 47 (L_RECORDER_NETWORK_THRESHOLD_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Page 106: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 106

Disk Read Utilization Threshold Exceeded ???

ID 1952 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 48 (L_RECORDER_DISK_READ_THRESHOLD_EXCEEDED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Disk Read Utilization Threshold Restored ???

ID 1953 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 49 (L_RECORDER_DISK_READ_THRESHOLD_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Disk Write Utilization Threshold Exceeded ???

ID 1954 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 50 (L_RECORDER_DISK_WRITE_THRESHOLD_EXCEEDED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Disk Write Utilization Threshold Restored ???

ID 1955 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 51 (L_RECORDER_DISK_WRITE_THRESHOLD_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Warning: Unable to Achieve Current Required Storage Setting ???

ID 1956

Page 107: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 107

sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 52 (L_RECORDER_STORAGE_SHORTAGE) ss_AccessPanelID The ID of the Video Server (Panel ID)

Update: Now able to Achieve Current Required Storage Setting ???

ID 1957 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 53 (L_RECORDER_STORAGE_SHORTAGE_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Warning: Unable to Meet Required Storage Setting! Deleting Oldest Video ???

ID 1958 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 54 (L_RECORDER_STORAGE_FILE_DELETED) ss_AccessPanelID 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 1965 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 55 (L_VIDEO_INSUFFICIENT_FRAME_RATE_DETECTED) ss_AccessPanelID 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 1966 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 56 (L_VIDEO_POOR_VISIBILITY_DETECTED)

Page 108: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 108

ss_AccessPanelID 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 1967 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 57 (L_VIDEO_BACKGROUND_MAP_NOT_FOUND) ss_AccessPanelID 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 1979 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 58 (L_VIDEO_INSUFFICIENT_FRAME_RATE_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Poor Video Visibility Restored Generated when the video quality returns to an acceptable level.

ID 1980 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 59 (L_VIDEO_POOR_VISIBILITY_RESTORED) ss_AccessPanelID The ID of the Video Server (Panel ID)

Background Map Found Generated when background stickers are detected.

ID 1981 sb_EventType 11 (L_EVENTTYPE_VIDEO) sb_EventID 60 (L_VIDEO_BACKGROUND_MAP_FOUND) ss_AccessPanelID The ID of the Video Server (Panel ID)

Page 109: OpenDevice - Events Guide...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

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

Page 110: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 110

Transmitter Events Transmitter Tamper Event to indicate a tamper alarm for a transmitter.

ID 770 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 1 (L_TRANSMITTER_TAMPER) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 771 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 2 (L_TRANSMITTER_LOWBATTERY) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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.

Page 111: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 111

ID 772 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 3 (L_TRANSMITTER_ALARM) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 773 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 4

(L_TRANSMITTER_TAMPER_RESTORE)

ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 774 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 5

Page 112: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 112

(L_TRANSMITTER_LOWBAT_RESTORE)

ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 man-down transmitters.

ID 779 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 6 (L_TRANSMITTER_TILT) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 780 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 7 (L_TRANSMITTER_TILT_RESTORE) ss_AccessPanelID Panel ID. sb_DeviceID Receiver ID that received transmitter signal.

Page 113: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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) sb_EventDataType 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 781 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 8 (L_TRANSMITTER_TILT_ENABLE) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 782 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 9 (L_TRANSMITTER_TILT_DISABLE) ss_AccessPanelID Panel ID. sb_DeviceID 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.

Page 114: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 114

sl_EventParamValue 1 – Verified Alarm (if sb_EventParam = 1) sb_EventDataType 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 783 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 10 (L_TRANSMITTER_PULLCORD) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 784 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 11

(L_TRANSMITTER_PULLCORD_RESTORE)

ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType EVENT_DATA_TYPE_TRANSMITTER su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.

Page 115: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 115

Transmitter Pre-Tilt Event that indicates a transmitter pre-tilt condition.

ID 785 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 12 (L_TRANSMITTER_PRE_TILT) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 786 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 13

(L_TRANSMITTER_PRE_TILT_RESTORE)

ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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.

Page 116: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 116

ID 787 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 14

(L_TRANSMITTER_TEMPTILT_DISABLE)

ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 788 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 15

(L_TRANSMITTER_ALARM_RESTORE) ss_AccessPanelID Panel ID. sb_DeviceID 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) sb_EventDataType 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 789 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER)

Page 117: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 117

sb_EventID 16 (L_TRANSMITTER_NO_SUPERVISION)

ss_AccessPanelID Panel ID. sl_TransmitterID Transmitter ID. sb_EventDataType 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 1885 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 17

(L_TRANSMITTER_TOUCH_ALARM) ss_AccessPanelID Panel ID. sl_TransmitterID Transmitter ID. sb_EventDataType 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 1886 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 18

(L_TRANSMITTER_REMOVAL_ALARM) ss_AccessPanelID Panel ID. sl_TransmitterID Transmitter ID. sb_EventDataType 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 1982 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 19

(L_TRANSMITTER_ACKNOWLEDGE) ss_AccessPanelID Panel ID. sl_TransmitterID Transmitter ID.

Page 118: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 118

sb_EventDataType 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 1983 sb_EventType 12 (L_EVENTTYPE_TRANSMITTER) sb_EventID 20

(L_TRANSMITTER_NO_RESPONSE) ss_AccessPanelID Panel ID. sl_TransmitterID Transmitter ID. sb_EventDataType EVENT_DATA_TYPE_TRANSMITTER su_EventData.us_TransmitterData.TransmitterID Base ID of the transmitter.

Page 119: OpenDevice - Events Guide...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

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

Page 120: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 120

Biometric Events Accepted Biometric Score Event that is used to indicate the score that was generated for a good biometric verification.

ID 839 sb_EventType 18 (L_EVENTTYPE_BIOMETRIC) sb_EventID 0 (L_BIOMETRIC_ACCEPTED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 840 sb_EventType 18 (L_EVENTTYPE_BIOMETRIC) sb_EventID 1 (L_BIOMETRIC_REJECTED) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType 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 841 sb_EventType 18 (L_EVENTTYPE_BIOMETRIC) sb_EventID 2 (L_BIOMETRIC_TEMPLATE_NOT_FOUND) ss_AccessPanelID Panel ID sb_DeviceID Device ID (Reader) sb_EventDataType EVENT_DATA_TYPE_CA su_EventData.us_DataCA.sl_CardNumber Card Number su_EventData.us_DataCA.sl_IssueCode Issue Code (-1 if not used)

Page 121: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 121

Muster Events Muster Mode Start Event used to indicate that muster mode has started.

ID 1500 sb_EventType 29 (L_EVENTTYPE_MUSTER) sb_EventID 0

(L_MUSTER_MUSTER_MODE_START) sl_SegmentID Segment ID sb_EventDataType EVENT_DATA_TYPE_AREAAPB su_EventData.us_AreaAPBData.sl_AreaAPBID Area ID

Muster Mode Reset

ID 1501 sb_EventType 29 (L_EVENTTYPE_MUSTER) sb_EventID 1 (L_MUSTER_MUSTER_MODE_RESET) sl_SegmentID Segment ID sb_EventDataType EVENT_DATA_TYPE_AREAAPB su_EventData.us_AreaAPBData.sl_AreaAPBID Area ID

Page 122: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 1799 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 0 (L_GENERIC_GENERIC_EVENT)

Input Alarmed Generic event for Input Alarmed state.

ID 1808 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 1 (L_GENERIC_INPUT_ALARMED)

Input Normal Generic event for Input Normal state.

ID 1809 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 2 (L_GENERIC_INPUT_NORMAL)

Input Low Low Generic event for Input Low Low state.

ID 1810 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 3 (L_GENERIC_INPUT_LOW_LOW)

Input Low Generic event for Input Low state.

ID 1811 sb_EventType 30 (L_EVENTTYPE_GENERIC)

Page 123: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 123

sb_EventID 4 (L_GENERIC_INPUT_LOW)

Input High Generic event for Input High state.

ID 1812 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 5 (L_GENERIC_INPUT_HIGH)

Input High High Generic event for Input High High state.

ID 1813 sb_EventType 30 (L_EVENTTYPE_GENERIC) sb_EventID 6 (L_GENERIC_INPUT_HIGH_HIGH)

Page 124: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 124

Point Of Sale Events Item Sold Indicates an item was sold.

ID 1824 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 0 (L_POS_ITEM_SOLD) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Cash Amount Tendered Generated when an event is used to indicate that a cash amount has been tendered.

ID 1825 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 1 (L_POS_CASH_AMOUNT_TENDERED) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Credit Card Tendered Generated when a credit card was used as tender.

ID 1826 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 2 (L_POS_CREDIT_CARD_TENDERED) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Cash or Safe Drop Generated when a transaction indicating a cash or safe drop has occurred.

ID 1827 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 3 (L_POS_CASH_OR_SAFE_DROP)

Page 125: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 125

ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Charge Account Tender Generated when a charge account was used as tender.

ID 1828 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 4 (L_POS_CHARGE_ACCOUNT_TENDER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Change Due Generated when a transaction indicating the change due has occurred.

ID 1829 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 5 (L_POS_CHANGE_DUE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Check Tender Generated when a check was used as tender.

ID 1830 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 6 (L_POS_CHECK_TENDER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Clerk Name or Number A transaction that reports the clerk’s name or number.

ID 1831 sb_EventType 31 (L_EVENTTYPE_POS)

Page 126: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 126

sb_EventID 7 (L_POS_CLERK_NAME_OR_NUMBER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Manufacturer Coupon Indicates a manufacturer coupons.

ID 1832 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 8 (L_POS_MANUFACTURER_COUPON) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Store Coupon Indicates a store coupon.

ID 1833 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 9 (L_POS_STORE_COUPON) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Cancel Entire Sale Generated when a transaction is used to indicate that an entire sale was cancelled.

ID 1834 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 10 (L_POS_CANCEL_ENTIRE_SALE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Debit, ATM, Check Card Tender Transaction that indicated that a debit, ATM, or check card was used as tender.

ID 1835

Page 127: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 127

sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 11

(L_POS_DEBIT_ATM_CHECK_CARD_TENDER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Discount Entered as Absolute Amount Generated when a discount was entered as an absolute amount.

ID 1836 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 12

(L_POS_DISCOUNT_ENTERED_AS_ABSOLUTE_AMOUNT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Deposit Amount Paid Pending Purchase Event indicating that a deposit amount paid pending purchase has occurred.

ID 1837 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 13

(L_POS_DEPOSIT_AMOUNT_PAID_PENDING_PURCHASE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Deposit Return Transaction for a deposit return.

ID 1838 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 14 (L_POS_DEPOSIT_RETURN) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 128: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 128

Discount Entered as Percentage Generated when a discount was entered as a percentage.

ID 1839 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 15

(L_POS_DISCOUNT_ENTERED_AS_PERCENTAGE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Employee Sign On Generated when an employee signs on.

ID 1840 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 16

(L_POS_EMPLOYEE_SIGN_ON_TO_REGISTER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Employee Sign Off Generated when an employee signs off.

ID 1841 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 17

(L_POS_EMPLOYEE_SIGN_OFF_OF_REGISTER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Complimentary Tender Generated when the tender was complimentary.

ID 1842 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 18 (L_POS_COMPLIMENTARY_TENDER)

Page 129: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 129

ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Foodstamps Tender Indicates that food stamps were used as tender.

ID 1843 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 19

(L_POS_FOODSTAMPS_WIC_ETC_TENDER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Gasoline Prepayment Transaction for a gasoline prepayment.

ID 1844 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 20 (L_POS_GASOLINE_PREPAYMENT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Gasoline Prepayment Refund Transaction for a gasoline prepayment refund.

ID 1845 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 21

(L_POS_GASOLINE_PREPAYMENT_REFUND) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Information Message Used to report information messages.

Page 130: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 130

ID 1846 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 22 (L_POS_INFORMATION_MESSAGE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Lottery Pay Out Generated when a lottery pay out has occurred.

ID 1847 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 23 (L_POS_LOTTERY_PAY_OUT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Lottery Sale Generated when an event for a lottery sale has occurred.

ID 1848 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 24 (L_POS_LOTTERY_SALE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Manufacturer Coupon Redemption Transaction generated for a manufacturer coupon redemption.

ID 1849 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 25

(L_POS_MANUFACTURER_COUPON_REDEMPTION) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 131: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 131

Miscellaneous Tender Generated when miscellaneous tender is used.

ID 1850 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 26 (L_POS_MISCELLANEOUS_TENDER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Quantity or Weight An event indicating a quantity or weight.

ID 1851 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 27 (L_POS_QUANTITY_OR_WEIGHT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

No Sale Transaction generated for a no sale.

ID 1852 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 28 (L_POS_NO_SALE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Negative Tax Generated when negative tax is used.

ID 1853 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 29 (L_POS_NEGATIVE_TAX) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 132: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 132

Override Preprogrammed Price Generated when the preprogrammed price is overridden.

ID 1854 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 30

(L_POS_OVERRIDE_PREPROGRAMMED_PRICE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Pick Up Transaction indicating a pick up has occurred.

ID 1855 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 31 (L_POS_PICK_UP) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Price Lookup Generated when a price lookup has taken place.

ID 1856 sb_EventType 32 (L_EVENTTYPE_POS) sb_EventID 28 (L_POS_PRICE_LOOKUP) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Pay Out Generated when a payout takes place.

ID 1857 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 33 (L_POS_PAY_OUT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device.

Page 133: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 133

sb_EventDataType EVENT_DATA_TYPE_STATUS

Payment Toward Charge Account Balance Generated when a payment toward an account balance.

ID 1858 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 34

(L_POS_PAYMENT_TOWARD_CHARGE_ACC_BALANCE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Payment of Refund to Customer Generated when a payment or refund is given to a customer.

ID 1859 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 35

(L_POS_PAYMENT_OF_REFUND_TO_CUSTOMER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Merchandise Returned Generated when merchandise is returned.

ID 1860 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 36 (L_POS_MERCHANDISE_RETURNED) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Sale Subtotal A transaction that reports the sale subtotal.

ID 1861 sb_EventType 31 (L_EVENTTYPE_POS)

Page 134: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 134

sb_EventID 37 (L_POS_SALE_SUBTOTAL) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Taxable Subtotal Transaction that reports the taxable subtotal.

ID 1862 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 38 (L_POS_TAXABLE_SUBTOTAL) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Current Time An event that reports the current time.

ID 1863 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 39 (L_POS_CURRENT_TIME) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Transaction Number Event Generated that indicates the transaction number of the sales transaction.

ID 1864 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 40 (L_POS_TRANSACTION_NUMBER) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Negative Total Generated when there is a negative total.

ID 1865

Page 135: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 135

sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 41 (L_POS_NEGATIVE_TOTAL) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Total Amount Due Transaction indicating the total amount due.

ID 1866 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 42 (L_POS_TOTAL_AMOUNT_DUE) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Tax Amount Event that indicates the tax amount.

ID 1867 Sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 43 (L_POS_TAX_AMOUNT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Value Added Event that indicates value added.

ID 1868 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 44 (L_POS_VALUE_ADDED) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Item Correct of Previously Entered Item Generated to indicate that an item was corrected.

Page 136: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 136

ID 1869 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 45

(L_POS_ITEM_CORRECT_OF_PREV_ENTERED_ITEM) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Void or Error Correction Transaction that indicates a void or error correction.

ID 1870 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 46

(L_POS_VOID_OR_ERROR_CORRECTION) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Register X Report Indicates a X report was generated. X reports are financial, end of day, clerk, etc.reports.

ID 1871 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 47 (L_POS_REGISTER_X_REPORT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Register Z Report Indicates a Z report was generated. Z reports are the same as X reports, but resets totals to zero.

ID 1872 sb_EventType 31 (L_EVENTTYPE_POS) sb_EventID 48 (L_POS_REGISTER_Y_REPORT) ss_AccessPanelID ID of Point of sale controller. sb_DeviceID ID of register or point of sale device. sb_EventDataType EVENT_DATA_TYPE_STATUS

Page 137: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 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 sb_EventType and sb_EventID fields of the LNLMESSAGE structure but do set the sb_MessageType.

sb_MessageType LNLMSG_TYPE_STATUS ss_AccessPanelID Panel ID sb_DeviceID Sub device ID (0 if event is for panel). sb_InputDevID Input device ID (0 if event is for sub device or

panel). sb_EventDataType EVENT_DATA_TYPE_STATUSREQUEST 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.

Page 138: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 138

Index Access Denied Under Duress.................... 21 Access Granted ....................................... 3, 8 Access Granted - Anti-Passback Not Used24 Access Granted - Anti-Passback Used ...... 24 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 ..................................................... 21 Alarm Active ............................................. 26 Anti-Passback Invalid Entry Reader ......... 25 Anti-Passback Invalid Exit Reader ........... 25 Anti-Passback Violation ........................... 23 Archive Server Failure .............................. 98 Area Closed ............................................... 24 Area Limit Exceeded ................................ 23 Asset Denied – Asset Disable Command

Sent ......................... 16, 42, 43, 44, 45, 76 Asset Denied - Invalid Access .................. 74 Asset Denied - Invalid Asset..................... 74 Asset Denied - Invalid Cardholder ........... 74 Asset Denied - No Asset Privileges .......... 75 Asset Granted - Asset Owner .................... 75 Asset Granted - Asset Privileges Only...... 75 Audibles Silenced ..................................... 80 Audibles Unsilenced ................................. 80 Cabinet Tamper ......................................... 30 Call Conferenced ...................................... 94 Call Disconnected ..................................... 91 Call Ended ................................................. 93 Call Established ........................................ 93 Call Failed ................................................. 92 Call Queued .............................................. 94 Call Removed from Queue ....................... 95 Call to a Busy Subscriber .......................... 90 Call to a Private Subscriber....................... 90 Call to an Open Subscriber ....................... 90 Call Transferred ........................................ 94 Canceled Cabinet Tamper ......................... 31

Canceled Grounded Loop ......................... 33 Canceled Line Error .................................. 32 Canceled Open Line .................................. 32 Canceled Power Failure ............................ 31 Canceled Shorted Line .............................. 32 Command 10 Set From Reader ................. 38 Command 11 Set From Reader ................. 38 Command 12 Set From Reader ................. 39 Command 13 Set From Reader ................. 39 Command 14 Set From Reader ................. 39 Command 15 Set From Reader ................. 39 Command 4 Set From Reader ................... 36 Command 5 Set From Reader ................... 37 Command 6 Set From Reader ................... 37 Command 7 Set From Reader ................... 37 Command 8 Set From Reader ................... 37 Command 9 Set From Reader ................... 38 Command Pin+10 Set From Reader ......... 35 Command Pin+20 Set From Reader ......... 36 Communications Lost ............................... 40 Communications Restored ........................ 40 DATA_ASSET ............................. 74, 75, 76 DATA_STATUSREQUEST .................. 137 Database Error in Panel Download ........... 33 Denied Count Exceeded ............................ 11 Denied Events ........................................... 11 Denied UnMask – Active Zones in Group 15 Disk Full Warning..................................... 41 Door Contact Tamper ............................... 30 Door Contact Tamper Canceled................ 30 Door Forced Open................................. 4, 28 Door Forced Open Canceled ..................... 28 Door Held Open ........................................ 29 Door Held Open Canceled ........................ 29 Door Shunt Command Executed From

Reader ................................................... 35 Door Shunt Command Results - Canceled 36 Driver Error In Panel Download ............... 34 Fire Alarm Acknowledge .......................... 77 Fire Alarm Block Acknowledge ............... 77 Fire Alarm In............................................. 77 Fire Alarm Out .......................................... 77 Full Panel Download Completed .............. 34

Page 139: OpenDevice - Events Guide...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

© 2016 United Technologies Corporation. Lenel is a part of UTC Climate, Controls & Security, a unit of United Technologies Corporation. July 19, 2016 139

Full Panel Download Started .................... 33 Global I/O Executed Function List ........... 40 Grounded Loop Alarm Active .................. 28 Hold........................................................... 92 Host Executed Function List ..................... 35 Inactive Badge .......................................... 14 Incoming Call............................................ 91 Initiated ..................................................... 93 Intercom Exchange Failure ....................... 95 Intercom Function ..................................... 91 Invalid Access Level ................................. 13 Invalid Badge ............................................ 12 Invalid Card Format .................................. 11 Invalid Facility Code................................. 12 Invalid Issue Code..................................... 13 Invalid PIN Number .................................. 13 Line Error Active ...................................... 27 LNLMESSAGE .............................. 4, 5, 137 Low Voltage.............................................. 42 Low Voltage Restored .............................. 42 Motion Detected........................................ 97 Motion Detected Restored ........................ 97 No Command Authority ........................... 15 OnlineCanceled ......................................... 26 Open Device Events .................................... 3 Open Line Alarm Active ........................... 27 Overview ..................................................... 3 Panel Power Up Complete ........................ 33 Power Failure ............................................ 31 Reader Excluded From Access List .......... 14 Reader Input Tamper ................................ 29 Reader Input Tamper Canceled ................ 30 Relay Contact Activated ........................... 34 Relay Contact Deactivated ........................ 35 Request By PIN Only................................ 12 Retrieved ................................................... 93 Ringing ...................................................... 92 Security Alarm Acknowledge ................... 79 Security Alarm Block Acknowledge ........ 79 Security Alarm In ...................................... 79

Security Alarm Out ................................... 79 Shorted Line Alarm Active ....................... 27 Status In .................................................... 80 Status Messages ...................................... 137 Status Out .................................................. 81 Supervisory Acknowledge ........................ 78 Supervisory Block Acknowledge ............. 78 Supervisory In ........................................... 78 Supervisory Out ........................................ 78 System Reset ............................................. 80 Tamper Alarm Active ............................... 27 Test Report ................................................ 92 Timeout Exceeded – No Second Card ...... 23 Transmitter Alarm ................................... 110 Transmitter Alarm Restored ................... 116 Transmitter Inactivity.............. 116, 117, 118 Transmitter Low Battery ................. 110, 111 Transmitter Low Battery Restored .......... 111 Transmitter Pre-Tilt ................................ 115 Transmitter Pre-Tilt Restored ................. 115 Transmitter Pull Cord Alarm .................. 114 Transmitter Pull Cord Restored .............. 114 Transmitter Tamper ................................ 110 Transmitter Tamper Restored ................. 111 Transmitter Temporary Tilt Disable ....... 115 Transmitter Tilt ....................................... 112 Transmitter Tilt Disabled ........................ 113 Transmitter Tilt Enabled ......................... 113 Transmitter Tilt Restored ........................ 112 Trouble Acknowledge ............................... 82 Trouble Block Acknowledge .................... 81 Trouble In.................................................. 81 Trouble Out ......................................... 81, 82 Trouble Report .......................................... 91 Unanswered Call ....................................... 94 Use Limit Exceeded .................................. 15 User Generated Video Event .................... 98 Video Event Threshold Reached .............. 97 Video Server Disk Full ............................. 97 Watch Tour Station Late ........................... 41

Page 140: OpenDevice - Events Guide...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

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