Posts: 301 
	Threads: 39 
	Joined: Apr 2019
	
 Reputation: 
 4
	 
 
	
	
		 (13.06.2023, 07:58)batistacaceres Wrote:   (13.06.2023, 07:34)admin Wrote:  Post what you have in ZigBee app logs.  
[2023-06-13 09:52:46] CC: resetting device 
[2023-06-13 09:53:06] CC: resetting device 
[2023-06-13 09:53:26] CC: resetting device 
[2023-06-13 09:53:46] CC: could not reset dongle 
[2023-06-13 09:53:46] CC: error initializing 
[2023-06-13 09:53:46] ZB: could not start coordinator 
[2023-06-13 09:53:46] TASK zb_initialize aborted: stack traceback: 
[C]: in function 'assert' 
...tmp.a1T5qQlEly/files/store/daemon/zigbee/zigbee/core.lua:894: in function <...tmp.a1T5qQlEly/files/store/daemon/zigbee/zigbee/core.lua:890> 
[2023-06-13 09:54:22] CC: resetting device 
[2023-06-13 09:54:42] CC: resetting device 
Hello, the same thing happens to me as my colleague and with the same error messages. In my case, in the upper right part, only a flashing red light appears. I have tried with another LM that had a previous version of the Zigbee app and it worked, when I updated it to the latest version it no longer works. I have tried to do everything you ordered below but without success. When executing the script in Alerts, the ERROR message appears
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Which gateway are you using - USB or RS232? Check that the connection mode is correct in ZigBee app Configuration.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 301 
	Threads: 39 
	Joined: Apr 2019
	
 Reputation: 
 4
	 
 
	
	
		 (04.03.2024, 08:33)admin Wrote:  Which gateway are you using - USB or RS232? Check that the connection mode is correct in ZigBee app Configuration. 
Yes RS232, the wiring and configuration is fine. This has stopped working with the latest version of the APP
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		What is the exact hardware version of your gateway? Which app version is still working for you?
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 301 
	Threads: 39 
	Joined: Apr 2019
	
 Reputation: 
 4
	 
 
	
		
		
		04.03.2024, 10:29 
(This post was last modified: 04.03.2024, 10:31 by davidchispas.)
		
	 
	
		 (04.03.2024, 09:25)admin Wrote:  What is the exact hardware version of your gateway? Which app version is still working for you? 
ZIG2MV11220015
 
I don't remember what the version was, but it has to be one from a year ago.
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		This looks like either a hardware problem or outdated firmware on the gateway. Contact us via email for a replacement.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8 
	Threads: 1 
	Joined: Mar 2024
	
 Reputation: 
 0
	 
 
	
	
		Hello Daniel, Can you add more option in this product ?  
Today we have RMS Voltage, Ampere and energy but the product have many more option 
 https://github.com/fairecasoimeme/Zlinky_TIC
Thx
 
Manufacturer: LiXee 
Model: ZLinky_TIC 
Firmware version: 4000-0013 
Device type: Router 
Power source: Mains 
Receive when idle: Yes 
Endpoint 1 
 Profile: 260 
 Input clusters 
 - Basic (0) 
 - PowerCfg (1) 
 - Identify (3) 
 - SeMetering (1794) 
 - HaElectricalMeasurement (2820) 
 - HaMeterIdentification (2817) 
 - 65382 
 Output clusters 
 - Ota (25) 
Endpoint 242 
 Profile: 41440 
 Input clusters 
 - GreenPower (33) 
 Output clusters 
 - GreenPower (33)
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		@busta, we don't have plans to add any new measurement attributes at the moment. 
You can read raw attributes via a script like this:
 Code: zb = require('applibs.zigbee') 
 
addr = '000d6f000b7a9d76' -- Meter address 
cluster = 0x0702 -- Metering 
attrs = { 769, 770, 1024 } -- Multiplier, Divisor, ActivePower 
 
res, err = zb.cmdsync('getattributes', addr, cluster, attrs) 
 
if res then 
  -- note that the returned attribute keys are strings, not numbers 
  power = res['1024'] * res['769'] / res['770'] 
  log(power) 
else 
  log('zb read error', err) 
end
  
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 114 
	Threads: 12 
	Joined: Mar 2019
	
 Reputation: 
 3
	 
 
	
	
		Hi there, @admin. Mind you add this profile? Thanks in advance. 
Fingerbot Plus
 Code: Manufacturer: _TZ3210_j4pdtz9v 
Model: TS0001 
 
Device type: End device 
Power source: Battery 
Receive when idle: No 
 
Endpoint 1 
 Profile: 260 
 Input clusters 
 - OnOff (6) 
 - 61184 
 - Basic (0) 
 Output clusters 
 - Ota (25) 
 - Time (10) 
 
Reported attributes 
 - calclevel: 0 
 - onoff: false 
 - prevlevel: 254
  
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8 
	Threads: 1 
	Joined: Mar 2024
	
 Reputation: 
 0
	 
 
	
		
		
		25.04.2024, 17:17 
(This post was last modified: 25.04.2024, 17:19 by busta.)
		
	 
	
		hello i have a product Zigbee for counting. but the information are not updated automatically. i need to read the information manually to see the information. 
 
Is it possible to change this to automatically updated the data ? 
 
Manufacturer: LiXee 
Model: ZLinky_TIC 
Firmware version: 4000-0013 
 
Device type: Router 
Power source: Mains 
Receive when idle: Yes 
 
Endpoint 1 
 Profile: 260 
 Input clusters 
 - Basic (0) 
 - PowerCfg (1) 
 - Identify (3) 
 - SeMetering (1794) 
 - HaElectricalMeasurement (2820) 
 - HaMeterIdentification (2817) 
 - 65382 
 Output clusters 
 - Ota (25) 
 
Endpoint 242 
 Profile: 41440 
 Input clusters 
 - GreenPower (33) 
 Output clusters 
 - GreenPower (33) 
 
Reported attributes 
 - currentsummdelivered: 6077858 
 - rmscurrent: 2 
 - rmsvoltage: 0
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		@alexll, @busta, we'll add profiles for your devices in the next version.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 56 
	Threads: 2 
	Joined: Mar 2019
	
 Reputation: 
 1
	 
 
	
	
		Hi, 
 
I got hands on a LSS100400 RS232 Device, will i reconnect all my devices when switch from USB to RS232 ?
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		It should work. But you need to turn off all permanently powered ZigBee devices and only turn them on once new gateway starts.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 62 
	Threads: 14 
	Joined: Oct 2015
	
 Reputation: 
 0
	 
 
	
	
		 (26.04.2024, 09:59)admin Wrote:  @alexll, @busta, we'll add profiles for your devices in the next version. 
Hello Admin, have you integrated the lixee product ? because i have the same issue.  
Active Power don't appear.
 Manufacturer: LiXee 
Model: ZLinky_TIC
Firmware version: 4000-0013
Device type: Router
Power source: Mains
Receive when idle: Yes
Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- PowerCfg (1)
- Identify (3)
- SeMetering (1794)
- HaElectricalMeasurement (2820)
- HaMeterIdentification (2817)
- 65382
Output clusters
- Ota (25)
Endpoint 242
Profile: 41440
Input clusters
- GreenPower (33)
Output clusters
- GreenPower (33)
Reported attributes
- currentsummdelivered: 6928895
- haactivepower: 0
- rmscurrent: 3
- rmsvoltage: 0
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Check that you have the latest ZigBee app installed. Delete your device from the app then reset the device and pair it again.
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 286 
	Threads: 64 
	Joined: Sep 2015
	
 Reputation: 
 0
	 
 
	
	
		Hi, Is there any way to get offline status of device and map them to KNX addresses?
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 8422 
	Threads: 45 
	Joined: Jun 2015
	
 Reputation: 
 481
	 
 
	
	
		Online status can be done via a scheduled script.  
If a device is battery powered then the maximum allowed delta should be increased from 1 hour (60 * 60) to 4 hours.
 Code: ieeeaddr = 'cc86ecfffe728382' 
updatetime = db:getone([[ 
  SELECT updatetime 
  FROM zb_devices 
  WHERE ieeeaddr=? 
]], ieeeaddr) 
 
diff = os.time() - updatetime 
delta = 60 * 60 * 1.1 -- max time delta in seconds +10% 
online = diff < delta 
 
grp.checkwrite('0/0/1', online)
  
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 286 
	Threads: 64 
	Joined: Sep 2015
	
 Reputation: 
 0
	 
 
	
	
		 (22.07.2024, 05:36)admin Wrote:  Online status can be done via a scheduled script.  
If a device is battery powered then the maximum allowed delta should be increased from 1 hour (60 * 60) to 4 hours. 
 
Code: ieeeaddr = 'cc86ecfffe728382' 
updatetime = db:getone([[ 
  SELECT updatetime 
  FROM zb_devices 
  WHERE ieeeaddr=? 
]], ieeeaddr) 
 
diff = os.time() - updatetime 
delta = 60 * 60 * 1.1 -- max time delta in seconds +10% 
online = diff < delta 
 
grp.checkwrite('0/0/1', online)
  
Ok, thanks!
	  
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 120 
	Threads: 24 
	Joined: Sep 2021
	
 Reputation: 
 2
	 
 
	
	
		Hi @all, 
 
can you please add the following door lock to the devices? 
 
Manufacturer: Danalock 
Model: V3-BTZBE 
 
Device type: End device 
Power source: Battery 
Receive when idle: No 
 
Endpoint 1 
Profile: 260 
Input clusters 
- Basic (0) 
- PowerCfg (1) 
- Identify (3) 
- Alarms (9) 
- PollCtrl (32) 
- ClosuresDoorLock (257) 
- HaDiagnostic (2821) 
- 64767 
Output clusters 
- Ota (25) 
 
Reported attributes 
- lockstate: 1 
 
Many thanks for your help! 
 
Best regards  
Steffen
	 
	
	
	
		
	 
 
 
	
	
	
		
	Posts: 267 
	Threads: 39 
	Joined: Feb 2016
	
 Reputation: 
 1
	 
 
	
	
	
	
----------- 
FRANCE SMARTHOME & SMARTBUILDING INTEGRATION 
SE ECO EXPERT
 
	
		
	 
 
 
	 
 |