Reading Panic Button Value

Hi,

I’m using OpenHab (running on Ubuntu Linux) using the Digi XStick. OpenHab was able to detect XStick successfully and it’s online, the device also able to detect remote panic button device (Panic button --> http://www.climax.com.tw/pb15zbs-zb.php) and displayed it as a thing.

As can be seen in the attached screenshot the panic button was able to be ‘paired’ and it expose 2 channels.

Looking at the channel name the one with label ‘tamper’ related to the state when the button is pressed question is how do I read the value of those channels ?.

Thanks

Inside the panic button box there is this information included

After enabling using the command

log.set DEBUG com.zsmartsystems.zigbee

Managed to get the following command

13:23:41.066 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=39431/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 0E 00 11 00 00 00 00 00]
13:23:41.068 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=14, commandId=0]

13:28:22.291 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=39431/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 01 00 11 00 00 00 00 00]
13:28:22.293 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=1, commandId=0]

13:29:22.314 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=39431/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 08 00 11 00 00 00 00 00]
13:29:22.316 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=8, commandId=0]

13:29:28.679 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=39431/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 09 00 11 00 00 00 00 00]
13:29:28.681 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=9, commandId=0]

13:31:50.301 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=39431/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 0B 00 11 00 00 00 00 00]
13:31:50.302 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=11, commandId=0]
13:31:50.304 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX CMD: ZoneStatusChangeNotificationCommand [IAS Zone: 39431/1 -> 0/1, cluster=0500, TID=0B, zoneStatus=17, extendedStatus=0]

15:50:01.594 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=35451/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 1C 00 11 00 00 FF 00 00]
15:50:01.595 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=28, commandId=0]

15:50:04.425 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=35451/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 1D 00 11 00 00 FF 00 00]
15:50:04.426 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=29, commandId=0]

15:50:07.031 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX APS: ZigBeeApsFrame [sourceAddress=35451/1, destinationAddress=0/1, profile=0104, cluster=0500, addressMode=null, radius=0, apsSecurity=false, apsCounter=00, payload=19 1E 00 11 00 00 FF 00 00]
15:50:07.033 [DEBUG] [rtsystems.zigbee.ZigBeeNetworkManager] - RX ZCL: ZclHeader [frameType=CLUSTER_SPECIFIC_COMMAND, manufacturerSpecific=false, direction=SERVER_TO_CLIENT, disableDefaultResponse=true, manufacturerCode=0, sequenceNumber=30, commandId=0]

The above command showed up whenever the panic button is pressed, the question is how do I use that information and displayed it on the UI ?

Thanks

Can anybody point me in the direction how to extract the value that OpenHab received from the device to be used in the UI ?