mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-24 17:57:14 +00:00
Threshold: Add matrix of state change behavior (#34602)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
7bcce9571e
commit
10628567e8
@ -76,6 +76,24 @@ name:
|
|||||||
default: Threshold
|
default: Threshold
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## Matrix of state change behavior
|
||||||
|
|
||||||
|
### Sensor value rising
|
||||||
|
|
||||||
|
| Set | Turns on when | Turns off when |
|
||||||
|
| ------------- | ----------------------- | ----------------------- |
|
||||||
|
| only upper | sensor > (upper + hyst) | never |
|
||||||
|
| only lower | never | sensor > (lower + hyst) |
|
||||||
|
| upper & lower | sensor > (lower + hyst) | sensor > (upper + hyst) |
|
||||||
|
|
||||||
|
### Sensor value falling
|
||||||
|
|
||||||
|
| Set | Turns on when | Turns off when |
|
||||||
|
| ------------- | ----------------------- | ----------------------- |
|
||||||
|
| only upper | never | sensor < (upper - hyst) |
|
||||||
|
| only lower | sensor < (lower - hyst) | never |
|
||||||
|
| upper & lower | sensor < (upper - hyst) | sensor < (lower - hyst) |
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
### Is the temperature rising or falling
|
### Is the temperature rising or falling
|
||||||
|
Loading…
x
Reference in New Issue
Block a user