-
Notifications
You must be signed in to change notification settings - Fork 8
Entity state not updated properly (especially for dimmers) #72
Comments
Please consider testing the "Level" value against the "target" value (for devices that support target level). This will mean that for newer devices, the refresh will only be triggered if the two do not match. |
I have 20+ Homeseer WD100+ dimmer switches and am experiencing the same problem. It leads to the lights being out of sync with reality, and makes for a poor user experience. In HA's native z-wave implementation this can be resolved a number of ways (polling, refresh delay, setting the devices parameters for faster transitions), but I've tried all of them on this implementation and they aren't working. Let me know if there is any additional information I can provide to help resolve this problem. |
If these switches support the SwitchMultiLevel command class version 4, the integration should use the “Target” value as the display rather than the “Level” value. This will mean that no refresh is required as target will display the final value the switch is transitioning too. Versions prior to 4 do not have this target value and will probably require a refresh. |
Ooops. I see I’m repeating myself. |
This turns out to be a more annoying issue that I first thought. Pretty much any script that touches a dimmer needs to double clutch so I'd view this as a real bug. I have some all off type scripts and it turned out that those left HA with the wrong state. So this really is a bug. Seems like using Justin's proposal to honor the target value for dimmers that provide that would be the right answer, with an option to add a refresh interval for old ones that don't. |
Please remember that this implementation is still in a very early stage, only basic stuff is implemented and we still need to do a lot of work to make it prime time ready. @Fishwaldo any way to determine if a device needs polling ? |
Understood about the early stage - just reporting the issue. The particular switch is a Homeseer WD100+ dimmer. Interestingly, if switched from the paddle, HA handles it correctly. I.e, shows on immediately after on press, and on off press appears to show off at the completion of the transition to off (not instantly). So something seems to get set at the end of the transition. However, if turned off from HA it flips back to on even though it goes off. A second click at HA gets it off in HA. The same behavior appears in scripts. I.e., must reissue the turn off after a delay or HA doesn't see it as off. The Homeseer 100 line isn't their most recent but it is zwave+ and I would have thought it would be up to date on a spec for setting target. How can you tell if a dimmer issues a target value? ETA: Well now I am confused. I just captured the mqtt stream for when HA issues a turn on to the dimmer and there is definitely a Target Value in there but HA doesn't keep its state on. So if you are actually looking at Target Value then something else is causing you to undo that. Here are the 3 mqtt messages that come from a turnon from HA to the dimmer: |
@marcelveldt Unfortunately not - Prior to Version 4 (I think) the specifications was not clear what the "Level" value should actually represent (either final value or instant value) so different vendors did different things. But leave this with me... I am going to see what I can do to address this in OpenZWave/open-zwave#1321 |
@kevinkahn: You should be seeing Both a "Level" value and a "Target Value" value published when there is a change. (Index 0 and Index 9). Do you not see the Level Value? |
@Fishwaldo OpenZWave/1/command/setvalue/ {"ValueIDKey": 1407375181971473, "Value": 255} I do not see a specific command to node 17 for index 0. I do see those 2 early messages with out a specific node where I assume the node etc is encoded in the id key? That is the complete traffic that results in the light being physically turned on but HA initially showing the light toggle on and then quickly return its displayed status to off. If I repeat the turnon in HA then, of course, it then displays on correctly. What is interesting is that if I continue to capture the mqtt stream when I do that second turnon, then I get a Level message but not a Target Level message. So it would seem that while the switch is "in motion" the system returns the Target Level but once stable returns the Level - but not both. Here is the message that appears between the 2 Dimming Duration messages for the second toggling: OpenZWave/1/node/17/instance/1/commandclass/38/value/290029585/ { Hope this helps - if you want me to run any other scenarios let me know. |
@Fishwaldo @marcelveldt ETA: I jury-rigged discovery.py to add Target Value. BTW - the definitions in openzwavemqtt const.py don't define the index for Target Value (9). With this I get the value update in the integration. However, it doesn't seem to trigger core HA to ask for an update to get the new brightness and since for the moment I've reached the limit of figuring out the detailed flow in the integration, that's as far as I get. Also, I think that the check for a target value will also need to go into the code for is_on in the light module. ETA2: I played around more with the code and was able to hack a way to look at the Target Value only when it had been communicated at least once to the integration from OZW (otherwise it always starts as 0 and you can't tell that isn't a real value). It seems though that the ozwdaemon does its own caching of the values of switches. Thus I can turn on the light and get HA to reflect that immediately/correctly by noticing the Target Value change message. However, since there doesn't seem to have been a Level message I think OZW still believes internally that the light is off. Thus when HA next issues a turn off (which generates the correct mqtt command) OZW doesn't appear to send that out on the zwave side. I.e., since it doesn't think the command is going to cause a change it doesn't send it. So, once the light is on in HA you can't turn it off from HA. Since I do see the setvalue for the dimmer with a value of 0 I am pretty sure it is the daemon side that is suppressing the actual command. Further evidence of this is that I can manually send the off mqtt command via an mosquitto_pub and it has no effect. However, if I then send an on that way and then an off the light turns off. So basically HA knows (correctly now with my TargetLevel hack that the light is on and sends and off but the ozwdaemon seems to "know" the light is off and so sends nothing on zwave. I think I am pretty much at the limit of what I can play with given my limited understanding of the internal architectures of both the HA side and the ozwdaemon side. However, happy to try anything else that would help you guys. |
I need to investigate - What you describe is something fundamentally broken and would have been noticed long ago - So something is off. |
I certainly believe you regarding this not being a general issue or it would have been seen. So to help you look at it I constructed a minimal set of operations based on what the HA integration issues. To capture the mqtt stream I subscribed on OpenZWave/# with a filter to not report the node specific statistics messages (if these are of use I can rerun without the filter but if makes seeing the issue more cluttered), i.e., mosquitto_sub -v -t OpenZWave/# -T OpenZWave/1/node/+/statistics/ > mbon. I looked at what the HA integration sends for a turn on and it sends a "set dimming duration" to 255 (which I believe is the code for last used) followed by a send of the level to 255. For a turn off it also sends the set dimming and then the set level to 0. To make sure I'm not doing something incorrectly I'm attaching the mbon and mboff scripts as well as the resulting captured mqtt stream. Also, to guard against some sort of previous cache corruption, I stopped OZW, deleted the cache file, and started OZW. I waited for the zwave network to stabilize with all the powered nodes showing Complete (there are 2 battery nodes that were still in Probe). I also shut down HA to avoid extraneous commands. The initial condition had the target node (17) on. You will see in the mqtt log that the retained messages dumped for that file indeed show Level 99 and Target Level 99. I then ran mboff to turn off the light. You will see that this indeed issued an off that got a response of Target Level 0 and the light did turn off. Next I ran mbon. This got a response of Level 0 - I assume due to the slow ramp. The light turned on. I next issued an mboff. This got no response - presumably because OZW still believed the light to be off. I next issued an mbon. This got a Level 255 response (the light was on previously and so full bright). Now an mboff did turn off the light (but strangely did not seem to report either a Level or Target Level associated with the turn off). Despite this missing another mbon will turn on the light. I hope this helps focus where you look at things and again - if I can do anything else to help let me know ETA: Realized that the actual OZW daemon debug log would have been useful. It is now attached also but for a repeat run (not the original). It corresponds to a turnon, turnoff (fails), turnon (dummy since light already on), turnoff (works). |
Hi @kevinkahn and @Fishwaldo sorry for the late reply. Last weekend I've been properly testing these scenarios myself and I can confirm the behaviour @kevinkahn is seeing for various zwaves nodes, both fibaro and qubino ones. From time to time (hard to tell when) he value doesn't match. The workaround for this would be sending the requestnodestate command every X interval or X seconds after each command from the hass implementation but that doesn't feel right. |
@Fishwaldo any ideas about this yet ? I have a feeling that the refresh setting should be implemented in the daemon and not in the client application (as that would bring us back to the old implementation again). Issues need to be fixed as much upstream as possible to prevent each client application has it's own quirks/workarounds implemented. |
I have a GE 14294 In-Wall Smart Dimmer and I believe it also shows this behavior. |
Below was initially logged in a different issue but seems to be the same problem as described here:
To control a light I have a Fibaro Dimmer 2 installed. All seems to be recognized well with zwave over mqtt, all relevant enitities are there. To turn on and turn off the light the entity "FIBARO System FGD212 Dimmer 2: Instance 1: Level" needs to be used. However, when I click the button from Off to On, the light does turn on, but directly after the button turns Off again while the light still remains on. Each time I click the button again to On it just goes to Off again while the light remains on. Only a quick succession from Off to On to Off again eventually turns the light off. So, I've made a quick screen recording as it probably explains better what I mean than just describing in: https://youtu.be/fb4K9kvy7vw I couldn't find this as a known issue so thought I'd log it. If there's something I can check then please let me know. |
Setting |
Changing that setting in the .xml file fixed the behavior of my switch too. Thanks. |
The internal polling by OZW when VerifyChanges is enabled might be a little too aggressive though.
|
Unfortunately, the VerifyChange compat flag does not work when turning on the light with a transition. I used the service call entity_id: light.ge_jasco_products_14294_in_wall_smart_dimmer_level
brightness_pct: 100
transition: 30 The switch did transition to full brightness in about 30 seconds, but the HA state was not updated, and OZW only attempted a single Get. OZW bug perhaps? |
Yeah it's actively polling the device, something to avoid as much as you can, it can and will slow down your mesh to a disaster if you have a lot of devices. Only when really needed (the device does not send status updates) polling should be considered. |
Just clarify, I did not enable the polling (full-time polling). I enabled the VerifyChanges compatibility flag on the dimmer's Level Value, which is a suggestion at OpenZWave/open-zwave#1321 (comment). This causes OZW to refresh (poll) the value when it is set, until it reaches the desired value. It does not actually poll until that specific value has been Set. It is basically the exact feature you are asking for in this comment. #72 (comment) 😄 |
Yeah, I know but in my understanding even that should only be needed for devices that don't report their state correctly. Using this feature and setting a new value for a few devices at once can make your network unresponsive for minutes. So, we will have to wait what can be fixed upstream and if there's any polling needed (unavoidable) that should be done in the daemon itself. |
I will close this one for now here as it's an issue that needs fixing upstream. If the values are incorrect in MQTT, they will be incorrect in hass as well. Progress can be tracked here: |
Just curious how transitions are supposed to work. Example: switch is off, turn on light to 100% brightness with a 30 second transition. Assume the switch supports the Target value. When the on command is sent, will this result in the switch entity reporting 100% brightness almost immediately. Is that the expected behavior? What is the behavior in other integrations? |
Behaviour is different in every integration. And yes if the device supports the target value (most do not) it will report back 100%. There is no reliable way (as far as I can tell) to show the value it actually is at while transitioning, at least it's not accurate/reliable in case of Z-Wave. |
@kpine Do you know if we need to revert the |
@towerhand This change does not support the older GE switches. Only V4 and up for the Switch Multilevel command class. |
Ive got same issue with my Fibaro Dimmer 2s. |
With the existing integration you can specify a refresh delay and this handles the case of dimmers that respond to a light.on with their current state which still shows "off". With this new version I don't see this capability or an alternative. For human interactions you just notice that the visual toggle in HA is still showing off and turn it on again and now, of course, it works. However, for scripts it is a more serious issue. I thought homeassistant.update_entity might do the trick but that doesn't seem to do anything for zwave. What I currently do is reissue the light.on after a short delay which causes HA to again try to turn on the light since it thinks it is still off but now the response indeed shows it is on. Ok work-around but needs a real solution at some point.
The text was updated successfully, but these errors were encountered: