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
Basic lamps (on/off + level) will work without a profile. RGB/TC lamps require a profile to be added to the app. It's a trivial task and can be done quickly. We just need to know which manufacturer/model name is reported from the lamp.
Reply
Hi at all,
I have a client with several thermostatic valves Ezviz.
This is the information:
Is it possible add in future upgrades?

Manufacturer: EZVIZ
Model: CS-T55-R100-G

Device type: End device
Power source: Battery
Receive when idle: No

Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- PowerCfg (1)
- PollCtrl (32)
- 1796
- SsIasZone (1280)
- OnOff (6)
- HvacThermostat (513)
- MsTemperatureMeasurement (1026)
- 65216
- 65024
Output clusters
- Ota (25)
- 1796

Reported attributes
- calclevel: 0
- occupiedheatingsetpoint: 50.00
- onoff: false
- systemmode: 16
- temperature: 20.10
Reply
It can be added but it will require some additional testing. Some features might not work - it reports system mode 16 but ZigBee standard only defines modes from 0 to 9.
Reply
Hello, 
For a project i need this Product MHCOZY Zigbee température

I see the ON/OFF object but i don't see the temperature 

Thanks 

Manufacturer: _TZ3218_7fiyo3kv
Model: TS000F

Device type: Router
Power source: Mains
Receive when idle: Yes

Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- Scenes (5)
- OnOff (6)
- 57345
- 57344
- 61184
Output clusters
- Time (10)
- Ota (25)

Endpoint 242
Profile: 41440
Output clusters
- GreenPower (33)

Reported attributes
- calclevel: 254
- onoff: true
- prevlevel: 254
Reply
@hocine, this device uses a non-standard cluster for temperature reporting which we don't support. To work with our gateway it must have MsTemperatureMeasurement (1026) cluster.
Reply
Hi, 
Im using eWeLink - MS01 PIR sensor with zigbee, is ther any way to alter the timeout/on duration of the sensor from LM?
Reply
Try running this script to check if the delay can be read from the sensor. Change the addr variable to the sensor address and wake up the sensor manually right before running the script.
Code:
zb = require('applibs.zigbee')

addr = '0123456789abcdef'

cluster = 0x0406 -- MsOccupancySensing
attrs = { 'PirOToUDelay' }

res, err = zb.cmdsync('getnamedattributes', addr, cluster, attrs)
log(res, err)
Reply
(Yesterday, 07:43)admin Wrote: Try running this script to check if the delay can be read from the sensor. Change the addr variable to the sensor address and wake up the sensor manually right before running the script.
Code:
zb = require('applibs.zigbee')

addr = '0123456789abcdef'

cluster = 0x0406 -- MsOccupancySensing
attrs = { 'PirOToUDelay' }

res, err = zb.cmdsync('getnamedattributes', addr, cluster, attrs)
log(res, err)
zi
Code:
i got the following in the logs
* arg: 1
  * nil
* arg: 2
  * string: no response

also here is the device info, in case it maked a difference?

Manufacturer: eWeLink
Model: MS01

Device type: End device
Power source: Battery
Receive when idle: No

Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- SsIasZone (1280)
- PowerCfg (1)
Output clusters
- Identify (3)

Reported attributes
- detection: false
Reply
You need to wake up the device just before running the script. Usually this can be done by pressing the programming/reset button on the device itself. If you are not quick enough then the device will go into sleep mode again and won't communicate.
Reply


Forum Jump: