* Rename input_slider to input_number

* Update input_number to optionally display slider, input box, or both
* Update references to input_slider in other parts of the documentation
This commit is contained in:
BioSehnsucht 2017-09-19 03:43:22 -05:00
parent 4d43b63d76
commit 9234ca3d01
7 changed files with 66 additions and 51 deletions

View file

@ -71,9 +71,9 @@ delay:
```
```yaml
# Waits however many minutes input_slider.minute_delay is set to
# Waits however many minutes input_number.minute_delay is set to
# Valid formats include HH:MM and HH:MM:SS
delay: {% raw %}'00:{{ states.input_slider.minute_delay.state | int }}:00'{% endraw %}
delay: {% raw %}'00:{{ states.input_number.minute_delay.state | int }}:00'{% endraw %}
```
### {% linkable_title Wait %}