Merge branch 'current' into next
This commit is contained in:
commit
ade302523b
22 changed files with 249 additions and 175 deletions
|
@ -54,7 +54,9 @@ This is a dropdown where you can select all the entities of this node. Once sele
|
|||
* **Refresh Entity** to refresh just that entity's values
|
||||
* **Entity Attributes** to display the attributes of that entity (eg it's friendly name, the ID of the node, etc)
|
||||
|
||||
Here you can mark a device as requiring polling (before 0.55 this was displayed at the top), so the controller is aware of changes because the device doesn't send updates itself. Do see the information on [polling here](/docs/z-wave/polling/), since excessive polling can break your Z-Wave network.
|
||||
Here you can mark a device as requiring polling so the controller is aware of changes because the device doesn't send updates itself. Do see the information on [polling here](/docs/z-wave/devices/#polling), since excessive polling can break your Z-Wave network.
|
||||
|
||||
The **Polling intensity** says how many poll intervals does is this device polled on. For example, if you set 2 then it's polled on every second interval.
|
||||
|
||||
You can also exclude a Z-Wave devices from Home Assistant. You can do that if you have a device that you need to have on the Z-Wave network, but you don't want it to appear in Home Assistant, or if you've got a device that's failed and you're unable to exclude it.
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ The meaning of the `alarm_level` entity depends on the nature of the alarm senso
|
|||
- **254**: Deep sleep
|
||||
- **255**: Case open
|
||||
|
||||
If your device has an `access_control` entity, but not a `binary_sensor` equivalent, you can use a [template binary sensor](omponents/binary_sensor.template/) to create one:
|
||||
If your device has an `access_control` entity, but not a `binary_sensor` equivalent, you can use a [template binary sensor](/components/binary_sensor.template/) to create one:
|
||||
|
||||
```
|
||||
binary_sensor:
|
||||
|
@ -128,10 +128,10 @@ binary_sensor:
|
|||
YOUR_SENSOR:
|
||||
friendly_name: "Friendly name here"
|
||||
value_template: >-
|
||||
{% raw %}{%- if is_state('sensor.YOUR_SENSOR_access_control', '22') -%}
|
||||
on
|
||||
{% raw %}{%- if is_state('sensor.YOUR_ORIGINAL_SENSOR_access_control', '22') -%}
|
||||
true
|
||||
{%- else -%}
|
||||
off
|
||||
false
|
||||
{%- endif -%}{% endraw %}
|
||||
```
|
||||
|
||||
|
@ -147,7 +147,7 @@ binary_sensor:
|
|||
- **254**: Deep sleep
|
||||
- **255**: Case open
|
||||
|
||||
If your device has an `burglar` entity, but not a `binary_sensor` equivalent, you can use a [template binary sensor](omponents/binary_sensor.template/) to create one:
|
||||
If your device has an `burglar` entity, but not a `binary_sensor` equivalent, you can use a [template binary sensor](/components/binary_sensor.template/) to create one:
|
||||
|
||||
```
|
||||
binary_sensor:
|
||||
|
@ -157,9 +157,9 @@ binary_sensor:
|
|||
friendly_name: "Friendly name here"
|
||||
value_template: >-
|
||||
{% raw %}{%- if is_state('sensor.YOUR_SENSOR_burglar', '8') -%}
|
||||
on
|
||||
true
|
||||
{%- else -%}
|
||||
off
|
||||
false
|
||||
{%- endif -%}{% endraw %}
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue