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
Yes no data corruption. It was not us, SE did it. In our app it is as stated in our documentations.
------------------------------
Ctrl+F5
Reply
(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.

Thanks. Logs attached. I enabled debug logging, deleted the bulb from the app, reset the bulb, opened the network, re-joined the bulb, configured all the GA's, then turned it on and off and changed brightness using the GA's.

The bulb in question has address 001788010b270b60

But result is still the same, the status GA's do not update unless I use "Read" on the Control and status page. This goes for all six Hue bulbs I have.

I can't quite see I'm doing anything wrong here, but I'm very open to you proving me otherwise Smile

I feel a bit ignored Angel
Reply
(20.11.2024, 10:10)stianj Wrote:
(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.

Thanks. Logs attached. I enabled debug logging, deleted the bulb from the app, reset the bulb, opened the network, re-joined the bulb, configured all the GA's, then turned it on and off and changed brightness using the GA's.

The bulb in question has address 001788010b270b60

But result is still the same, the status GA's do not update unless I use "Read" on the Control and status page. This goes for all six Hue bulbs I have.

I can't quite see I'm doing anything wrong here, but I'm very open to you proving me otherwise Smile

I feel a bit ignored Angel
We identified the issue but it require some development on our side and it will take some unspecified amount time.
------------------------------
Ctrl+F5
Reply
(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! Smile
Reply
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 ]]--
Reply
(19.11.2024, 17:15)admin Wrote: Have you done reset and pair procedure after updating the app?

Yes i did it but no change
Reply
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
Reply
(30.11.2024, 10:06)Sral1987 Wrote: 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

Hi,
Try creating an event script for changing the value.
BR Cristian
Reply
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?
Reply
Not all attributes are mandatory by the standard. Check the reply in ZigBee app monitor when you perform a read request.
Reply
Ok, I'll give it a go. I found some attributes for activating child safety, and sending external temperature to a thermostat.
Reply
(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.
We've only implemented most common features because we don't have the actual device to test the integration. Which other features are you missing?

That is not correct unfortunately. The auto mode is controlled by week timers and what not, the only functional mode on this heater is "Manual", where the heater is working after the given setpoint, so this is absolutely necessary for basic operation.

What we would like for our implementation is KeypadLockout and DisplayAutoOffActivation.

EDIT: As it is now, we have no way of setting the panel heater back to manual when the user changes to auto, neither any way to block local user input.

Soo... will there be a fix?
(Original post #500)
Reply
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)
Reply
A new update has been published:
  • Added HVAC keypad lockout option
  • Added support for warning devices (sirens)
Reply
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? Wink
Reply
Did you reset and paired your lamps again after the upgrade? Try it and provide debug logs if it's still not working.
Reply
(30.11.2024, 10:23)CristianAgata Wrote:
(30.11.2024, 10:06)Sral1987 Wrote: 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

Hi,
Try creating an event script for changing the value.
BR Cristian

This is my least favourit solution due to my lack of knwolage for lua scripting. Any hints here ? Smile
Reply
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())
Reply
(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...
Reply
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: 254


2: 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)
Reply


Forum Jump: