This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Zigbee gateway integration
(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
Reply
Which gateway are you using - USB or RS232? Check that the connection mode is correct in ZigBee app Configuration.
Reply
(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
Reply
What is the exact hardware version of your gateway? Which app version is still working for you?
Reply
(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.
Reply
This looks like either a hardware problem or outdated firmware on the gateway. Contact us via email for a replacement.
Reply
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)
Reply
@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
Reply


Forum Jump: