19.11.2024, 17:18
Yes no data corruption. It was not us, SE did it. In our app it is as stated in our documentations.
------------------------------
Ctrl+F5
Ctrl+F5
Zigbee gateway integration
|
19.11.2024, 17:18
Yes no data corruption. It was not us, SE did it. In our app it is as stated in our documentations.
------------------------------
Ctrl+F5
20.11.2024, 10:10
(16.11.2024, 11:45)stianj Wrote:(15.11.2024, 13:16)admin Wrote: @stianj, enable debug logging in ZigBee app then reset and pair your lamp again. Send the logs afterwards. I feel a bit ignored
20.11.2024, 10:42
(20.11.2024, 10:10)stianj Wrote:We identified the issue but it require some development on our side and it will take some unspecified amount time.(16.11.2024, 11:45)stianj Wrote:(15.11.2024, 13:16)admin Wrote: @stianj, enable debug logging in ZigBee app then reset and pair your lamp again. Send the logs afterwards.
------------------------------
Ctrl+F5
20.11.2024, 12:25
(20.11.2024, 10:42)Daniel Wrote: We identified the issue but it require some development on our side and it will take some unspecified amount time. Thanks! That's fine, it's just nice to know that my issue is real - not just something I'm doing wrong, and also that you are working to fix it. Appreciate it!
20.11.2024, 17:09
Hello Daniel,
I am trying to read the rms current from a smart socket. But the code is not correct. Is it possible for you to give some guidance? Code: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 zb = require('applibs.zigbee.zigbee')
local address = '70b3d52b600a3f9c'
endpoint = 3
cluster = 0x0B04 --
attrs = { 254 , 69 ,17, 401 }
-- Get rmscurrent from HaElectricalMeasurement cluster
local res, err = zb.cmdsync('getrawattribute', address, cluster, 401)
-- Log the result or the error
if err then
log("Error retrieving rmscurrent: " .. err)
else
log("RMS Current: " .. tostring(res))
end
--[[
Manufacturer: _TZ3000_okaz9tjs
Model: TS011F
Firmware version: 500+TZSKT31BS102
Device type: Router
Power source: Mains
Receive when idle: Yes
Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- OnOff (6)
- Identify (3)
- Groups (4)
- Scenes (5)
- 57345
- HaElectricalMeasurement (2820)
- SeMetering (1794)
Reported attributes
- calclevel: 254
- currentsummdelivered: 665
- haactivepower: 69
- onoff: true
- prevlevel: 254
- rmscurrent: 401
- rmsvoltage: 241
]]--
21.11.2024, 06:47
30.11.2024, 10:06
Hi,
is it possible for 0-100 Scale to chose for DPT 5 or 9 ? in my case Gira S1 would use KNX DPT 9.007 for humdity and i cant record it with DPT 5 I use a VINDSTYRKA Air Qualitysensor and can only read the Value in 1byte DPT 5
30.11.2024, 10:23
(30.11.2024, 10:06)Sral1987 Wrote: Hi, Hi, Try creating an event script for changing the value. BR Cristian
05.12.2024, 18:16
Question. If I have a zigbee cluster list from a allready supported device, should I not be able to read or write to all attributes in the cluster by script?
06.12.2024, 08:19
Not all attributes are mandatory by the standard. Check the reply in ZigBee app monitor when you perform a read request.
06.12.2024, 09:33
Ok, I'll give it a go. I found some attributes for activating child safety, and sending external temperature to a thermostat.
09.12.2024, 09:16
(03.10.2024, 13:51)hepa Wrote:(03.10.2024, 13:31)admin Wrote: There should not be any difference between heating and auto mode so that's why the control is binary. Soo... will there be a fix? (Original post #500)
09.12.2024, 13:06
We plan to release an update this week which will add keypad lockout control via object. It will also contain a work-around for your device so System Mode is set to heat instead of auto when enabled.
DisplayAutoOffActivation can be set via a script. Make sure that ZigBee app is updated. Change addr as needed and run once: Code: 123456789101112 zb = require('applibs.zigbee')
addr = '1234567890abcdef'
cluster = 0x0201 -- Thermostat
attr = 0x1001 -- DisplayAutoOffActivation
value = 1 -- activated
dtype = 'enum8'
manufcode = 0x1224 -- Namron
res, err = zb.cmdsync('setrawattribute', addr, cluster, attr, value, dtype, manufcode)
log(res, err)
11.12.2024, 10:16
A new update has been published:
11.12.2024, 13:09
But no fix for the missing feedback from Hue-lamps, it seems. Am I the only one with Hue-lamps, or why isn't anyone else complaining?
11.12.2024, 13:10
Did you reset and paired your lamps again after the upgrade? Try it and provide debug logs if it's still not working.
12.12.2024, 07:22
(30.11.2024, 10:23)CristianAgata Wrote:(30.11.2024, 10:06)Sral1987 Wrote: Hi, This is my least favourit solution due to my lack of knwolage for lua scripting. Any hints here ?
12.12.2024, 07:31
Map an event script to the source group address (DPT 5.001). Change 1/1/1 to the target group address (DPT 9.007).
Code: 1 grp.checkwrite('1/1/1', event.getvalue())
12.12.2024, 08:00
(11.12.2024, 13:10)admin Wrote: Did you reset and paired your lamps again after the upgrade? Try it and provide debug logs if it's still not working. Wow, it actually worked! I tried before re-pairing the bulb, and still no feedback. But after re-paring (which I also tried on the earlier version) it now works. Thank you! Was a bit fooled by the missing mention in the release notes...
Yesterday, 13:59
I have of course two more issues I would like to ask...
1: I have bought a Hue Smart Plug (LOM007) which exposes dimming interface. Of course not a problem - I just don't have to use it - but is that a bug or intended behaviour? Code: 1234567891011121314151617181920212223242526272829303132 Manufacturer: Signify Netherlands B.V.
Model: LOM007
Firmware version: 1.76.11
Device type: Router
Power source: Mains
Receive when idle: Yes
Endpoint 11
Profile: 260
Input clusters
- Basic (0)
- Identify (3)
- Groups (4)
- Scenes (5)
- OnOff (6)
- LevelCtrl (8)
- LightLink (4096)
- 64514
Output clusters
- Ota (25)
Endpoint 242
Profile: 41440
Output clusters
- GreenPower (33)
Reported attributes
- calclevel: 254
- level: 254
- onoff: true
- prevlevel: 2542: I have also just bought an IKEA Styrbar remote control. It has four buttons, but only two of them are exposed, as far as I can see? Is that intended? I see that HomeAssistant supports four buttons for this device. Code: 1234567891011121314151617181920212223 Manufacturer: IKEA of Sweden
Model: Remote Control N2
Firmware version: 1.0.024
Device type: End device
Power source: Battery
Receive when idle: No
Endpoint 1
Profile: 260
Input clusters
- Basic (0)
- PowerCfg (1)
- Identify (3)
- PollCtrl (32)
- LightLink (4096)
- 64599
Output clusters
- Identify (3)
- OnOff (6)
- LevelCtrl (8)
- Ota (25)
- LightLink (4096) |
« Next Oldest | Next Newest »
|