zwave_set_value
Set a Z-Wave node value and receive the command outcome, including success, failure, or queued for sleeping nodes.
Instructions
Set a Z-Wave value and report the command outcome.
value_id is the id from zwave_node_values (e.g. "5-38-0-targetValue").
value must match the value's type (a number, bool, or string as its
metadata describes). Returns the command status (SUCCESS, WORKING, FAIL,
QUEUED for a sleeping node, etc.) with any message. Raises ValueError for
an unknown node id; the value must exist on the node and be writeable.
Args: node_id: The Z-Wave node id, e.g. 5 value_id: The value id from zwave_node_values value: The new value to set
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| node_id | Yes | ||
| value_id | Yes |