Page 1 of 2

Zigate - not sending Wireless Aqara Switch signal?

Posted: Tuesday 13 August 2019 22:40
by domogijs
Hi

I have a problem with sending a ZigBee signal.

Setup:
A aqara wireless switch (GangZ) and a IKEA bulb (GangT)

If I press the switch (GangZ) a script wil toggle the bulb (GangT) a scripts starts to put on the IKEA bulb

Code: Select all

.  2019-08-13 20:09:18.153 (Zigate ) UpdateDevice - ( Gang T) 1:On
2019-08-13 20:09:18.121 Status: dzVents: Info: Handling events for: "GangZ", value: "On"
2019-08-13 20:09:18.122 Status: dzVents: Info: ------ Start internal script: Gang click: Device: "GangZ (Zigate )", Index: 876
2019-08-13 20:09:18.122 Status: dzVents: Info: gang aan
2019-08-13 20:09:18.124 Status: dzVents: Info: ------ Finished Gang click
    

But if i toggle GangZ from domoticz UI the script is not triggered.

Code: Select all

 
2019-08-13 19:48:49.928 Status: User: Mplace initiated a switch command (876/GangZ/On)
2019-08-13 19:48:50.049 (Zigate ) lowlevelAPSFailure - WARNING - received APSFailure 8558 0092 028558010101, will wait for a Route Discoverys
2019-08-13 19:48:50.050 (Zigate ) processFrame - New Route Discovery OK, resend 0092 028558010101
2019-08-13 19:48:53.851 Status: User: Mplace initiated a switch command (876/GangZ/On)

2019-08-13 19:49:05.419 (Zigate ) NwkScanResponse - Empty Queue

 
Same setup with the aquara gateway I place of zigate works fine.

Any ideas?

Greets Gijs

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Wednesday 14 August 2019 7:55
by pipiche
Looks like a communication issue.
Could you specify which version of the plugin you are using ?

In case it is beta, (which I suspect) how does it work with stable branch? And if beta is that the latest ?


Envoyé de mon iPhone en utilisant Tapatalk

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Wednesday 14 August 2019 8:59
by domogijs
Yes still on the beta branch beta-4.6

Don't touch it if it works... :)

I will sitch to stable this evening and will give you an update.

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Wednesday 14 August 2019 10:10
by pipiche
To give you more explanation on that log:

Code: Select all

2019-08-13 19:48:49.928 Status: User: Mplace initiated a switch command (876/GangZ/On)
2019-08-13 19:48:50.049 (Zigate ) lowlevelAPSFailure - WARNING - received APSFailure 8558 0092 028558010101, will wait for a Route Discoverys
2019-08-13 19:48:50.050 (Zigate ) processFrame - New Route Discovery OK, resend 0092 028558010101
2019-08-13 19:48:53.851 Status: User: Mplace initiated a switch command (876/GangZ/On)

2019-08-13 19:49:05.419 (Zigate ) NwkScanResponse - Empty Queue
At 19:48:49.928 you initiated the Switch on Device 876
Then the plugin send a command to the Buld
At 9:48:50.049 the plugin received from Zigate a message stating that the command sent was not able to be delivered and should be retry
At 19:48:50.050 the plugin did the retry

Now more on your use case.

(1) what is triggering the script ? If I look to your 1st log, the script seems to react on GangT , am I wrong ?

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Wednesday 14 August 2019 19:23
by domogijs
On stable errors are back ;(

2019-08-14 19:18:46.590 Status: User: Admin initiated a switch command (791/Gang T/Off)
2019-08-14 19:18:46.600 Error: (Zigate ) 'onCommand' failed 'AttributeError':''NoneType' object has no attribute 'pluginConf''.
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 806 in '/home/pi/domoticz/plugins/Domoticz-Zigate/plugin.py', function onCommand
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 494 in '/home/pi/domoticz/plugins/Domoticz-Zigate/plugin.py', function onCommand
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 524 in '/home/pi/domoticz/plugins/Domoticz-Zigate/Modules/tools.py', function loggingPlugin

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Wednesday 14 August 2019 19:29
by domogijs
the script is triggered by GangZ

Code: Select all

return {
	on = {
		devices = {
			'GangZ'
		}
	},
	execute = function(domoticz,GangZ)
	 domoticz.log('gang aan')
	 if (GangZ.state ==  'On') then domoticz.devices('Gang T').toggleSwitch()
	     end
    

	end
}

when i press the button GangZ

Code: Select all

2019-08-14 19:37:50.427 (Zigate ) UpdateDevice - ( GangZ) 1:On
2019-08-14 19:37:50.706 (Zigate ) UpdateDevice - ( Gang T) 0:Off
2019-08-14 19:37:50.646 Status: dzVents: Info: Handling events for: "GangZ", value: "On"
2019-08-14 19:37:50.646 Status: dzVents: Info: ------ Start internal script: Gang click: Device: "GangZ (Zigate )", Index: 876
2019-08-14 19:37:50.646 Status: dzVents: Info: gang aan
2019-08-14 19:37:50.648 Status: dzVents: Info: ------ Finished Gang click
2019-08-14 19:37:50.651 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Thursday 15 August 2019 11:02
by pipiche
domogijs wrote: Wednesday 14 August 2019 19:23 On stable errors are back ;(

2019-08-14 19:18:46.590 Status: User: Admin initiated a switch command (791/Gang T/Off)
2019-08-14 19:18:46.600 Error: (Zigate ) 'onCommand' failed 'AttributeError':''NoneType' object has no attribute 'pluginConf''.
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 806 in '/home/pi/domoticz/plugins/Domoticz-Zigate/plugin.py', function onCommand
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 494 in '/home/pi/domoticz/plugins/Domoticz-Zigate/plugin.py', function onCommand
2019-08-14 19:18:46.600 Error: (Zigate ) ----> Line 524 in '/home/pi/domoticz/plugins/Domoticz-Zigate/Modules/tools.py', function loggingPlugin
This is due to the fact that you have enable Debug. Makes Debug to None in the plugin admin page and you won't get this error.

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Thursday 15 August 2019 11:06
by pipiche
What type of Switch is the GangZ switch ? If this is an Aqara Wireless, I'm not sure that the plugin expect any action from Domoticz .
It would be very helpfull if you could extract from DeviceList-xx.txt the corresponding entry , (or you can also use the Web Admin and in the Tools menu, you use the 'raw devices (json)' and share it the result.

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Friday 16 August 2019 15:45
by domogijs
yes;

Setup:
A aqara wireless switch (GangZ) and a IKEA bulb (GangT)

This from device list

8558 : {'HW Version': '', 'Heartbeat': '47592', 'ReceiveOnIdle': '', 'PowerSource': '', 'ProfileID': {}, 'RIA': '0', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-00$

I had to look it up from the manager;

8558
00158d00015efc6d
lumi.sensor_86sw1
GangZ

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Friday 16 August 2019 23:17
by pipiche
from my end it is not expecting to do any action from the Domoticz Widget as it would be expected to Switch On or Off the Physical switch which is wireless/battery and do not listen.

So that is an expected behaviour, the Domoticz widget is just responding to the Wireless switch.

In case it would have been a physical wired switch, then it would have been a different case.

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Saturday 17 August 2019 15:30
by domogijs
That is fine by me, in can work around it.

Via the gateway there is an action and is it not the expected behaviour in the same setup. And i was migrating from the gateway to the zigate.

So maybe good for other people that are migrating from the gateway to zigate to keep this in mind.

Keep up the good work.

Greets Gijs

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Saturday 17 August 2019 15:42
by pipiche
Thanks.

Could you confirm that when you press the Domoticz widget, you get such warning in the Logs ?
mgtCommand - Look you are trying to action a non commandable device Device

Could you also attached the DeviceList-xx as it was corrupted on the post before

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Sunday 18 August 2019 11:51
by domogijs
(i am still on beta)

I dont get warnings.



hereby the devicelist, GangZ is 8558

Code: Select all

98a6 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0406': 0, '01-0006': 1565964466}, 'Ep': {'01': {'0006': {}, '0406': {'0000': '01'}, '0000': {'0005': '6c756d692$
14cb : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120801, '01-0008': 1566120801}, 'Ep': {'01': {'0008':$
8e23 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090111, '01-0000': 1564526297, '01-0006': 1566090111, '01-0008': 1566090111}, 'Ep': {'01': {'0300': $
fa00 : {'ZDeviceName': '', 'ReadAttributes': {}, 'Manufacturer Name': '', 'Manufacturer': '', 'SQN': '64', 'Stack Version': '', 'RIA': '3', 'ConfigureReporting': {'TimeStamps':$
d80b : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120811, '01-0008': 1566120811}, 'Ep': {'01': {'0008':$
2e8f : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565965036}, 'Ep': {'01': {'0006': {'8000': '80', '0000': '00'}, '0000': {'0005': '6c756d692e73656e736f7$
15b7 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090111, '01-0000': 1565626610, '01-0006': 1565119018, '01-0008': 1566090111}, 'Ep': {'01': {'0300': $
d544 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090120, '01-0000': 1564439885, '01-0006': 1566090120, '01-0008': 1566090120}, 'Ep': {'01': {'0300': $
e5c3 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565964161}, 'Ep': {'01': {'0006': {}, '0406': {'0000': '01'}, '0000': {'0005': '6c756d692e73656e736f725$
0000 : {'IEEE': '00158d0001eda63f', 'ZDeviceName': 'Zigate', 'PowerSource': 'Main', 'version': '3', 'Ep': {'0a': {'0702': {}, '0401': {}, '0b05': {}, '0000': {}, '0201': {}, '0$
7395 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1563771906, '01-0006': 1565139715, '01-0008': 1566090120}, 'Ep': {'01': {'0008': {'0000': 'fe'}, '0006':$
c3d4 : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120811, '01-0008': 1566120811}, 'Ep': {'01': {'0008':$
26c1 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1565551296, '01-0006': 1565118983, '01-0008': 1566090120}, 'Ep': {'01': {'0008': {'0000': 'fe'}, '0006':$
8558 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565295228}, 'Ep': {'01': {'0006': {'0000': '01'}, '0000': {'0005': '6c756d692e73656e736f725f3836737731'$

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Sunday 18 August 2019 19:32
by pipiche
domogijs wrote: Sunday 18 August 2019 11:51 (i am still on beta)

I dont get warnings.



hereby the devicelist, GangZ is 8558

Code: Select all

98a6 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0406': 0, '01-0006': 1565964466}, 'Ep': {'01': {'0006': {}, '0406': {'0000': '01'}, '0000': {'0005': '6c756d692$
14cb : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120801, '01-0008': 1566120801}, 'Ep': {'01': {'0008':$
8e23 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090111, '01-0000': 1564526297, '01-0006': 1566090111, '01-0008': 1566090111}, 'Ep': {'01': {'0300': $
fa00 : {'ZDeviceName': '', 'ReadAttributes': {}, 'Manufacturer Name': '', 'Manufacturer': '', 'SQN': '64', 'Stack Version': '', 'RIA': '3', 'ConfigureReporting': {'TimeStamps':$
d80b : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120811, '01-0008': 1566120811}, 'Ep': {'01': {'0008':$
2e8f : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565965036}, 'Ep': {'01': {'0006': {'8000': '80', '0000': '00'}, '0000': {'0005': '6c756d692e73656e736f7$
15b7 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090111, '01-0000': 1565626610, '01-0006': 1565119018, '01-0008': 1566090111}, 'Ep': {'01': {'0300': $
d544 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0300': 1566090120, '01-0000': 1564439885, '01-0006': 1566090120, '01-0008': 1566090120}, 'Ep': {'01': {'0300': $
e5c3 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565964161}, 'Ep': {'01': {'0006': {}, '0406': {'0000': '01'}, '0000': {'0005': '6c756d692e73656e736f725$
0000 : {'IEEE': '00158d0001eda63f', 'ZDeviceName': 'Zigate', 'PowerSource': 'Main', 'version': '3', 'Ep': {'0a': {'0702': {}, '0401': {}, '0b05': {}, '0000': {}, '0201': {}, '0$
7395 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1563771906, '01-0006': 1565139715, '01-0008': 1566090120}, 'Ep': {'01': {'0008': {'0000': 'fe'}, '0006':$
c3d4 : {'SWBUILD_3': '1.2.214', 'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1564688467, '01-0006': 1566120811, '01-0008': 1566120811}, 'Ep': {'01': {'0008':$
26c1 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0000': 1565551296, '01-0006': 1565118983, '01-0008': 1566090120}, 'Ep': {'01': {'0008': {'0000': 'fe'}, '0006':$
8558 : {'ZDeviceName': '', 'ReadAttributes': {'TimeStamps': {'01-0006': 1565295228}, 'Ep': {'01': {'0006': {'0000': '01'}, '0000': {'0005': '6c756d692e73656e736f725f3836737731'$
If possible do attach the file, as this is quiet incomplete file !

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Sunday 18 August 2019 23:21
by domogijs
ok used the admin tool to get this (raw devices)

Code: Select all

0 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0406":0,"01-0006":1565964466},"Ep":{"01":{"0006":{},"0406":{"0000":"01"},"0000":{"0005":"6c756d692e73656e736f725f6d6f74696f6e","ff02":"100021ef0b21a8012400000000002104002053","0001":"0b"}}}},"Manufacturer Name":"","Manufacturer":"","SQN":"","Stack Version":"","RIA":"0","ConfigureReporting":{"TimeStamps":{"01-0406":1565964466,"01-0006":1565964466},"Ep":{"01":{"0406":{},"0006":{}}}},"ProfileID":{},"ZDeviceID":{},"Type":"Motion","Health":"Live","Attributes List":{},"Stamp":{"LastSeen":"18/08/2019 23:04:59","MsgType":"8102","Time":"2019-08-18 23:05:59"},"BatteryUpdateTime":1566160433,"LogicalType":"","Bind":{"0006":{"Stamp":1565964466,"Status":"","Phase":"requested"}},"IEEE":"00158d0002c4c1f3","HW Version":"","App Version":"11","Heartbeat":"39536","Status":"inDB","Ep":{"01":{"Type":"Motion","0006":{},"ClusterType":{"895":"Motion"},"0406":"01","0000":{},"0001":"3005;0;0;0"}},"ReceiveOnIdle":"","Version":"3","PowerSource":"","Battery":64,"Model":"lumi.sensor_motion","MacCapa":"80","DeviceType":"","ZCL Version":"","Last Cmds":[],"RSSI":120,"NbEp":""}
1 : Object {"SWBUILD_3":"1.2.214","ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566163110,"01-0008":1566163110},"Ep":{"01":{"0008":{"0000":"00"},"0006":{"0000":"00"},"0000":{"4000":"00","0010":"86","000f":"86","0005":"00","0000":"00","0001":"00","0007":"00","0004":"00","000a":"00","0003":"00","0015":"86","0002":"00","0006":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"2","ConfigureReporting":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566106548,"01-0008":1566106488},"Ep":{"01":{"0008":"00","0006":"00","0000":"86"}}},"ProfileID":"c05e","ZDeviceID":"0100","Type":"LvlControl","Health":"","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"01/08/2019 21:51:12","MsgType":"8702","Time":"2019-08-18 23:18:31"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566106548,"Status":"","Phase":"requested"}},"IEEE":"d0cf5efffe2fa637","HW Version":"1","App Version":"17","Heartbeat":"239286","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"fe","0004":{},"0000":{},"ClusterType":{"869":"LvlControl"},"0005":{},"Type":"LvlControl","0b05":{},"0006":"01"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb GU10 W 400lm","MacCapa":"8e","APS Failure":[[1566161310.6977217,"d4"],[1566162210.821196,"d4"],[1566162210.9242175,"d4"],[1566163111.0198765,"d4"],[1566163111.1246886,"d4"]],"DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565571765.4111974,"0100","0214cb0101000800000000010000"],[1565571765.53183,"0100","0214cb01010006000000000540024003400140000000"],[1565571770.3982918,"0120","0214cb010100080000000001002000000005012C0FFF05"],[1565658125.0607116,"0100","0214cb0101000800000000010000"],[1565658125.186153,"0100","0214cb01010006000000000540034002400040010000"],[1565744514.755085,"0100","0214cb01010006000000000540000000400240034001"],[1565744514.8635852,"0100","0214cb0101000800000000010000"]],"RSSI":69,"NbEp":"1","SWBUILD_1":"20170302"}
2 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0300":1566090111,"01-0000":1564526297,"01-0006":1566090111,"01-0008":1566090111},"Ep":{"01":{"0300":{"0008":"02","0003":"753f","0004":"68f6","0002":"0000","000f":"00"},"0008":{"0000":"24"},"0000":{"0003":"00","0004":"00","0002":"00","0000":"00","0001":"00"},"0006":{"4000":"01","4001":"0000","4002":"0000","4003":"01","0000":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0300":1566102648,"01-0000":1564828972,"01-0006":1566102708,"01-0008":1566102648},"Ep":{"01":{"0300":"85","0008":"00","0000":"8d","0006":"00"}}},"ProfileID":"c05e","ZDeviceID":"0200","Type":"ColorControlRGB","Health":"Live","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0300":{"0008":"30","0003":"21","0004":"21","0002":"21","000f":"18"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"18/08/2019 23:18:37","MsgType":"8102","Time":"2019-08-18 23:18:37"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566102708,"Status":"","Phase":"requested"}},"IEEE":"000d6ffffe1e31de","ColorInfos":{"X":"30015","Y":"26870","ColorMode":2},"HW Version":"1","App Version":"17","Heartbeat":"1599","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"3d","0004":{},"0000":{},"0300":{},"ClusterType":{"793":"ColorControlRGB"},"0005":{},"Type":"ColorControlRGB","0b05":{},"0006":"01"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb E27 CWS opal 600lm","MacCapa":"8e","DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565733544.938034,"0092","028e23010100"],[1565744529.7419488,"0100","028e23010103000000000001000f"],[1565744529.8653846,"0100","028e230101000600000000010000"],[1565744529.9723382,"0100","028e230101000800000000010000"],[1565800089.9130862,"0120","028e23010103000000000003002100030001012C0FFF01002100040001012C0FFF01003000080001012C0FFF01"],[1565800090.1202145,"0120","028e23010100080000000001002000000005012C0FFF05"],[1565800149.897077,"0120","028e23010100060000000001001000000001012C0FFF01"]],"RSSI":180,"NbEp":"1"}
3 : Object {"ZDeviceName":"","ReadAttributes":{},"Manufacturer Name":"","Manufacturer":"","SQN":"64","Stack Version":"","RIA":"3","ConfigureReporting":{"TimeStamps":{"01-0006":1555959887,"02-0019":0,"01-0004":0,"01-0008":1555959827,"01-0005":0,"02-0000":1555959767,"02-0001":1555959767,"01-0000":1555959827,"02-000f":0,"02-0003":0,"02-fc00":0,"01-0003":0},"Ep":{"01":{"0003":{},"0008":{},"0004":{},"0006":{},"0005":{},"0000":{}},"02":{"0003":{},"0019":{},"000f":{},"fc00":"","0001":{},"0000":{}}}},"ProfileID":"c05e","ZDeviceID":"0830","Type":"Voltage/LvlControl/Switch","Health":"","Attributes List":{},"Stamp":{"LastSeen":"01/01/1970 01:00:00","MsgType":" 4d","Time":"2019-04-22 19:00:28"},"LogicalType":"","Bind":{"0006":{"Stamp":1555959887,"Status":"","Phase":"requested"}},"IEEE":"0017880104f29cc9","HW Version":"","App Version":"","Heartbeat":"1821845","Status":"inDB","Ep":{"01":{"0003":{},"0008":{},"0004":{},"0006":{},"ClusterType":{"808":"LvlControl"},"0005":{},"0000":{}},"02":{"0003":{},"0019":{},"ClusterType":{"806":"Voltage","807":"LvlControl"},"fc00":{},"000f":{},"0001":{},"0000":{}}},"ReceiveOnIdle":"","Version":"3","PowerSource":"","Battery":{},"Model":{},"MacCapa":"80","DeviceType":"","ZCL Version":"","Last Cmds":[],"RSSI":{},"NbEp":"2"}
4 : Object {"SWBUILD_3":"1.2.214","ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566163120,"01-0008":1566163120},"Ep":{"01":{"0008":{"0000":"00"},"0006":{"0000":"00"},"0000":{"4000":"00","0010":"86","000f":"86","0005":"00","0000":"00","0001":"00","0007":"00","0004":"00","000a":"00","0003":"00","0015":"86","0002":"00","0006":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"2","ConfigureReporting":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566106548,"01-0008":1566106548},"Ep":{"01":{"0008":"00","0006":"00","0000":"86"}}},"ProfileID":"c05e","ZDeviceID":"0100","Type":"LvlControl","Health":"","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"01/08/2019 21:51:08","MsgType":"8702","Time":"2019-08-18 23:18:41"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566106548,"Status":"","Phase":"requested"}},"IEEE":"90fd9ffffe32ae6d","HW Version":"1","App Version":"17","Heartbeat":"239284","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"fe","0004":{},"0000":{},"ClusterType":{"867":"LvlControl"},"0005":{},"Type":"LvlControl","0b05":{},"0006":"01"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb GU10 W 400lm","MacCapa":"8e","APS Failure":[[1566161320.7120986,"d4"],[1566162220.8253708,"d4"],[1566162220.9297705,"d4"],[1566163121.0375283,"d4"],[1566163121.1438198,"d4"]],"DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565485369.8147674,"0120","02d80b010100060000000001001000000001012C0FFF01"],[1565571725.5055084,"0100","02d80b0101000800000000010000"],[1565571725.6241922,"0100","02d80b01010006000000000540024003400140000000"],[1565658115.0479822,"0100","02d80b0101000800000000010000"],[1565658115.1572793,"0100","02d80b01010006000000000540034002400040010000"],[1565744564.7457056,"0100","02d80b01010006000000000540000000400240034001"],[1565744564.8720248,"0100","02d80b0101000800000000010000"]],"RSSI":54,"NbEp":"1","SWBUILD_1":"20170302"}
5 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0006":1565965036},"Ep":{"01":{"0006":{"8000":"80","0000":"00"},"0000":{"0005":"6c756d692e73656e736f725f737769746368","ff02":"100021ec0b21a80124000000000021a000205a","0001":"0a"}}}},"Manufacturer Name":"","Manufacturer":"","SQN":"","Stack Version":"","RIA":"0","ConfigureReporting":{"TimeStamps":{"01-0006":1565965036},"Ep":{"01":{"0006":{}}}},"ProfileID":{},"ZDeviceID":{},"Type":"SwitchAQ2","Health":"Live","Attributes List":{},"Stamp":{"LastSeen":"18/08/2019 22:44:24","MsgType":"8702","Time":"2019-08-18 22:44:31"},"BatteryUpdateTime":1566161064,"LogicalType":"","Bind":{"0006":{"Stamp":1565965036,"Status":"","Phase":"requested"}},"IEEE":"00158d0001b1825d","HW Version":"","App Version":"10","Heartbeat":"39422","Status":"inDB","Ep":{"01":{"Type":"SwitchAQ2","0004":{},"0006":"01","ClusterType":{"896":"SwitchAQ2"},"0001":"3092;0;0;0","0000":{}}},"ReceiveOnIdle":"","Version":"3","PowerSource":"","Battery":86,"Model":"lumi.sensor_switch","MacCapa":"80","APS Failure":[[1566146624.717368,"f0"],[1566150236.0556538,"f0"],[1566153847.7662668,"f0"],[1566157458.6180797,"f0"],[1566161071.94766,"f0"]],"DeviceType":"","ZCL Version":"","Last Cmds":[],"RSSI":147,"NbEp":""}
6 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0300":1566090111,"01-0000":1565626610,"01-0006":1565119018,"01-0008":1566090111},"Ep":{"01":{"0300":{"0008":"02","0003":"753f","0004":"68f6","0002":"0000","000f":"00"},"0008":{"0000":"fe"},"0000":{"0003":"00","0004":"00","0002":"00","0000":"00","0001":"00"},"0006":{"4000":"01","4001":"0000","4002":"0000","4003":"01","0000":"01"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0300":1566102588,"01-0000":1564800586,"01-0006":1566102588,"01-0008":1566102528},"Ep":{"01":{"0300":"85","0008":"00","0000":"8d","0006":"00"}}},"ProfileID":"c05e","ZDeviceID":"0200","Type":"ColorControlRGB","Health":"Live","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0300":{"0008":"30","0003":"21","0004":"21","0002":"21","000f":"18"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"18/08/2019 23:16:09","MsgType":"8102","Time":"2019-08-18 23:17:50"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566102588,"Status":"","Phase":"requested"}},"IEEE":"000d6ffffe250060","ColorInfos":{"X":"30967","Y":"26870","ColorMode":1},"HW Version":"1","App Version":"17","Heartbeat":"386","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"52","0004":{},"0000":{},"0300":{},"ClusterType":{"791":"ColorControlRGB"},"0005":{},"Type":"ColorControlRGB","0b05":{},"0006":"01"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb E27 CWS opal 600lm","MacCapa":"8e","DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565769887.8254285,"0092","0215b7010101"],[1565771816.646418,"0092","0215b7010100"],[1565778906.8827512,"0092","0215b7010100"],[1565783238.9108603,"0092","0215b7010100"],[1565799969.87346,"0120","0215b7010100080000000001002000000005012C0FFF05"],[1565800029.869925,"0120","0215b7010103000000000003002100030001012C0FFF01002100040001012C0FFF01003000080001012C0FFF01"],[1565800030.0773623,"0120","0215b7010100060000000001001000000001012C0FFF01"]],"RSSI":84,"NbEp":"1"}
7 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0300":1566090120,"01-0000":1564439885,"01-0006":1566090120,"01-0008":1566090120},"Ep":{"01":{"0300":{"0008":"02","0003":"753f","0004":"68f6","0002":"0000","000f":"00"},"0008":{"0000":"ab"},"0000":{"0003":"00","0004":"00","0002":"00","0000":"00","0001":"00"},"0006":{"4000":"01","4001":"0000","4002":"0000","4003":"01","0000":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0300":1566102348,"01-0000":1564818229,"01-0006":1566102408,"01-0008":1566102348},"Ep":{"01":{"0300":"85","0008":"00","0000":"8d","0006":"00"}}},"ProfileID":"c05e","ZDeviceID":"0200","Type":"ColorControlRGB","Health":"Live","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0300":{"0008":"30","0003":"21","0004":"21","0002":"21","000f":"18"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"18/08/2019 23:15:06","MsgType":"8102","Time":"2019-08-18 23:17:41"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566102408,"Status":"","Phase":"requested"}},"IEEE":"000d6ffffe1b724b","ColorInfos":{"X":"21997","Y":"39878","ColorMode":1},"HW Version":"1","App Version":"17","Heartbeat":"88","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"3b","0004":{},"0000":{},"0300":{},"ClusterType":{"792":"ColorControlRGB"},"0005":{},"Type":"ColorControlRGB","0b05":{},"0006":"00"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb E27 CWS opal 600lm","MacCapa":"8e","DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565772842.7489817,"0092","02d544010101"],[1565772852.9634733,"0092","02d544010100"],[1565772855.4975958,"0092","02d544010101"],[1565772856.120625,"0092","02d544010100"],[1565799789.8403683,"0120","02d544010103000000000003002100030001012C0FFF01002100040001012C0FFF01003000080001012C0FFF01"],[1565799790.048421,"0120","02d544010100080000000001002000000005012C0FFF05"],[1565799850.051683,"0120","02d544010100060000000001001000000001012C0FFF01"]],"RSSI":93,"NbEp":"1"}
8 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0006":1565964161},"Ep":{"01":{"0006":{},"0406":{"0000":"01"},"0000":{"0005":"6c756d692e73656e736f725f6d6f74696f6e","ff02":"100121670c21a8012400000000002109002056","0001":"0b"}}}},"Manufacturer Name":"","Manufacturer":"","SQN":"","Stack Version":"","RIA":"0","ConfigureReporting":{"TimeStamps":{"01-0006":1565964161},"Ep":{"01":{"0006":{}}}},"ProfileID":{},"ZDeviceID":{},"Type":"Motion","Health":"Live","Attributes List":{},"Stamp":{"LastSeen":"18/08/2019 23:04:05","MsgType":"8102","Time":"2019-08-18 23:04:05"},"BatteryUpdateTime":1566159962,"LogicalType":"","Bind":{"0006":{"Stamp":1565964161,"Status":"","Phase":"requested"}},"IEEE":"00158d0002c0924f","HW Version":"","App Version":"11","Heartbeat":"39597","Status":"inDB","Ep":{"01":{"Type":"Motion","0006":{},"ClusterType":{"894":"Motion"},"0406":"01","0000":{},"0001":"3035;0;0;0"}},"ReceiveOnIdle":"","Version":"3","PowerSource":"","Battery":71,"Model":"lumi.sensor_motion","MacCapa":"80","APS Failure":[[1566146425.2341168,"f0"],[1566149822.4935527,"f0"],[1566153273.7597666,"f0"],[1566156668.7693012,"f0"],[1566159969.6911035,"f0"]],"DeviceType":"","ZCL Version":"","Last Cmds":[],"RSSI":144,"NbEp":""}
9 : Object {"IEEE":"00158d0001eda63f","ZDeviceName":"Zigate","PowerSource":"Main","version":"3","Ep":{"0a":{"1000":{},"0702":{},"0401":{},"0b05":{},"0000":{},"0201":{},"0008":{},"0004":{},"0300":{},"0204":{},"0001":{},"0006":{},"0500":{},"0402":{},"0019":{},"0400":{},"0403":{},"0101":{},"0005":{},"0405":{},"0003":{},"0b03":{},"0406":{}},"01":{"1000":{},"0702":{},"0401":{},"0b05":{},"0000":{},"0201":{},"0008":{},"0004":{},"0300":{},"0204":{},"0001":{},"0006":{},"0500":{},"0402":{},"0019":{},"0400":{},"0403":{},"000f":{},"0005":{},"0405":{},"0003":{},"0b03":{},"0406":{}}},"LogicalType":"Coordinator"}
10 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0000":1563771906,"01-0006":1565139715,"01-0008":1566090120},"Ep":{"01":{"0008":{"0000":"fe"},"0006":{"4000":"01","4001":"0000","4002":"0000","4003":"01","0000":"01"},"0000":{"0003":"00","0004":"00","0002":"00","0000":"00","0001":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0000":1564831072,"01-0006":1566102528,"01-0008":1566102468},"Ep":{"01":{"0008":"00","0006":"00","0000":"8d"}}},"ProfileID":"c05e","ZDeviceID":"0100","Type":"LvlControl","Health":"Live","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"18/08/2019 23:19:30","MsgType":"8102","Time":"2019-08-18 23:19:30"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566102528,"Status":"","Phase":"requested"}},"IEEE":"000b57fffe8ced2e","HW Version":"1","App Version":"17","Heartbeat":"238","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"78","0004":{},"0000":{},"ClusterType":{"798":"LvlControl"},"0005":{},"Type":"LvlControl","0b05":{},"0006":"00"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb E14 W op/ch 400lm","MacCapa":"8e","APS Failure":[[1566135570.499745,"e9"],[1566135870.4847891,"e9"],[1566136171.9416952,"e9"],[1566136226.0422535,"e9"],[1566149070.542336,"e9"]],"DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565778906.6447265,"0092","027395010100"],[1565781464.2138307,"0092","027395010101"],[1565781635.5681381,"0092","027395010100"],[1565783238.7066739,"0092","027395010100"],[1565798583.437197,"0092","027395010101"],[1565799910.0741358,"0120","027395010100080000000001002000000005012C0FFF05"],[1565799974.7391784,"0120","027395010100060000000001001000000001012C0FFF01"]],"RSSI":84,"NbEp":"1"}
11 : Object {"SWBUILD_3":"1.2.214","ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566163120,"01-0008":1566163120},"Ep":{"01":{"0008":{"0000":"00"},"0006":{"0000":"00"},"0000":{"4000":"00","0010":"86","000f":"86","0005":"00","0000":"00","0001":"00","0007":"00","0004":"00","000a":"00","0003":"00","0015":"86","0002":"00","0006":"00"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0000":1564688467,"01-0006":1566106488,"01-0008":1566106488},"Ep":{"01":{"0008":"00","0006":"00","0000":"86"}}},"ProfileID":"c05e","ZDeviceID":"0100","Type":"LvlControl","Health":"","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"01/08/2019 21:51:10","MsgType":"8702","Time":"2019-08-18 23:18:41"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566106488,"Status":"","Phase":"requested"}},"IEEE":"d0cf5efffeb400bc","HW Version":"1","App Version":"17","Heartbeat":"239278","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"fe","0004":{},"0000":{},"ClusterType":{"868":"LvlControl"},"0005":{},"Type":"LvlControl","0b05":{},"0006":"01"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb GU10 W 400lm","MacCapa":"8e","APS Failure":[[1566159520.463951,"d4"],[1566160420.6113174,"d4"],[1566161320.8181212,"d4"],[1566162221.035077,"d4"],[1566163121.2504735,"d4"]],"DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565571715.403553,"0100","02c3d40101000800000000010000"],[1565571715.510036,"0100","02c3d401010006000000000540024003400140000000"],[1565658165.081682,"0100","02c3d40101000800000000010000"],[1565658165.2041986,"0100","02c3d401010006000000000540034002400040010000"],[1565658168.1708908,"0120","02c3d4010100060000000001001000000001012C0FFF01"],[1565744524.7477784,"0100","02c3d401010006000000000540000000400240034001"],[1565744524.8564196,"0100","02c3d40101000800000000010000"]],"RSSI":144,"NbEp":"1","SWBUILD_1":"20170302"}
12 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0000":1565551296,"01-0006":1565118983,"01-0008":1566090120},"Ep":{"01":{"0008":{"0000":"fe"},"0006":{"4000":"01","4001":"0000","4002":"0000","4003":"01","0000":"01"},"0000":{"0003":"01","0004":"494b4541206f662053776564656e","0002":"57","0000":"01","0001":"11"}}}},"Manufacturer Name":"IKEA of Sweden","Manufacturer":"117c","SQN":{},"Stack Version":"87","RIA":"1","ConfigureReporting":{"TimeStamps":{"01-0000":1564849135,"01-0006":1566102468,"01-0004":0,"01-0b05":0,"01-1000":0,"01-0005":0,"01-0003":0,"01-0008":1566102408},"Ep":{"01":{"1000":{},"0003":{},"0008":"00","0004":{},"0006":"00","0005":"","0b05":{},"0000":"8d"}}},"ProfileID":"c05e","ZDeviceID":"0100","Type":"LvlControl","Health":"Live","Attributes List":{"Ep":{"01":{"0003":{"fffd":"21","0000":"21"},"0008":{"0010":"21","0001":"21","0000":"20","0011":"20","000f":"18"},"0004":{"fffd":"21","0000":"18"},"0006":{"4000":"10","4001":"21","4002":"21","4003":"30","0000":"10"},"0005":{"0003":"10","0004":"18","0002":"21","0000":"20","0001":"20"},"0b05":{"0107":"21","0106":"21","0000":"21","0100":"23","0101":"23"},"0000":{"0003":"20","0004":"42","0002":"20","0000":"20","0001":"20"}}}},"Stamp":{"LastSeen":"18/08/2019 23:15:09","MsgType":"8102","Time":"2019-08-18 23:15:11"},"LogicalType":"Router","Bind":{"0006":{"Stamp":1566102468,"Status":"","Phase":"requested"}},"IEEE":"000b57fffeb2d124","HW Version":"1","App Version":"17","Heartbeat":"238","Status":"inDB","Ep":{"01":{"1000":{},"0003":{},"0008":"fe","0004":{},"0000":{},"ClusterType":{"820":"LvlControl"},"0005":{},"Type":"LvlControl","0b05":{},"0006":"00"}},"ReceiveOnIdle":"On","Version":"3","PowerSource":"Main","Battery":{},"Model":"TRADFRI bulb E14 W op/ch 400lm","MacCapa":"8e","APS Failure":[[1566111353.6444356,"e9"],[1566116753.6996553,"e9"],[1566122109.185511,"e9"],[1566145809.566032,"e9"]],"DeviceType":"FFD","ZCL Version":"1","Last Cmds":[[1565778906.7783918,"0092","0226c1010100"],[1565781464.3461733,"0092","0226c1010101"],[1565781635.7002356,"0092","0226c1010100"],[1565783238.809384,"0092","0226c1010100"],[1565798583.5652049,"0092","0226c1010101"],[1565799849.8434734,"0120","0226c1010100080000000001002000000005012C0FFF05"],[1565799909.8660653,"0120","0226c1010100060000000001001000000001012C0FFF01"]],"RSSI":84,"NbEp":"1"}
13 : Object {"ZDeviceName":"","ReadAttributes":{"TimeStamps":{"01-0006":1565295228},"Ep":{"01":{"0006":{"0000":"01"},"0000":{"0005":"6c756d692e73656e736f725f3836737731","ff01":"0121db0b03281c0421a80105212f00062404000000000a2195734b","0001":"04"}}}},"Manufacturer Name":"","Manufacturer":"","SQN":"","Stack Version":"","RIA":"0","ConfigureReporting":{"TimeStamps":{"01-0006":1565295228},"Ep":{"01":{"0006":{}}}},"ProfileID":{},"ZDeviceID":{},"Type":"Button","Health":"Live","Attributes List":{},"Stamp":{"LastSeen":"18/08/2019 22:47:50","MsgType":"8102","Time":"2019-08-18 22:47:50"},"BatteryUpdateTime":1566159792,"LogicalType":"","Bind":{"0006":{"Stamp":1565295228,"Status":"","Phase":"requested"}},"IEEE":"00158d00015efc6d","HW Version":"","App Version":"4","Heartbeat":"8302","Status":"inDB","Ep":{"03":{},"01":{"0001":"3025;0;0;0","0006":"00","0000":{},"ClusterType":{"876":"Button"}},"02":{}},"ReceiveOnIdle":"","Version":"3","PowerSource":"","Battery":69,"Model":"lumi.sensor_86sw1","MacCapa":"80","APS Failure":[[1566121490.5922894,"d4"]],"DeviceType":"","ZCL Version":"","Last Cmds":[[1565446435.7913573,"0092","028558010101"],[1565446485.3669226,"0092","028558010101"],[1565446554.6695702,"0092","028558010101"],[1565718529.947273,"0092","028558010101"],[1565718530.0513134,"0092","028558010101"],[1565718533.8720646,"0092","028558010101"],[1565718609.2312348,"0092","028558010101"]],"RSSI":87,"NbEp":"3"}

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Monday 19 August 2019 8:30
by pipiche
Thanks for that.
I'm investigating a way to enable it.

Could you do one more step

(1) With the Admin Web Interface go to Settings, enable Advanced setting
(2) Enable debugCommand

Do the test where you On/off on the Domoticz Widget and capture the logs produced at that time

Please copy paste those logs.

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Monday 19 August 2019 22:25
by domogijs
sure hereby the log

Code: Select all

2019-08-19 22:24:06.548 (Zigate ) mgtCommand - NWKID = 8558
2019-08-19 22:24:06.548 (Zigate ) mgtCommand : found Device : 876 in Ep 01 Button
2019-08-19 22:24:06.549 (Zigate ) mgtCommand - List of TypeName : ['Button']
2019-08-19 22:24:06.549 (Zigate ) mgtCommand - DeviceType : Button
2019-08-19 22:24:06.549 (Zigate ) mgtCommand : Found Ep 01 for Device 876 Cluster 0006
2019-08-19 22:24:06.549 (Zigate ) EPout = 01
2019-08-19 22:24:06.652 (Zigate ) Decode8702 - Unknown Address 855800000008659f : (None,None)
2019-08-19 22:24:06.532 Status: User: Admin initiated a switch command (876/GangZ/On)

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Tuesday 20 August 2019 8:36
by pipiche
domogijs wrote: Monday 19 August 2019 22:25 sure hereby the log

Code: Select all

2019-08-19 22:24:06.548 (Zigate ) mgtCommand - NWKID = 8558
2019-08-19 22:24:06.548 (Zigate ) mgtCommand : found Device : 876 in Ep 01 Button
2019-08-19 22:24:06.549 (Zigate ) mgtCommand - List of TypeName : ['Button']
2019-08-19 22:24:06.549 (Zigate ) mgtCommand - DeviceType : Button
2019-08-19 22:24:06.549 (Zigate ) mgtCommand : Found Ep 01 for Device 876 Cluster 0006
2019-08-19 22:24:06.549 (Zigate ) EPout = 01
2019-08-19 22:24:06.652 (Zigate ) Decode8702 - Unknown Address 855800000008659f : (None,None)
2019-08-19 22:24:06.532 Status: User: Admin initiated a switch command (876/GangZ/On)
Missing a line like "mgtCommand called for Devices ........"

If you can do a git pull and redo the test that would be great. Added few more logs.

In fact, what I'm trying to figure out is why it doesn't work, as from the code side you should get the Event

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Sunday 25 August 2019 9:52
by domogijs
hereby

Code: Select all

019-08-25 09:16:50.629 (Zigate ) mgtCommand - NWKID = 8558
2019-08-25 09:16:50.629 (Zigate ) mgtCommand : found Device : 876 in Ep 01 Button
2019-08-25 09:16:50.629 (Zigate ) mgtCommand - List of TypeName : ['Button']
2019-08-25 09:16:50.629 (Zigate ) mgtCommand - DeviceType : Button
2019-08-25 09:16:50.629 (Zigate ) mgtCommand : Found Ep 01 for Device 876 Cluster 0006
2019-08-25 09:16:50.629 (Zigate ) EPout = 01
2019-08-25 09:16:50.592 Status: User: Admin initiated a switch command (876/GangZ/On)
2019-08-25 09:17:05.269 (Zigate ) Decode8000 - PacketType: 0100 Status: [15] - 15
2019-08-25 09:17:05.373 (Zigate ) Decode8000 - PacketType: 0100 Status: [15] - 15
2019-08-25 09:17:05.474 (Zigate ) Decode8000 - PacketType: 0100 Status: [15] - 15

Re: Zigate - not sending Wireless Aqara Switch signal?

Posted: Monday 26 August 2019 15:40
by pipiche
I think I found the issue.
Could you kindly update beta branch and redo your test