Logic Machine Forum
Zigbee gateway integration - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10)
+--- Thread: Zigbee gateway integration (/showthread.php?tid=3320)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24


RE: Zigbee gateway integration - davidchispas - 04.03.2024

(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


RE: Zigbee gateway integration - admin - 04.03.2024

Which gateway are you using - USB or RS232? Check that the connection mode is correct in ZigBee app Configuration.


RE: Zigbee gateway integration - davidchispas - 04.03.2024

(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


RE: Zigbee gateway integration - admin - 04.03.2024

What is the exact hardware version of your gateway? Which app version is still working for you?


RE: Zigbee gateway integration - davidchispas - 04.03.2024

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


RE: Zigbee gateway integration - admin - 04.03.2024

This looks like either a hardware problem or outdated firmware on the gateway. Contact us via email for a replacement.


RE: Zigbee gateway integration - busta - 29.03.2024

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)


RE: Zigbee gateway integration - admin - 02.04.2024

@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



RE: Zigbee gateway integration - alexll - 24.04.2024

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



RE: Zigbee gateway integration - busta - 25.04.2024

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


RE: Zigbee gateway integration - admin - 26.04.2024

@alexll, @busta, we'll add profiles for your devices in the next version.