mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-18 23:06:58 +00:00
Fixed ambigouty about above/below for automation trigger numeric_state (#14204)
Above and below are strict comparison operators (> or <, not >= or <=). The version before was ambiguous about that by explaining that values like 17 or above will trigger the automation.
This commit is contained in:
parent
67115d6551
commit
cddd3720db
@ -82,7 +82,7 @@ automation:
|
|||||||
|
|
||||||
<div class='note'>
|
<div class='note'>
|
||||||
Listing above and below together means the numeric_state has to be between the two values.
|
Listing above and below together means the numeric_state has to be between the two values.
|
||||||
In the example above, the trigger would fire if a numeric_state goes to 17.1-24.9 (from 17 or below, or 25 or above).
|
In the example above, the trigger would fire if a numeric_state goes to 17.1-24.9 (from strict below 17, or strict above 25).
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
The `for:` can also be specified as `HH:MM:SS` like this:
|
The `for:` can also be specified as `HH:MM:SS` like this:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user