-
-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Update z-wave.markdown #917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I added this automation when first setting up Home Assistant and the soft reset has been very problematic for me, it hangs my zstick gen5. So I wanted to make sure that people only add this automation if they run into issues and not add it as part of setting up hass.
Is this related to #606? |
It wasn't, but it sounds like the same issue I was having. On Sep 9, 2016 10:44 AM, "Fabian Affolter" notifications@github.com wrote:
|
@fabaff I wouldn't ever see any traceback calls in the home assistant log like the forum post linked in #606. I would just see this in the OWZ_log.txt
|
@@ -199,8 +199,7 @@ The Z-Wave component exposes seven services to help maintain the network. | |||
| test_network | Tells the controller to send no-op commands to each node and measure the time for a response. In theory, this can also bring back nodes which have been marked "presumed dead".| | |||
| rename_node | Sets a node's name. Requires an `entity_id` and `name` field. | | |||
|
|||
The soft_reset and heal_network commands can be used as part of an automation script | |||
to help keep a zwave network running relliably. For example: | |||
The `soft_reset` and `heal_network` commands can be used as part of an automation script to help keep a zwave network running reliably as shown in the example below. By deafult, Home Assistant will run a `heal_network` at midnight. This is a configuration option for the zwave component, it defaults to `true` but can be diabled by setting `auto_heal` to false. Soft resetting some zwave controllers can cause the network to hang, so the below automation should only be used if there are issues with your zwave network. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Misspelled word: deafult
should be default
Misspelled word: diabled
should be disabled
Most likely this isn't caused by HA but is a problem with OZW. |
@@ -199,7 +199,7 @@ The Z-Wave component exposes seven services to help maintain the network. | |||
| test_network | Tells the controller to send no-op commands to each node and measure the time for a response. In theory, this can also bring back nodes which have been marked "presumed dead".| | |||
| rename_node | Sets a node's name. Requires an `entity_id` and `name` field. | | |||
|
|||
The `soft_reset` and `heal_network` commands can be used as part of an automation script to help keep a zwave network running reliably as shown in the example below. By deafult, Home Assistant will run a `heal_network` at midnight. This is a configuration option for the zwave component, it defaults to `true` but can be diabled by setting `auto_heal` to false. Soft resetting some zwave controllers can cause the network to hang, so the below automation should only be used if there are issues with your zwave network. | |||
The `soft_reset` and `heal_network` commands can be used as part of an automation script to help keep a zwave network running reliably as shown in the example below. By default, Home Assistant will run a `heal_network` at midnight. This is a configuration option for the zwave component, the option defaults to `true` but can be disabled by setting `auto_heal` to false. Soft resetting some zwave controllers can cause the network to hang, so the below automation should only be used if there are issues with your zwave network. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this function if prefered for most users and is the default I would prefer something like this instead of the last sentence.
Using the
soft_reset
function with some z-wave controllers can cause cause the z-wave network to hang. If you're having issues with your z-wave network try disabling this automation.
changed last 2 sentences based on @Landrash suggestion.
One last thing. Your mixing z-wave and z-wave. z-wave component should be |
fixed usage of `zwave` component, Z-Wave for references to a Z-Wave network, and OpenZWave as a project name
Thank you @sgauche edit Made a new branch instead. |
I added this automation when first setting up Home Assistant and the soft reset has been very problematic for me, it hangs my zstick gen5. So I wanted to make sure that people only add this automation if they run into issues and not add it as part of setting up hass.