-
Hi there, I have a few devices on my Zwave network that I would like to all have the same configuration parameters. I saw in the settings menu that there is an option called "Devices values configuration," which appears to do what I want. However, it is not clear when or how these settings are applied, and the documentation is not clear. Does it happen only when adding a new device or at some interval, or maybe there is a need for a manual way to trigger this "update"? So far, just saving the settings has not changed anything. I would love someone with more experience with that setting to weigh in. I have attached a screenshot of the functionality I refer to in my text. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
"Devices values configuration" does not have any specific relation to Z-Wave configuration parameters (documentation is at https://zwave-js.github.io/zwave-js-ui/#/usage/setup?id=device-values-configuration). "Configuration" here refers to the "configuration" of "device values", which are all of the things you see in the control panel. The fact that any value is available, not just configuration values, is a reflection of that. It basically applies three different kinds of operations on "values" (copied from docs):
The first two operations are only for MQTT and affect the values either received from the topic (parse receive) or values published to the topic (parse send). The last operation just enables polling for the selected values (refresh value from Z-Wave network). If you want to automate the setting of configuration parameters for your device, you'll need to do that yourself, either through automations in a home automation software that integrates with ZUI, using the MQTT API manually, or running driver functions from Z-Wave JS UI. For example, there is a "clone-config" driver function snippet built-in to ZUI. You can configure one device to the desired state, and run the snippet to clone it to other devices. |
Beta Was this translation helpful? Give feedback.
"Devices values configuration" does not have any specific relation to Z-Wave configuration parameters (documentation is at https://zwave-js.github.io/zwave-js-ui/#/usage/setup?id=device-values-configuration). "Configuration" here refers to the "configuration" of "device values", which are all of the things you see in the control panel. The fact that any value is available, not just configuration values, is a reflection of that.
It basically applies three differe…