Fix set_cover_tilt_position position attribute (#9646)

It looks like the correct attribute name is `tilt_position` not `position` for the `cover.set_cover_tilt_position`. Fixed doc and example.
This commit is contained in:
Tomi Blinnikka 2019-06-17 18:39:01 -05:00 committed by Franck Nijhof
parent 8237545cd3
commit 852fc52adc

View File

@ -71,7 +71,7 @@ Set cover tilt position of one or multiple covers.
| Service data attribute | Optional | Description |
| ---------------------- | -------- | ----------- |
| `entity_id` | yes | String or list of strings that point at `entity_id`'s of covers. Else targets all.
| `position` | no | Integer between 0 and 100.
| `tilt_position` | no | Integer between 0 and 100.
#### {% linkable_title Automation example %}
@ -84,5 +84,5 @@ automation:
- service: cover.set_cover_tilt_position
data:
entity_id: cover.demo
position: 50
tilt_position: 50
```