From 43a5a980f8045fd3e0d58ed0f33bdd3e307d18e8 Mon Sep 17 00:00:00 2001 From: Raman Gupta <7243222+raman325@users.noreply.github.com> Date: Thu, 9 Nov 2023 06:28:38 -0500 Subject: [PATCH] Update docs for zwave_js.set_config_parameter changes (#29520) * Update docs for zwave_js.set_config_parameter changes * Update source/_integrations/zwave_js.markdown Co-authored-by: Martin Hjelmare --------- Co-authored-by: Martin Hjelmare --- source/_integrations/zwave_js.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/_integrations/zwave_js.markdown b/source/_integrations/zwave_js.markdown index 946966a4b33..8ec67651209 100644 --- a/source/_integrations/zwave_js.markdown +++ b/source/_integrations/zwave_js.markdown @@ -199,8 +199,10 @@ This service will update a configuration parameter. To update multiple partial p | `device_id` | no | Device ID (or list of device IDs) to set the configuration parameter on. At least one `entity_id`, `device_id`, or `area_id` must be provided. | | `area_id` | no | Area ID (or list of area IDs) for devices/entities to set the configuration parameter on. At least one `entity_id`, `device_id`, or `area_id` must be provided. | | `parameter` | yes | The parameter number or the name of the property. The name of the property is case sensitive. | -| `bitmask` | no | The bitmask for a partial parameter in hex (0xff) or decimal (255) format. If the name of the parameter is provided, this is not needed. | +| `bitmask` | no | The bitmask for a partial parameter in hex (0xff) or decimal (255) format. If the name of the parameter is provided, this is not needed. Cannot be combined with value_size or value_format. | | `value` | yes | The target value for the parameter as the integer value or the state label. The state label is case sensitive. | +| `value_size` | no | The size of the target parameter value, either 1, 2, or 4. Used in combination with value_format when a config parameter is not defined in your device's configuration file. Cannot be combined with bitmask. | +| `value_format` | no | The format of the target parameter value, 0 for signed integer, 1 for unsigned integer, 2 for enumerated, 3 for bitfield. Used in combination with value_size when a config parameter is not defined in your device's configuration file. Cannot be combined with bitmask. | #### Examples of setting a single parameter value