2017-10-30 20:39:12 +00:00
# Describes the format for available Z-Wave services
2016-10-16 18:36:06 +00:00
change_association :
description : Change an association in the Z-Wave network.
fields :
association :
2018-01-27 19:58:27 +00:00
description : Specify add or remove association
2017-06-17 17:02:37 +00:00
example : add
2016-10-16 18:36:06 +00:00
node_id :
description : Node id of the node to set association for.
2017-06-17 17:02:37 +00:00
example : 10
2016-10-16 18:36:06 +00:00
target_node_id :
description : Node id of the node to associate to.
2017-06-17 17:02:37 +00:00
example : 42
2016-10-16 18:36:06 +00:00
group :
description : Group number to set association for.
instance :
2017-06-17 17:02:37 +00:00
description : (Optional) Instance of multichannel association. Defaults to 0.
2016-10-16 18:36:06 +00:00
2016-09-30 15:43:18 +00:00
add_node :
2018-10-01 06:50:32 +00:00
description : Add a new (unsecure) node to the Z-Wave network. Refer to OZW_Log.txt for progress.
2016-09-30 15:43:18 +00:00
add_node_secure :
2018-10-01 06:50:32 +00:00
description : Add a new node to the Z-Wave network with secure communications. Secure network key must be set, this process will fallback to add_node (unsecure) for unsupported devices. Note that unsecure devices can't directly talk to secure devices. Refer to OZW_Log.txt for progress.
2016-09-30 15:43:18 +00:00
cancel_command :
2017-10-03 13:24:59 +00:00
description : Cancel a running Z-Wave controller command. Use this to exit add_node, if you weren't going to use it but activated it.
2016-09-30 15:43:18 +00:00
heal_network :
2018-10-01 06:50:32 +00:00
description : Start a Z-Wave network heal. This might take a while and will slow down the Z-Wave network greatly while it is being processed. Refer to OZW_Log.txt for progress.
2017-11-05 17:19:19 +00:00
fields :
return_routes :
2019-04-18 20:40:46 +00:00
description : Whether or not to update the return routes from the nodes to the controller. Defaults to False.
example : True
2017-11-05 17:19:19 +00:00
heal_node :
2018-10-01 06:50:32 +00:00
description : Start a Z-Wave node heal. Refer to OZW_Log.txt for progress.
2017-11-05 17:19:19 +00:00
fields :
return_routes :
2019-04-18 20:40:46 +00:00
description : Whether or not to update the return routes from the node to the controller. Defaults to False.
example : True
2016-09-30 15:43:18 +00:00
remove_node :
2018-10-01 06:50:32 +00:00
description : Remove a node from the Z-Wave network. Refer to OZW_Log.txt for progress.
2016-09-30 15:43:18 +00:00
2017-03-02 11:36:40 +00:00
remove_failed_node :
2018-10-01 06:50:32 +00:00
description : This command will remove a failed node from the network. The node should be on the controller's failed nodes list, otherwise this command will fail. Refer to OZW_Log.txt for progress.
2017-03-02 11:36:40 +00:00
fields :
node_id :
description : Node id of the device to remove (integer).
2017-06-17 17:02:37 +00:00
example : 10
2017-03-02 11:36:40 +00:00
replace_failed_node :
2018-10-01 06:50:32 +00:00
description : Replace a failed node with another. If the node is not in the controller's failed nodes list, or the node responds, this command will fail. Refer to OZW_Log.txt for progress.
2017-03-02 11:36:40 +00:00
fields :
node_id :
description : Node id of the device to replace (integer).
2017-06-17 17:02:37 +00:00
example : 10
2017-03-02 11:36:40 +00:00
2016-10-05 05:04:19 +00:00
set_config_parameter :
description : Set a config parameter to a node on the Z-Wave network.
fields :
2016-10-14 06:45:00 +00:00
node_id :
description : Node id of the device to set config parameter to (integer).
2016-10-05 05:04:19 +00:00
parameter :
description : Parameter number to set (integer).
value :
2017-05-19 00:39:31 +00:00
description : Value to set for parameter. (String value for list and bool parameters, integer for others).
2016-10-05 05:04:19 +00:00
size :
2017-05-19 00:39:31 +00:00
description : (Optional) Set the size of the parameter value. Only needed if no parameters are available.
2017-01-01 20:10:45 +00:00
2018-09-27 10:34:42 +00:00
set_node_value :
description : Set the value for a given value_id on a Z-Wave device.
fields :
node_id :
description : Node id of the device to set the value on (integer).
value_id :
2020-03-05 01:40:58 +00:00
description : Value id of the value to set (integer or string).
2018-09-27 10:34:42 +00:00
value :
2020-03-05 01:40:58 +00:00
description : Value to set (integer or string).
2018-09-27 10:34:42 +00:00
refresh_node_value :
description : Refresh the value for a given value_id on a Z-Wave device.
fields :
node_id :
description : Node id of the device to refresh value from (integer).
value_id :
description : Value id of the value to refresh.
2017-09-11 18:30:48 +00:00
set_poll_intensity :
description : Set the polling interval to a nodes value
fields :
node_id :
description : ID of the node to set polling to.
example : 10
value_id :
description : ID of the value to set polling to.
example : 72037594255792737
poll_intensity :
description : The intensity to poll, 0 = disabled, 1 = Every time through list, 2 = Every second time through list...
example : 2
2017-01-01 20:10:45 +00:00
print_config_parameter :
description : Prints a Z-Wave node config parameter value to log.
fields :
node_id :
description : Node id of the device to print the parameter from (integer).
parameter :
description : Parameter number to print (integer).
2017-02-17 20:09:38 +00:00
print_node :
description : Print all information about z-wave node.
fields :
node_id :
description : Node id of the device to print.
2017-03-04 17:13:24 +00:00
refresh_entity :
description : Refresh zwave entity.
fields :
entity_id :
description : Name of the entity to refresh.
example : 'light.leviton_vrmx11lz_multilevel_scene_switch_level_40'
refresh_node :
description : Refresh zwave node.
fields :
2017-03-16 19:50:01 +00:00
node_id :
2017-03-04 17:13:24 +00:00
description : ID of the node to refresh.
example : 10
2017-02-10 16:54:48 +00:00
set_wakeup :
description : Sets wake-up interval of a node.
fields :
node_id :
description : Node id of the device to set the wake-up interval for. (integer)
value :
description : Value of the interval to set. (integer)
2016-09-30 15:43:18 +00:00
start_network :
description : Start the Z-Wave network. This might take a while, depending on how big your Z-Wave network is.
stop_network :
2020-01-05 12:09:17 +00:00
description : Stop the Z-Wave network, all updates into Home Assistant will stop.
2016-09-30 15:43:18 +00:00
soft_reset :
2018-10-01 06:50:32 +00:00
description : This will reset the controller without removing its data. Use carefully because not all controllers support this. Refer to your controller's manual.
2016-09-30 15:43:18 +00:00
test_network :
2018-10-01 06:50:32 +00:00
description : This will send test to nodes in the Z-Wave network. This will greatly slow down the Z-Wave network while it is being processed. Refer to OZW_Log.txt for progress.
2016-09-30 15:43:18 +00:00
2017-11-05 17:19:19 +00:00
test_node :
description : This will send test messages to a node in the Z-Wave network. This could bring back dead nodes.
fields :
node_id :
description : ID of the node to send test messages to.
example : 10
messages :
description : Optional. Amount of test messages to send.
2019-04-18 20:40:46 +00:00
example : 3
2017-11-05 17:19:19 +00:00
2016-09-30 15:43:18 +00:00
rename_node :
2017-06-19 05:38:14 +00:00
description : Set the name of a node. This will also affect the IDs of all entities in the node.
2016-09-30 15:43:18 +00:00
fields :
2017-04-05 12:11:37 +00:00
node_id :
description : ID of the node to rename.
example : 10
2019-07-01 22:54:19 +00:00
update_ids :
description : (optional) Rename the entity IDs for entities of this node.
example : True
2016-09-30 15:43:18 +00:00
name :
description : New Name
example : 'kitchen'
2017-05-21 18:15:24 +00:00
2017-06-03 06:03:00 +00:00
rename_value :
2017-06-19 05:38:14 +00:00
description : Set the name of a node value. This will affect the ID of the value entity. Value IDs can be queried from /api/zwave/values/{node_id}
2017-06-03 06:03:00 +00:00
fields :
node_id :
description : ID of the node to rename.
example : 10
value_id :
description : ID of the value to rename.
example : 72037594255792737
2019-07-01 22:54:19 +00:00
update_ids :
description : (optional) Update the entity ID for this value's entity.
example : True
2017-06-03 06:03:00 +00:00
name :
description : New Name
example : 'Luminosity'
2017-05-21 18:15:24 +00:00
reset_node_meters :
description : Resets the meter counters of a node.
fields :
node_id :
description : Node id of the device to reset meters for. (integer)
instance :
description : (Optional) Instance of association. Defaults to instance 1.